We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78e48eb + 6872332 commit 00610c9Copy full SHA for 00610c9
helm/charts/playground-sandbox/templates/ingress.yaml
@@ -46,9 +46,9 @@ spec:
46
path: "/"
47
backend:
48
service:
49
- name: backend
+ name: {{ .Values.ingress.backendService.name }}
50
port:
51
- name: http
+ name: {{ .Values.ingress.backendService.portName }}
52
- host: "*.{{ .Values.ingress.projectSubdomain }}.{{ .Values.ingress.domain }}"
53
http:
54
paths:
helm/charts/playground-sandbox/values.yaml
@@ -186,6 +186,9 @@ ingress:
186
apiSubdomain: api
187
projectSubdomain: project
188
vscodeSubdomain: vscode
189
+ backendService:
190
+ name: backend
191
+ portName: http
192
193
tls: []
194
# - secretName: chart-example-tls
0 commit comments