diff --git a/.vib/superset/runtime-parameters.yaml b/.vib/superset/runtime-parameters.yaml
index 29a8ace8f4..a86a5dfd53 100644
--- a/.vib/superset/runtime-parameters.yaml
+++ b/.vib/superset/runtime-parameters.yaml
@@ -27,3 +27,6 @@ flower:
serviceAccount:
create: true
automountServiceAccountToken: true
+postgresql:
+ primary:
+ resourcesPreset: small
\ No newline at end of file
diff --git a/bitnami/superset/CHANGELOG.md b/bitnami/superset/CHANGELOG.md
index 6b78b27ee4..8f331a4f5f 100644
--- a/bitnami/superset/CHANGELOG.md
+++ b/bitnami/superset/CHANGELOG.md
@@ -1,8 +1,12 @@
# Changelog
-## 2.0.2 (2025-05-06)
+## 2.0.3 (2025-05-07)
-* [bitnami/superset] fix(wait-for-examples): Support 429 errors in examples load ([#33458](https://github.com/bitnami/charts/pull/33458))
+* [bitnami/superset] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33439](https://github.com/bitnami/charts/pull/33439))
+
+## 2.0.2 (2025-05-06)
+
+* [bitnami/superset] fix(wait-for-examples): Support 429 errors in examples load (#33458) ([e01e70b](https://github.com/bitnami/charts/commit/e01e70b87ef128aa92db1c7f2cd79d16afbc42e5)), closes [#33458](https://github.com/bitnami/charts/issues/33458)
## 2.0.1 (2025-04-28)
diff --git a/bitnami/superset/Chart.lock b/bitnami/superset/Chart.lock
index f6df3ea62d..e96d808d9c 100644
--- a/bitnami/superset/Chart.lock
+++ b/bitnami/superset/Chart.lock
@@ -1,12 +1,12 @@
dependencies:
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
- version: 20.13.2
+ version: 20.13.4
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.6.6
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
- version: 2.30.0
-digest: sha256:19ce8ca8f97837d3633203fd7a7fabddf8f9dbb210ffab0c0191276c5b4e18d5
-generated: "2025-04-28T10:39:33.108784524Z"
+ version: 2.31.0
+digest: sha256:4e96e7deb3123f109d43507a618b2b9b45e84cdffece913eb3d85c6a6acd926c
+generated: "2025-05-06T11:07:51.488851669+02:00"
diff --git a/bitnami/superset/Chart.yaml b/bitnami/superset/Chart.yaml
index 1a91318fd2..6f29bf2909 100644
--- a/bitnami/superset/Chart.yaml
+++ b/bitnami/superset/Chart.yaml
@@ -38,4 +38,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/superset
- https://github.com/bitnami/containers/tree/main/bitnami/superset
- https://github.com/apache/superset
-version: 2.0.2
+version: 2.0.3
diff --git a/bitnami/superset/templates/flower/hpa.yaml b/bitnami/superset/templates/flower/hpa.yaml
index cfd51b1b55..a15fc424ce 100644
--- a/bitnami/superset/templates/flower/hpa.yaml
+++ b/bitnami/superset/templates/flower/hpa.yaml
@@ -27,24 +27,16 @@ spec:
- type: Resource
resource:
name: memory
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.flower.autoscaling.hpa.targetMemory }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.flower.autoscaling.hpa.targetMemory }}
- {{- end }}
{{- end }}
{{- if .Values.flower.autoscaling.hpa.targetCPU }}
- type: Resource
resource:
name: cpu
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.flower.autoscaling.hpa.targetCPU }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.flower.autoscaling.hpa.targetCPU }}
- {{- end }}
{{- end }}
{{- end }}
diff --git a/bitnami/superset/templates/ingress.yaml b/bitnami/superset/templates/ingress.yaml
index 960563ea70..fd3f46cc68 100644
--- a/bitnami/superset/templates/ingress.yaml
+++ b/bitnami/superset/templates/ingress.yaml
@@ -17,7 +17,7 @@ metadata:
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
- {{- if and .Values.ingress.ingressClassName (eq "true" (include "common.ingress.supportsIngressClassname" .)) }}
+ {{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -29,9 +29,7 @@ spec:
{{- toYaml .Values.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.path }}
- {{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
- {{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-web" (include "common.names.fullname" .)) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
@@ -39,9 +37,7 @@ spec:
http:
paths:
- path: {{ default "/" .path }}
- {{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
- {{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-web" (include "common.names.fullname" .)) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}
diff --git a/bitnami/superset/templates/web/hpa.yaml b/bitnami/superset/templates/web/hpa.yaml
index 88e530a122..387e863aef 100644
--- a/bitnami/superset/templates/web/hpa.yaml
+++ b/bitnami/superset/templates/web/hpa.yaml
@@ -27,24 +27,16 @@ spec:
- type: Resource
resource:
name: memory
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.web.autoscaling.hpa.targetMemory }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.web.autoscaling.hpa.targetMemory }}
- {{- end }}
{{- end }}
{{- if .Values.web.autoscaling.hpa.targetCPU }}
- type: Resource
resource:
name: cpu
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.web.autoscaling.hpa.targetCPU }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.web.autoscaling.hpa.targetCPU }}
- {{- end }}
{{- end }}
{{- end }}
diff --git a/bitnami/superset/templates/worker/hpa.yaml b/bitnami/superset/templates/worker/hpa.yaml
index 1e18008fcb..23dab12bd0 100644
--- a/bitnami/superset/templates/worker/hpa.yaml
+++ b/bitnami/superset/templates/worker/hpa.yaml
@@ -27,24 +27,16 @@ spec:
- type: Resource
resource:
name: memory
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.worker.autoscaling.hpa.targetMemory }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.worker.autoscaling.hpa.targetMemory }}
- {{- end }}
{{- end }}
{{- if .Values.worker.autoscaling.hpa.targetCPU }}
- type: Resource
resource:
name: cpu
- {{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
- targetAverageUtilization: {{ .Values.worker.autoscaling.hpa.targetCPU }}
- {{- else }}
target:
type: Utilization
averageUtilization: {{ .Values.worker.autoscaling.hpa.targetCPU }}
- {{- end }}
{{- end }}
{{- end }}