deploy-templates/templates/jenkins-scc-role.yaml (17 lines of code) (raw):
{{- if not (lookup "rbac.authorization.k8s.io/v1" "ClusterRole" "" "jenkins-scc-role") }}
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: jenkins-scc-role
annotations:
"helm.sh/hook": "pre-install"
rules:
- verbs:
- get
- list
- update
apiGroups:
- '*'
resources:
- securitycontextconstraints
{{- end -}}