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:41 UTC

[apisix-helm-chart] branch fix/ingressClassName created (now 8b5666d)

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

tokers pushed a change to branch fix/ingressClassName
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git


      at 8b5666d  fix: render the ingressClassName field normally in apisix-dashboard

This branch includes the following new commits:

     new 8b5666d  fix: render the ingressClassName field normally in apisix-dashboard

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by to...@apache.org.
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 }}