We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70489d9 commit a2bbbb4Copy full SHA for a2bbbb4
1 file changed
helm/flink-kubernetes-operator/templates/rbac/role.yaml
@@ -30,7 +30,7 @@ metadata:
30
{{- include "flink-operator.labels" $ | nindent 4 }}
31
{{- template "flink-operator.rbacRules" $ }}
32
{{- end }}
33
-{{- /* Give operator the ability to operate on leases in the release namespace */ -}}
+{{- /* Give operator the ability to operate on leases in the release namespace and check presence of FlinkStateSnapshot CRD */ -}}
34
{{- if not (has .Release.Namespace .Values.watchNamespaces) }}
35
---
36
apiVersion: rbac.authorization.k8s.io/v1
@@ -53,6 +53,12 @@ rules:
53
- update
54
- patch
55
- delete
56
+ - apiGroups:
57
+ - flink.apache.org
58
+ resources:
59
+ - flinkstatesnapshots
60
+ verbs:
61
+ - list
62
63
64
0 commit comments