We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9faa06a commit 8e62bb2Copy full SHA for 8e62bb2
charts/internal/shoot-system-components/charts/stackit-pod-identity-webhook/templates/rbac.yaml
@@ -0,0 +1,21 @@
1
+apiVersion: rbac.authorization.k8s.io/v1
2
+kind: ClusterRole
3
+metadata:
4
+ name: stackit-pod-identity-webhook-access
5
+rules:
6
+- apiGroups: [""]
7
+ resources: ["serviceaccounts"]
8
+ verbs: ["get", "list", "watch"]
9
+---
10
11
+kind: ClusterRoleBinding
12
13
+ name: stackit-pod-identity-webhook-access-binding
14
+subjects:
15
+- kind: ServiceAccount # from shoot access secret
16
+ name: pod-identity-webhook
17
+ namespace: kube-system
18
+roleRef:
19
+ kind: ClusterRole
20
21
+ apiGroup: rbac.authorization.k8s.io
0 commit comments