Skip to content
Snippets Groups Projects

L2SS-1652: use ${...} to enclose env vars

Merged Jan David Mol requested to merge L2SS-1652-fix-wait-for-db into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -100,7 +100,7 @@ job "tango" {
@@ -100,7 +100,7 @@ job "tango" {
config {
config {
image = "[[.registry.astron.url]]/busybox"
image = "[[.registry.astron.url]]/busybox"
command = "sh"
command = "sh"
args = ["-c", "while ! nc -z $MYSQL_HOST $MYSQL_PORT; do sleep 1; done"]
args = ["-c", "while ! nc -z ${MYSQL_HOST} ${MYSQL_PORT}; do sleep 1; done"]
}
}
template {
template {
Loading