diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2024-03-11 17:26:53 +0100 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2024-03-11 17:31:04 +0100 |
commit | 060bc378e32c2ffba34f890c53cc359eb9ee64d0 (patch) | |
tree | 8bb7de0ab8445dc7fbbc8831f2ad6a09e9c83381 /kubernetes/policy/values.yaml | |
parent | 9964927d8766c5c396ef2caf6f7aeb7494db279e (diff) |
[COMMON] Update MariaDB readinessChecks to fix Operator issues
Give different readinessCheck rules depending on the usage
of mariaDB Operator and local/global DB setup
Apply these changes to CDS, NBI, SO, SDNC, Policy
Issue-ID: OOM-3280
Change-Id: I4e6f584558ffebb6ab602db88a73c2f02891902e
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Diffstat (limited to 'kubernetes/policy/values.yaml')
-rwxr-xr-x | kubernetes/policy/values.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kubernetes/policy/values.yaml b/kubernetes/policy/values.yaml index 8dca11d74b..9d08080cf7 100755 --- a/kubernetes/policy/values.yaml +++ b/kubernetes/policy/values.yaml @@ -275,6 +275,18 @@ postgres: readinessCheck: wait_for: - '{{ ternary .Values.postgres.service.name "postgres" .Values.global.postgres.localCluster }}' + wait_for_global_operator: + pods: + - '{{ .Values.global.mariadbGalera.nameOverride }}-0' + wait_for_local_operator: + pods: + - '{{ index .Values "mariadb-galera" "nameOverride" }}-0' + wait_for_global: + apps: + - '{{ include "common.mariadbAppName" . }}' + wait_for_local: + apps: + - '{{ include "common.mariadbAppName" . }}' restServer: policyPapUserName: policyadmin |