Skip to content

Commit fa2c3e5

Browse files
committed
Fix ingress values paths
1 parent df8e414 commit fa2c3e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

charts/azimuth-llm/templates/test/end-to-end.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ spec:
1818
command:
1919
- python
2020
- gradio-client-test.py
21-
{{- if .Values.ingress.ui.enabled }}
22-
- {{ .Values.ingress.host }}{{ .Values.ingress.ui.path }}
21+
{{- if .Values.ui.ingress.enabled }}
22+
- {{ .Values.ingress.host }}{{ .Values.ui.ingress.path }}
2323
{{- else }}
2424
- http://{{ .Values.ui.service.name }}.{{ .Release.Namespace }}.svc
2525
{{- end }}

charts/azimuth-llm/templates/test/web-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ spec:
1515
command:
1616
- nc
1717
- -vz
18-
{{- if .Values.ingress.ui.enabled }}
19-
- {{ .Values.ingress.host | trimPrefix "http://" | trimPrefix "https://" }}{{ .Values.ingress.ui.path }}
18+
{{- if .Values.ui.ingress.enabled }}
19+
- {{ .Values.ingress.host | trimPrefix "http://" | trimPrefix "https://" }}{{ .Values.ui.ingress.path }}
2020
{{- else }}
2121
- {{ .Values.ui.service.name }}.{{ .Release.Namespace }}.svc
2222
{{- end }}

0 commit comments

Comments
 (0)