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

[apisix-helm-chart] branch master updated: fix: render the ingressClassName field normally in apisix-dashboard (#309)

This is an automated email from the ASF dual-hosted git repository.

zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new 15a838c  fix: render the ingressClassName field normally in apisix-dashboard (#309)
15a838c is described below

commit 15a838ce8d50dc099bc743465326f47710b42101
Author: Alex Zhang <to...@apache.org>
AuthorDate: Thu Jun 23 14:55:05 2022 +0800

    fix: render the ingressClassName field normally in apisix-dashboard (#309)
---
 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 }}