This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 1102d41842 fix(helm-chart): Fix broken PodDisruptionBudget due to 
introduction of extraLabels. (#30966)
1102d41842 is described below

commit 1102d41842fa7136c464ce550980ea6c21db2bb4
Author: Christoph Keller <[email protected]>
AuthorDate: Tue Nov 19 17:54:25 2024 +0100

    fix(helm-chart): Fix broken PodDisruptionBudget due to introduction of 
extraLabels. (#30966)
---
 helm/superset/Chart.yaml                | 2 +-
 helm/superset/README.md                 | 2 +-
 helm/superset/templates/pdb-beat.yaml   | 4 ++--
 helm/superset/templates/pdb-flower.yaml | 4 ++--
 helm/superset/templates/pdb-worker.yaml | 4 ++--
 helm/superset/templates/pdb-ws.yaml     | 4 ++--
 helm/superset/templates/pdb.yaml        | 4 ++--
 7 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 0d29b88334..e16de86fc8 100644
--- a/helm/superset/Chart.yaml
+++ b/helm/superset/Chart.yaml
@@ -29,7 +29,7 @@ maintainers:
   - name: craig-rueda
     email: [email protected]
     url: https://github.com/craig-rueda
-version: 0.13.1
+version: 0.13.2
 dependencies:
   - name: postgresql
     version: 12.1.6
diff --git a/helm/superset/README.md b/helm/superset/README.md
index 2031af3264..3bb4c1351b 100644
--- a/helm/superset/README.md
+++ b/helm/superset/README.md
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: 
https://github.com/norwoodj/helm-docs
 
 # superset
 
-![Version: 
0.13.1](https://img.shields.io/badge/Version-0.13.1-informational?style=flat-square)
+![Version: 
0.13.2](https://img.shields.io/badge/Version-0.13.2-informational?style=flat-square)
 
 Apache Superset is a modern, enterprise-ready business intelligence web 
application
 
diff --git a/helm/superset/templates/pdb-beat.yaml 
b/helm/superset/templates/pdb-beat.yaml
index 91cf5ddc58..f7d5bce27a 100644
--- a/helm/superset/templates/pdb-beat.yaml
+++ b/helm/superset/templates/pdb-beat.yaml
@@ -31,8 +31,8 @@ metadata:
     chart: {{ template "superset.chart" $ }}
     release: {{ $.Release.Name }}
     heritage: {{ $.Release.Service }}
-    {{- if .Values.extraLabels }}
-      {{- toYaml .Values.extraLabels | nindent 4 }}
+    {{- if $.Values.extraLabels }}
+      {{- toYaml $.Values.extraLabels | nindent 4 }}
     {{- end }}
 spec:
 {{- if .minAvailable }}
diff --git a/helm/superset/templates/pdb-flower.yaml 
b/helm/superset/templates/pdb-flower.yaml
index 241de3143c..1be15b65bb 100644
--- a/helm/superset/templates/pdb-flower.yaml
+++ b/helm/superset/templates/pdb-flower.yaml
@@ -31,8 +31,8 @@ metadata:
     chart: {{ template "superset.chart" $ }}
     release: {{ $.Release.Name }}
     heritage: {{ $.Release.Service }}
-    {{- if .Values.extraLabels }}
-      {{- toYaml .Values.extraLabels | nindent 4 }}
+    {{- if $.Values.extraLabels }}
+      {{- toYaml $.Values.extraLabels | nindent 4 }}
     {{- end }}
 spec:
 {{- if .minAvailable }}
diff --git a/helm/superset/templates/pdb-worker.yaml 
b/helm/superset/templates/pdb-worker.yaml
index d4ec768fba..a23c6d9308 100644
--- a/helm/superset/templates/pdb-worker.yaml
+++ b/helm/superset/templates/pdb-worker.yaml
@@ -31,8 +31,8 @@ metadata:
     chart: {{ template "superset.chart" $ }}
     release: {{ $.Release.Name }}
     heritage: {{ $.Release.Service }}
-    {{- if .Values.extraLabels }}
-      {{- toYaml .Values.extraLabels | nindent 4 }}
+    {{- if $.Values.extraLabels }}
+      {{- toYaml $.Values.extraLabels | nindent 4 }}
     {{- end }}
 spec:
 {{- if .minAvailable }}
diff --git a/helm/superset/templates/pdb-ws.yaml 
b/helm/superset/templates/pdb-ws.yaml
index 0e303880aa..9fe62b4ade 100644
--- a/helm/superset/templates/pdb-ws.yaml
+++ b/helm/superset/templates/pdb-ws.yaml
@@ -31,8 +31,8 @@ metadata:
     chart: {{ template "superset.chart" $ }}
     release: {{ $.Release.Name }}
     heritage: {{ $.Release.Service }}
-    {{- if .Values.extraLabels }}
-      {{- toYaml .Values.extraLabels | nindent 4 }}
+    {{- if $.Values.extraLabels }}
+      {{- toYaml $.Values.extraLabels | nindent 4 }}
     {{- end }}
 spec:
 {{- if .minAvailable }}
diff --git a/helm/superset/templates/pdb.yaml b/helm/superset/templates/pdb.yaml
index 3f86836f68..9b6be221d0 100644
--- a/helm/superset/templates/pdb.yaml
+++ b/helm/superset/templates/pdb.yaml
@@ -31,8 +31,8 @@ metadata:
     chart: {{ template "superset.chart" $ }}
     release: {{ $.Release.Name }}
     heritage: {{ $.Release.Service }}
-    {{- if .Values.extraLabels }}
-      {{- toYaml .Values.extraLabels | nindent 4 }}
+    {{- if $.Values.extraLabels }}
+      {{- toYaml $.Values.extraLabels | nindent 4 }}
     {{- end }}
 spec:
 {{- if .minAvailable }}

Reply via email to