Skip to content

Commit

Permalink
fix: variable context (#15511)
Browse files Browse the repository at this point in the history
* fix variable context

fixes #15510

* bump version

Co-authored-by: Jeffrey Koetsier <jeffrey@my-clay.com>
  • Loading branch information
jeffreykoetsier and Jeffrey Koetsier authored Jul 5, 2021
1 parent 07852c3 commit 624b413
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion helm/superset/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ maintainers:
- name: craig-rueda
email: craig@craigrueda.com
url: https://github.com/craig-rueda
version: 0.3.2
version: 0.3.3
dependencies:
- name: postgresql
version: 10.2.0
Expand Down
5 changes: 2 additions & 3 deletions helm/superset/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#
{{ if .Values.ingress.enabled -}}
{{- $fullName := include "superset.fullname" . -}}
{{- $ingressPath := .Values.ingress.path -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
Expand Down Expand Up @@ -46,8 +45,8 @@ spec:
- host: {{ . }}
http:
paths:
- path: {{ .Values.ingress.path }}
pathType: {{ .Values.ingress.pathType }}
- path: {{ $.Values.ingress.path }}
pathType: {{ $.Values.ingress.pathType }}
backend:
service:
name: {{ $fullName }}
Expand Down

0 comments on commit 624b413

Please sign in to comment.