From f39811ce44c0a6cbebb48d91c3d5f6724f8cf3e6 Mon Sep 17 00:00:00 2001 From: Dominik Kaminski Date: Wed, 26 Jul 2023 14:52:32 +0200 Subject: [PATCH] fix(services): Update mariadb Chart to 2.0.0 --- .gitignore | 4 ++++ helmfile/apps/services/helmfile.yaml | 2 +- helmfile/apps/services/values-mariadb.gotmpl | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index da58f91e..e0f547d7 100755 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 .vscode .idea + +# Ignore changes to sample environments +helmfile/environments/dev/ +helmfile/environments/prod/ diff --git a/helmfile/apps/services/helmfile.yaml b/helmfile/apps/services/helmfile.yaml index 64858fbd..288c2fa1 100644 --- a/helmfile/apps/services/helmfile.yaml +++ b/helmfile/apps/services/helmfile.yaml @@ -40,7 +40,7 @@ releases: condition: "postgresql.enabled" - name: "mariadb" chart: "mariadb/mariadb" - version: "^1.0.0" + version: "2.0.0" values: - "values-mariadb.yaml" - "values-mariadb.gotmpl" diff --git a/helmfile/apps/services/values-mariadb.gotmpl b/helmfile/apps/services/values-mariadb.gotmpl index 9040518c..4c23c352 100644 --- a/helmfile/apps/services/values-mariadb.gotmpl +++ b/helmfile/apps/services/values-mariadb.gotmpl @@ -4,7 +4,7 @@ SPDX-License-Identifier: Apache-2.0 */}} --- global: - imageRegistry: "{{ .Values.global.imageRegistry }}" + registry: "{{ .Values.global.imageRegistry }}" imagePullSecrets: {{ .Values.global.imagePullSecrets | toYaml | nindent 4 }}