File tree 2 files changed +9
-4
lines changed
deploy/helm/jumpstarter/charts/jumpstarter-controller/templates
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ metadata:
11
11
name : jumpstarter-controller-ingress
12
12
namespace : {{ default .Release.Namespace .Values.namespace }}
13
13
spec :
14
+ {{ if .Values.grpc.ingress.class }}
15
+ ingressClassName : {{ .Values.grpc.ingress.class }}
16
+ {{ end }}
14
17
rules :
15
18
{{ if .Values.grpc.hostname }}
16
19
- host : {{ .Values.grpc.hostname }}
36
39
{{ if .Values.grpc.tls.controllerCertSecret }}
37
40
secretName : {{ .Values.grpc.tls.controllerCertSecret }}
38
41
{{ end }}
39
- {{ end }}
42
+ {{ end }}
Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ spec:
30
30
port :
31
31
number : 8083
32
32
tls :
33
- - secretName : {{ .Values.grpc.tls.routerCertSecret }}
34
- hosts :
33
+ - hosts :
35
34
{{ if .Values.grpc.routerHostname }}
36
35
- {{ .Values.grpc.routerHostname }}
37
36
{{ else }}
38
37
- router.{{ .Values.global.baseDomain | required "a global.baseDomain or a grpc.routerHostname must be provided" }}
39
38
{{ end }}
40
- {{ end }}
39
+ {{ if .Values.grpc.tls.routerCertSecret }}
40
+ secretName : {{ .Values.grpc.tls.routerCertSecret }}
41
+ {{ end }}
42
+ {{ end }}
You can’t perform that action at this time.
0 commit comments