From d717037e58005cf387c4d7eefe1c6df30fdf7e27 Mon Sep 17 00:00:00 2001 From: Zoran Zorica Date: Wed, 10 May 2023 23:25:06 +0200 Subject: [PATCH] Update app (#17) Use latest freescout image. Fix wrong secret name as mentioned in https://github.com/zzorica/helm-charts/issues/9 --- charts/freescout/Chart.yaml | 4 ++-- charts/freescout/templates/secret-db.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/freescout/Chart.yaml b/charts/freescout/Chart.yaml index 030a096..b3816e7 100644 --- a/charts/freescout/Chart.yaml +++ b/charts/freescout/Chart.yaml @@ -18,13 +18,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.12 +version: 0.1.13 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "php8.2-1.16.43" +appVersion: "php8.2-1.17.3" dependencies: - name: mariadb version: ~11.x diff --git a/charts/freescout/templates/secret-db.yaml b/charts/freescout/templates/secret-db.yaml index 97f5319..f461b37 100644 --- a/charts/freescout/templates/secret-db.yaml +++ b/charts/freescout/templates/secret-db.yaml @@ -3,7 +3,7 @@ apiVersion: v1 kind: Secret metadata: - name: {{ printf "%s-%s" .Release.Name "mariadb" }} + name: {{ printf "%s-%s" .Release.Name "db" }} namespace: {{ .Release.Namespace | quote }} labels: app.kubernetes.io/name: {{ include "freescout.name" . }}