Skip to content

Commit 23ca0f7

Browse files
authored
Support ingressClassName and bump up zoonavigator to 1.1.2 (#54)
1 parent dbc967c commit 23ca0f7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

charts/zoonavigator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ type: application
1515

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.
18-
version: 0.1.3
18+
version: 0.1.4
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.
22-
appVersion: 1.1.1
22+
appVersion: 1.1.2

charts/zoonavigator/templates/ingress.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ metadata:
2424
{{- toYaml . | nindent 4 }}
2525
{{- end }}
2626
spec:
27+
{{- if and ( hasKey .Values.ingress "className" ) ( and .Values.ingress.className (semverCompare ">=1.18-0" $root.Capabilities.KubeVersion.GitVersion) ) }}
28+
ingressClassName: {{ .Values.ingress.className }}
29+
{{- end }}
2730
{{- if .Values.ingress.tls }}
2831
tls:
2932
{{- range .Values.ingress.tls }}

charts/zoonavigator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: elkozmon/zoonavigator
9-
tag: 1.1.1
9+
tag: 1.1.2
1010
pullPolicy: IfNotPresent
1111

1212
imagePullSecrets: []

0 commit comments

Comments
 (0)