From 56226d5052f10c9cba9c4ab54c24e28c4a752152 Mon Sep 17 00:00:00 2001 From: Kent Dong Date: Tue, 2 Jul 2024 21:22:00 +0800 Subject: [PATCH] feat: Create an IngressClass resource in the helm chart (#1072) --- helm/core/templates/ingressclass.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helm/core/templates/ingressclass.yaml diff --git a/helm/core/templates/ingressclass.yaml b/helm/core/templates/ingressclass.yaml new file mode 100644 index 000000000..000e1117e --- /dev/null +++ b/helm/core/templates/ingressclass.yaml @@ -0,0 +1,6 @@ +apiVersion: networking.k8s.io/v1 +kind: IngressClass +metadata: + name: {{ .Values.global.ingressClass }} +spec: + controller: higress.io/higress-controller \ No newline at end of file