add sample

This commit is contained in:
vincent 2022-04-30 21:09:37 +02:00
parent eea2976b49
commit de0698995c

60
sample.nomad Normal file
View File

@ -0,0 +1,60 @@
job "sample" {
datacenters = ["homelab"]
type = "service"
meta {
forcedeploy = "0"
}
constraint {
attribute = "${attr.cpu.arch}"
value = "amd64"
}
group "sample"{
network {
mode = "host"
port "http" {
to = 0000
}
}
vault{
policies= ["policy_name"]
}
task "server" {
driver = "docker"
service {
name = "sample"
port = "http"
tags = [
"traefik.enable=true",
"traefik.http.routers.${NOMAD_JOB_NAME}.rule=Host(`${NOMAD_JOB_NAME}.ducamps.win`)",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.domains[0].sans=${NOMAD_JOB_NAME}.ducamps.win",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=myresolver",
]
}
config {
image = "sample"
ports = ["http"]
volumes = [
"/local/sample:/media"
]
}
env {
}
template {
data= <<EOH
{{ with secret "secrets/data/sample"}}
{{end}}
EOH
destination = "secrets/sample.env"
env = true
}
}
}
}