Skip to content

Commit

Permalink
Update rbac yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 1, 2023
1 parent 27dade1 commit 71042c5
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions examples/rbac/rstudio-launcher-rbac-0.2.17.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
# Source: rstudio-launcher-rbac/templates/rbac.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: rstudio-launcher-rbac
---
# Source: rstudio-launcher-rbac/templates/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: rstudio-launcher-rbac
rules:
- apiGroups:
- ""
resources:
- "serviceaccounts"
verbs:
- "list"
- apiGroups:
- ""
resources:
- "pods/log"
verbs:
- "get"
- "watch"
- "list"
- apiGroups:
- ""
resources:
- "pods"
- "pods/attach"
- "pods/exec"
verbs:
- "get"
- "create"
- "update"
- "patch"
- "watch"
- "list"
- "delete"
- apiGroups:
- ""
resources:
- "events"
verbs:
- "watch"
- apiGroups:
- ""
resources:
- "services"
verbs:
- "create"
- "get"
- "watch"
- "list"
- "delete"
- apiGroups:
- "batch"
resources:
- "jobs"
verbs:
- "create"
- "update"
- "patch"
- "get"
- "watch"
- "list"
- "delete"
- apiGroups:
- "metrics.k8s.io"
resources:
- "pods"
verbs:
- "get"
---
# Source: rstudio-launcher-rbac/templates/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: rstudio-launcher-rbac
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: rstudio-launcher-rbac
subjects:
- kind: ServiceAccount
name: rstudio-launcher-rbac

0 comments on commit 71042c5

Please sign in to comment.