File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed
charts/steadybit-shopping-demo Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : steadybit-shopping-demo
3
3
description : Steadybit shopping-demo application Helm chart for Kubernetes.
4
- version : 1.1.26
4
+ version : 1.1.27
5
5
appVersion : latest
6
6
type : application
7
7
home : https://www.steadybit.com/
Original file line number Diff line number Diff line change
1
+ {{- if and .Values.gateway.enabled .Values.gateway.ingress.nginx.openshift -}}
2
+ ---
3
+ apiVersion : route.openshift.io/v1
4
+ kind : Route
5
+ metadata :
6
+ name : gateway-nginx-route
7
+ namespace : {{ .Release.Namespace }}
8
+ {{- with .Values.gateway.ingress.nginx.annotations }}
9
+ annotations :
10
+ {{- toYaml . | nindent 4 }}
11
+ {{- end }}
12
+ spec :
13
+ host : {{ .Values.gateway.ingress.nginx.host | default "" }}
14
+ to :
15
+ kind : Service
16
+ name : nginxingress-controller-nginx-ingress-controller
17
+ weight : 100
18
+ port :
19
+ targetPort : http
20
+ {{- if .Values.gateway.ingress.nginx.tls.enabled }}
21
+ tls :
22
+ termination : edge
23
+ {{- if .Values.gateway.ingress.nginx.tls.secretName }}
24
+ key : ${key}
25
+ certificate : ${certificate}
26
+ {{- end }}
27
+ {{- end }}
28
+ {{- end -}}
29
+
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ gateway:
55
55
# Enterprise Nginx ingress configuration
56
56
nginx :
57
57
enabled : false # Set to true to enable Nginx ingress
58
+ openshift : false # Set to true if running on OpenShift
58
59
host : null # Custom host for Nginx ingress (if null, uses gateway.ingress.host)
59
60
annotations : {}
60
61
tls :
You can’t perform that action at this time.
0 commit comments