-
Notifications
You must be signed in to change notification settings - Fork 1
/
podsecuritypolicy.yaml
54 lines (53 loc) · 1.08 KB
/
podsecuritypolicy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#@ load("@ytt:data", "data")
#@ load("config.lib.yaml", "name", "fullName", "chart", "labels", "selectorLabels", "serviceAccountName")
#@ if not data.values.podSecurityPolicy.enabled:
kind: PodSecurityPolicy
apiVersion: policy/v1beta1
metadata:
name: #@ fullName()
labels: #@ labels()
spec:
fsGroup:
rule: RunAsAny
hostPorts:
- max: 0
min: 0
runAsUser:
rule: RunAsAny
seLinux:
rule: RunAsAny
supplementalGroups:
rule: RunAsAny
volumes:
- secret
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: #@ fullName() + "-use-psp"
labels: #@ labels()
rules:
- apiGroups:
- extensions
resources:
- podsecuritypolicies
resourceNames:
- #@ fullName()
verbs:
- use
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: #@ fullName() + "-use-psp"
labels: #@ labels()
namespace: #@ data.values.release.namespace
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: #@ fullName() + "-use-psp"
subjects:
- apiGroup: ""
kind: ServiceAccount
name: #@ serviceAccountName()
#@ end