This is an automated email from the ASF dual-hosted git repository. tokers pushed a commit to branch fix/ingressClassName in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git
commit 8b5666d3a373ac6de1a3ce7f2b31b2d9cec6778c Author: Chao Zhang <[email protected]> AuthorDate: Thu Jun 23 09:48:28 2022 +0800 fix: render the ingressClassName field normally in apisix-dashboard Signed-off-by: Chao Zhang <[email protected]> --- charts/apisix-dashboard/templates/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/apisix-dashboard/templates/ingress.yaml b/charts/apisix-dashboard/templates/ingress.yaml index 59bd942..7db4d84 100644 --- a/charts/apisix-dashboard/templates/ingress.yaml +++ b/charts/apisix-dashboard/templates/ingress.yaml @@ -27,7 +27,7 @@ apiVersion: extensions/v1beta1 kind: Ingress metadata: {{- if .Values.ingress.className }} - ingressClassName: {{- .Values.ingress.className -}} + ingressClassName: {{ .Values.ingress.className }} {{- end }} name: {{ $fullName }} namespace: {{ .Release.Namespace }}
