You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by to...@apache.org on 2022/06/23 01:50:42 UTC

[apisix-helm-chart] 01/01: fix: render the ingressClassName field normally in apisix-dashboard

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 <to...@apache.org>
AuthorDate: Thu Jun 23 09:48:28 2022 +0800

    fix: render the ingressClassName field normally in apisix-dashboard
    
    Signed-off-by: Chao Zhang <to...@apache.org>
---
 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 }}