Skip to content

[bitnami/superset] fix ingress with extraHosts failed to deploy #33052

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bitnami/superset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 2.0.1 (2025-04-17)

* [bitnami/superset] fix ingress with extraHosts failed to deploy ([#33052](https://github.com/bitnami/charts/pull/33052))

## 2.0.0 (2025-04-04)

* [bitnami/superset] Set `usePasswordFiles=true` by default ([#32778](https://github.com/bitnami/charts/pull/32778))
* [bitnami/superset] Set `usePasswordFiles=true` by default (#32778) ([89677d4](https://github.com/bitnami/charts/commit/89677d409181b014153179e4aa709cb9ffe79035)), closes [#32778](https://github.com/bitnami/charts/issues/32778)

## <small>1.1.3 (2025-04-02)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/superset/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
version: 2.0.1
4 changes: 3 additions & 1 deletion bitnami/superset/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ SPDX-License-Identifier: APACHE-2.0
*/}}

{{- if .Values.ingress.enabled }}
{{- $root := . }}

apiVersion: {{ include "common.capabilities.ingress.apiVersion" . }}
kind: Ingress
metadata:
Expand Down Expand Up @@ -42,7 +44,7 @@ spec:
{{- 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 }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-web" (include "common.names.fullname" $root)) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}
{{- include "common.tplvalues.render" (dict "value" .Values.ingress.extraRules "context" $) | nindent 4 }}
Expand Down
Loading