Move config in secrets

This commit is contained in:
Daniel Berteaud 2023-10-18 09:31:43 +02:00
parent 367456edb9
commit 24e9993a6d
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ job [[ .traefik.instance | toJSON ]] {
image = [[ .traefik.image | toJSON ]]
command = "traefik"
args = [
"--configfile=/local/traefik.yml"
"--configfile=/secrets/traefik.yml"
]
}
@ -110,7 +110,7 @@ job [[ .traefik.instance | toJSON ]] {
data =<<_EOF
[[ template "traefik/traefik.yml.tpl" . ]]
_EOF
destination = "local/traefik.yml"
destination = "secrets/traefik.yml"
perms = "0400"
uid = 105443
gid = 100000