From e6d2a11cf9dd4b6d0cf4db62ced26b8f27830b74 Mon Sep 17 00:00:00 2001 From: Frank Hamand Date: Mon, 9 Oct 2023 13:32:29 +0100 Subject: [PATCH] Fix templating (#773) --- charts/posthog/Chart.yaml | 2 +- charts/posthog/templates/events-pdb.yaml | 2 +- charts/posthog/templates/recordings-pdb.yaml | 2 +- charts/posthog/templates/web-pdb.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/posthog/Chart.yaml b/charts/posthog/Chart.yaml index 5dfb0191..99bb4ab3 100644 --- a/charts/posthog/Chart.yaml +++ b/charts/posthog/Chart.yaml @@ -11,7 +11,7 @@ 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. -version: 30.29.0 +version: 30.30.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. diff --git a/charts/posthog/templates/events-pdb.yaml b/charts/posthog/templates/events-pdb.yaml index ece1dbf2..cf65bb69 100644 --- a/charts/posthog/templates/events-pdb.yaml +++ b/charts/posthog/templates/events-pdb.yaml @@ -7,7 +7,7 @@ metadata: labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }} annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }} spec: - maxUnavailable: .Values.events.pdb.maxUnavailable + maxUnavailable: {{ .Values.events.pdb.maxUnavailable }} selector: matchLabels: app: {{ template "posthog.fullname" . }} diff --git a/charts/posthog/templates/recordings-pdb.yaml b/charts/posthog/templates/recordings-pdb.yaml index ed0ef728..79388e94 100644 --- a/charts/posthog/templates/recordings-pdb.yaml +++ b/charts/posthog/templates/recordings-pdb.yaml @@ -7,7 +7,7 @@ metadata: labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }} annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }} spec: - maxUnavailable: .Values.recordings.pdb.maxUnavailable + maxUnavailable: {{ .Values.recordings.pdb.maxUnavailable }} selector: matchLabels: app: {{ template "posthog.fullname" . }} diff --git a/charts/posthog/templates/web-pdb.yaml b/charts/posthog/templates/web-pdb.yaml index 0ac148c5..db84f881 100644 --- a/charts/posthog/templates/web-pdb.yaml +++ b/charts/posthog/templates/web-pdb.yaml @@ -7,7 +7,7 @@ metadata: labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }} annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }} spec: - maxUnavailable: .Values.web.pdb.maxUnavailable + maxUnavailable: {{ .Values.web.pdb.maxUnavailable }} selector: matchLabels: app: {{ template "posthog.fullname" . }}