Merge commit 'fe564d72279f4ab061b961dd528623f0ed272667' as 'cluster-config'

This commit is contained in:
2025-03-30 15:46:16 -05:00
346 changed files with 11754 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
kind: ServiceAccount
apiVersion: v1
metadata:
name: completed-pod-cleanup
labels:
app: completed-pod-cleanup
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: cluster-completed-pod-cleanup
rules:
- apiGroups: [""]
resources:
- "pods"
verbs: ["get", "list", "create", "delete", "watch"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: completed-pod-cleanup
labels:
app: completed-pod-cleanup
subjects:
- kind: ServiceAccount
name: completed-pod-cleanup
namespace: clean-completed-pods
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-completed-pod-cleanup