Skip to content

Commit 1f27298

Browse files
authored
fix(ingress): fix default ingressClassName (#102)
* fix(ingress): fix default ingressClassName
1 parent 97c93e3 commit 1f27298

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

charts/terrakube/Chart.yaml

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

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

charts/terrakube/templates/ingress-api.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
{{- toYaml . | nindent 4 }}
99
{{- end }}
1010
spec:
11-
ingressClassName: {{ .Values.ingress.api.ingressClassName | nginx }}
11+
ingressClassName: {{ default "nginx" .Values.ingress.api.ingressClassName }}
1212
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
1313
tls:
1414
- hosts:

charts/terrakube/templates/ingress-registry.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
{{- toYaml . | nindent 4 }}
99
{{- end }}
1010
spec:
11-
ingressClassName: {{ .Values.ingress.registry.ingressClassName | nginx }}
11+
ingressClassName: {{ default "nginx" .Values.ingress.registry.ingressClassName }}
1212
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
1313
tls:
1414
- hosts:

charts/terrakube/templates/ingress-ui.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
{{- toYaml . | nindent 4 }}
99
{{- end }}
1010
spec:
11-
ingressClassName: {{ .Values.ingress.ui.ingressClassName | nginx }}
11+
ingressClassName: {{ default "nginx" .Values.ingress.ui.ingressClassName }}
1212
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
1313
tls:
1414
- hosts:

0 commit comments

Comments
 (0)