aboutsummaryrefslogtreecommitdiff
path: root/deploy/environments
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-06-05 01:18:40 +0200
committerMax Audron <audron@cocaine.farm>2021-06-05 01:18:40 +0200
commitbca442655b9a2f011c322c9626f029de7e209b45 (patch)
treef3469ab00959e345e810598acd4c0f0a76c8041a /deploy/environments
parentfix tanka dependency path (diff)
fix init container name
Diffstat (limited to 'deploy/environments')
-rw-r--r--deploy/environments/production/main.jsonnet2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/environments/production/main.jsonnet b/deploy/environments/production/main.jsonnet
index 175fbab..72a1c2e 100644
--- a/deploy/environments/production/main.jsonnet
+++ b/deploy/environments/production/main.jsonnet
@@ -22,7 +22,7 @@ function(tag, namespace, envSlug=null, projectPathSlug=null)
statefulset+:
statefulset.spec.template.spec.withInitContainers([
- container.new('waitForEgress', 'docker.io/busybox:latest')
+ container.new('wait-for-egress', 'docker.io/busybox:latest')
+ container.withCommand(['/bin/sleep', '30']),
]),