From 9be72cbc6f55b14d85e2d207bb7121f3341a5376 Mon Sep 17 00:00:00 2001 From: Loki's Wager <32408858+LokiWager@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:28:47 +0800 Subject: [PATCH] Grant ingress resources. (#1091) --- helm-charts/easegress/templates/ClusterRole.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm-charts/easegress/templates/ClusterRole.yaml b/helm-charts/easegress/templates/ClusterRole.yaml index 78b4acb71f..6a77fa3366 100644 --- a/helm-charts/easegress/templates/ClusterRole.yaml +++ b/helm-charts/easegress/templates/ClusterRole.yaml @@ -6,3 +6,6 @@ rules: - apiGroups: [""] # "" indicates the core API group resources: ["services", "endpoints", "secrets"] verbs: ["get", "watch", "list"] + - apiGroups: ["networking.k8s.io"] + resources: ["ingresses"] + verbs: ["get", "watch", "list"]