Skip to content

Commit

Permalink
update 01/13/25 13:38:40
Browse files Browse the repository at this point in the history
  • Loading branch information
Qovery committed Jan 13, 2025
1 parent 3d64391 commit 566c18d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions charts/qovery/charts/qovery-shell-agent/templates/debug_rbac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This service account is used to spawn a pod for debugging purposes with admin rights
apiVersion: v1
kind: ServiceAccount
metadata:
name: qovery-debug
labels:
app: qovery-debug
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: qovery-debug
labels:
app: qovery-debug
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
- nonResourceURLs: ["*"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: qovery-debug
labels:
app: qovery-debug
subjects:
- kind: ServiceAccount
name: qovery-debug
roleRef:
kind: Role
name: qovery-debug
apiGroup: rbac.authorization.k8s.io

0 comments on commit 566c18d

Please sign in to comment.