diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-03-31 12:07:23 +0200 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2023-04-07 11:04:23 +0000 |
commit | f51bbef3978f1176551d6891c7e583d128a0875a (patch) | |
tree | 3d0748e1b5f7090dc92108d85b2f4f587d7bb642 /kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml | |
parent | bb32bf993ac2b74c12fc435e756d9ce98bb73611 (diff) |
[COMMON][OTHERS] Fix dependency conditions
In case of local DB the "init" dependency is activated
as the "not" condition is not working
Issue-ID: OOM-3152
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: I27dba69a644bbcc2b61245c22784976ba7c66173
Diffstat (limited to 'kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml')
-rw-r--r-- | kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml b/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml index 05def922c4..db0eb16092 100644 --- a/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml +++ b/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml @@ -33,8 +33,10 @@ spec: metadata: {{- include "common.templateMetadata" . | nindent 6 }} spec: initContainers: - {{- if not .Values.global.postgres.localCluster }} - {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }} + {{- if .Values.global.postgres.localCluster }} + {{ include "common.readinessCheck.waitFor" (dict "dot" . "wait_for" .Values.readinessCheck.wait_for_local ) | indent 6 | trim }} + {{ else }} + {{ include "common.readinessCheck.waitFor" (dict "dot" . "wait_for" .Values.readinessCheck.wait_for_global ) | indent 6 | trim }} {{- end }} - name: {{ include "common.name" . }}-env-config image: {{ include "repositoryGenerator.image.envsubst" . }} |