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 11apiVersion : v2
22name : steadybit-shopping-demo
33description : Steadybit shopping-demo application Helm chart for Kubernetes.
4- version : 1.1.26
4+ version : 1.1.27
55appVersion : latest
66type : application
77home : 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:
5555 # Enterprise Nginx ingress configuration
5656 nginx :
5757 enabled : false # Set to true to enable Nginx ingress
58+ openshift : false # Set to true if running on OpenShift
5859 host : null # Custom host for Nginx ingress (if null, uses gateway.ingress.host)
5960 annotations : {}
6061 tls :
You can’t perform that action at this time.
0 commit comments