From 6fe532e1d7f56c71a1aa58f9a91a946461cf4e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20N=C3=B8rgaard?= Date: Sun, 3 Sep 2023 22:12:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chart:=20Release=20v0.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ⬆️ Update appVersion to v1.0.0 - 🐛 fix what helper we use for volume claim template labels. We can't use one that changes because it's immutable. --- deploy/charts/rig/Chart.yaml | 4 ++-- deploy/charts/rig/templates/mongodb/statefulset.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/charts/rig/Chart.yaml b/deploy/charts/rig/Chart.yaml index 29f9e4926..31a8d0462 100644 --- a/deploy/charts/rig/Chart.yaml +++ b/deploy/charts/rig/Chart.yaml @@ -15,10 +15,10 @@ 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.3.3 +version: 0.4.0 # 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: "0.7.1" +appVersion: "1.0.0" diff --git a/deploy/charts/rig/templates/mongodb/statefulset.yaml b/deploy/charts/rig/templates/mongodb/statefulset.yaml index 1cb56b90e..96347d44c 100644 --- a/deploy/charts/rig/templates/mongodb/statefulset.yaml +++ b/deploy/charts/rig/templates/mongodb/statefulset.yaml @@ -48,7 +48,7 @@ spec: volumeClaimTemplates: - metadata: name: data - labels: {{ include "rig.mongodb.labels" . | nindent 10 }} + labels: {{ include "rig.mongodb.selectorLabels" . | nindent 10 }} spec: accessModes: [ "ReadWriteOnce" ] {{- with .Values.mongodb.storage.className }}