This is an automated email from the ASF dual-hosted git repository.
bzp2010 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 2d321a4 fix: grant permission to get endpoint (#381)
2d321a4 is described below
commit 2d321a4b493f77b762758c11c197210e17b434e2
Author: Zhanjie Jin <[email protected]>
AuthorDate: Tue Nov 1 09:36:25 2022 +0800
fix: grant permission to get endpoint (#381)
Co-authored-by: jinzhanjie <[email protected]>
---
charts/apisix/templates/clusterrole.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/charts/apisix/templates/clusterrole.yaml
b/charts/apisix/templates/clusterrole.yaml
index 3f31216..31a4f83 100644
--- a/charts/apisix/templates/clusterrole.yaml
+++ b/charts/apisix/templates/clusterrole.yaml
@@ -22,5 +22,5 @@ metadata:
rules:
- apiGroups: [""]
resources: ["endpoints"]
- verbs: ["list", "watch"]
+ verbs: ["get", "list", "watch"]
{{- end }}