File tree 6 files changed +10
-1
lines changed
6 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -301,18 +301,21 @@ Once you have completed the above steps you can complete the file values.yaml to
301
301
| ui.serviceType | Yes | ClusterIP/NodePort/LoadBalancer/ExternalName |
302
302
| ui.securityContext | No | Fill securityContext field |
303
303
| ui.containerSecurityContext | No | Fill securityContext field in the container spec |
304
+ | ingress.ui.ingressClassName | Yes | Default is set to nginx |
304
305
| ingress.ui.useTls | Yes | true/false |
305
306
| ingress.ui.enabled | Yes | true/false |
306
307
| ingress.ui.domain | Yes | |
307
308
| ingress.ui.path | Yes | ImplementationSpecific/Exact/Prefix |
308
309
| ingress.ui.pathType | Yes | |
309
310
| ingress.ui.annotations | Yes | Ingress annotations |
311
+ | ingress.api.ingressClassName | Yes | Default is set to nginx |
310
312
| ingress.api.useTls | Yes | |
311
313
| ingress.api.enabled | Yes | |
312
314
| ingress.api.domain | Yes | |
313
315
| ingress.api.path | Yes | |
314
316
| ingress.api.pathType | Yes | ImplementationSpecific/Exact/Prefix |
315
317
| ingress.api.annotations | Yes | Ingress annotations |
318
+ | ingress.registry.ingressClassName | Yes | Default is set to nginx |
316
319
| ingress.registry.useTls | Yes | |
317
320
| ingress.registry.enabled | Yes | |
318
321
| ingress.registry.domain | Yes | |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 3.14.2
18
+ version : 3.15.0
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ metadata:
8
8
{{- toYaml . | nindent 4 }}
9
9
{{- end }}
10
10
spec :
11
+ ingressClassName : {{ .Values.ingress.api.ingressClassName | nginx }}
11
12
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
12
13
tls :
13
14
- hosts :
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ metadata:
8
8
{{- toYaml . | nindent 4 }}
9
9
{{- end }}
10
10
spec :
11
+ ingressClassName : {{ .Values.ingress.registry.ingressClassName | nginx }}
11
12
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
12
13
tls :
13
14
- hosts :
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ metadata:
8
8
{{- toYaml . | nindent 4 }}
9
9
{{- end }}
10
10
spec :
11
+ ingressClassName : {{ .Values.ingress.ui.ingressClassName | nginx }}
11
12
{{ if and .Values.ingress.useTls .Values.ingress.includeTlsHosts }}
12
13
tls :
13
14
- hosts :
Original file line number Diff line number Diff line change @@ -248,6 +248,7 @@ ingress:
248
248
domain : " terrakube-ui.minikube.net"
249
249
path : " /"
250
250
pathType : " Prefix"
251
+ ingressClassName : " nginx"
251
252
tlsSecretName : tls-secret-ui-terrakube
252
253
annotations :
253
254
nginx.ingress.kubernetes.io/use-regex : " true"
@@ -256,6 +257,7 @@ ingress:
256
257
domain : " terrakube-api.minikube.net"
257
258
path : " /"
258
259
pathType : " Prefix"
260
+ ingressClassName : " nginx"
259
261
tlsSecretName : tls-secret-api-terrakube
260
262
annotations :
261
263
nginx.ingress.kubernetes.io/use-regex : " true"
@@ -265,6 +267,7 @@ ingress:
265
267
domain : " terrakube-reg.minikube.net"
266
268
path : " /"
267
269
pathType : " Prefix"
270
+ ingressClassName : " nginx"
268
271
tlsSecretName : tls-secret-reg-terrakube
269
272
annotations :
270
273
nginx.ingress.kubernetes.io/use-regex : " true"
You can’t perform that action at this time.
0 commit comments