Skip to content

Commit aebd16d

Browse files
committed
upgrade to 0.61.0
1 parent 79faf46 commit aebd16d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

charts/hub/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.60.0
19+
version: 0.61.0
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to

charts/hub/templates/kerberos-hub/hub-frontend.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
name: hub-frontend-ingress
2424
annotations:
2525
kubernetes.io/ingress.class: {{ .Values.ingress }}
26-
{{- if .Values.kerberoshub.oauth2Proxy.enabled }}
26+
{{- if eq .Values.kerberoshub.oauth2Proxy.enabled true }}
2727
nginx.ingress.kubernetes.io/auth-url: "https://$host/oauth2/auth"
2828
nginx.ingress.kubernetes.io/auth-signin: "https://$host/oauth2/start?rd=$escaped_request_uri"
2929
{{- end }}
@@ -103,7 +103,7 @@ spec:
103103
servicePort: 80
104104
{{- end }}
105105
{{- end }}
106-
{{- if .Values.kerberoshub.oauth2Proxy.enabled -}}
106+
{{- if eq .Values.kerberoshub.oauth2Proxy.enabled true }}
107107
---
108108
apiVersion: networking.k8s.io/v1
109109
kind: Ingress
@@ -120,7 +120,7 @@ metadata:
120120
spec:
121121
ingressClassName: nginx
122122
rules:
123-
- host: {{ .Values.kerberoshub.frontend.url }}
123+
- host: "{{ .Values.kerberoshub.frontend.url }}"
124124
http:
125125
paths:
126126
- path: /oauth2
@@ -132,9 +132,9 @@ spec:
132132
number: 4180
133133
tls:
134134
- hosts:
135-
- {{ .Values.kerberoshub.frontend.url }}
135+
- "{{ .Values.kerberoshub.frontend.url }}"
136136
secretName: oauth2-proxy-tls
137-
{{- end -}}
137+
{{- end }}
138138
---
139139
apiVersion: apps/v1
140140
kind: Deployment

0 commit comments

Comments
 (0)