From 33cf29df7177a9cba495bdfccab78bcef1932be5 Mon Sep 17 00:00:00 2001 From: Sven Ketelsen Date: Thu, 2 Jun 2022 14:00:24 +0200 Subject: [PATCH] bugfix: wordpress --- smardigo/templates/connect/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smardigo/templates/connect/deployment.yml b/smardigo/templates/connect/deployment.yml index 2196ab1..06c8915 100644 --- a/smardigo/templates/connect/deployment.yml +++ b/smardigo/templates/connect/deployment.yml @@ -138,7 +138,7 @@ spec: command: ['sh', '-c', "until nslookup iam; do echo waiting for iam; sleep 2; done"] - name: init-postgres image: busybox:1.28 - command: ['sh', '-c', "until nslookup {{ .Values.connect.datasource.host }}; do echo waiting for postgres; sleep 2; done"] + command: ['sh', '-c', "until nslookup {{ .Values.connect.database.host }}; do echo waiting for postgres; sleep 2; done"] - name: init-elasticsearch image: busybox:1.28 command: ['sh', '-c', "until nslookup {{ .Values.connect.elastic.host }}; do echo waiting for elastic; sleep 2; done"]