diff --git a/helm/templates/guacamole/postgres.deployment.yaml b/helm/templates/guacamole/postgres.deployment.yaml index 83e2bcd3b2..ec75a990c6 100644 --- a/helm/templates/guacamole/postgres.deployment.yaml +++ b/helm/templates/guacamole/postgres.deployment.yaml @@ -54,12 +54,12 @@ spec: protocol: TCP readinessProbe: exec: - command: ["psql", "-W", "{{ .Values.database.guacamole.internal.password }}", "-U", "guacamole", "-d", "guacamole", "-c", "SELECT 1"] + command: ["psql", "-w", "-U", "guacamole", "-d", "guacamole", "-c", "SELECT 1"] initialDelaySeconds: 15 timeoutSeconds: 2 livenessProbe: exec: - command: ["psql", "-W", "{{ .Values.database.guacamole.internal.password }}", "-U", "guacamole", "-d", "guacamole", "-c", "SELECT 1"] + command: ["psql", "-w", "-U", "guacamole", "-d", "guacamole", "-c", "SELECT 1"] initialDelaySeconds: 45 timeoutSeconds: 2 resources: