-
Notifications
You must be signed in to change notification settings - Fork 477
/
podsecurity-example.yaml
82 lines (82 loc) · 1.85 KB
/
podsecurity-example.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
name: kube-system-psp
annotations:
seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default'
apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default'
seccomp.security.alpha.kubernetes.io/defaultProfileName: 'docker/default'
apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default'
spec:
privileged: false
# Required to prevent escalations to root.
allowPrivilegeEscalation: false
allowedCapabilities:
- '*'
# Allow core volume types.
hostNetwork: true
hostPorts:
- min: 0
max: 65535
hostIPC: true
hostPID: true
volumes:
- 'configMap'
- 'emptyDir'
- 'projected'
- 'secret'
- 'downwardAPI'
runAsUser:
# Require the container to run without root privileges.
rule: 'RunAsAny'
seLinux:
# This policy assumes the nodes are using AppArmor rather than SELinux.
rule: 'RunAsAny'
supplementalGroups:
rule: 'RunAsAny'
fsGroup:
rule: 'RunAsAny'
# rule: 'MustRunAs'
# ranges:
# # Forbid adding the root group.
# - min: 1
# max: 65535
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: psp:kube-system-psp
namespace: kube-system
rules:
- apiGroups:
- extensions
resourceNames:
- kube-system-psp
resources:
- podsecuritypolicies
verbs:
- use
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: psp:kube-system-psp
namespace: kube-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: psp:kube-system-psp
subjects:
- kind: ServiceAccount
name: coredns
- kind: ServiceAccount
name: heapster
- kind: ServiceAccount
name: metrics-server
- kind: ServiceAccount
name: influxdb
- kind: ServiceAccount
name: kube-dns
- kind: ServiceAccount
name: kubernetes-dashboard