From a18a322246ea8adf3c032250c683cd0828a952df Mon Sep 17 00:00:00 2001 From: LokiWager Date: Tue, 19 Sep 2023 15:15:35 +0800 Subject: [PATCH] fix lacking of ingresses resources --- charts/easegress/templates/ClusterRole.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/easegress/templates/ClusterRole.yaml b/charts/easegress/templates/ClusterRole.yaml index 78b4acb..6a77fa3 100644 --- a/charts/easegress/templates/ClusterRole.yaml +++ b/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"]