forked from chkp-dhouari/cloudguard-OpenShift
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUID1000.json
More file actions
37 lines (36 loc) · 760 Bytes
/
UID1000.json
File metadata and controls
37 lines (36 loc) · 760 Bytes
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
#### for openshift v4.x and above please change the apiVersion to security.openshift.io/v1 #######
{
"apiVersion": "v1",
"kind": "SecurityContextConstraints",
"metadata": {
"name": "uid1000"
},
"requiredDropCapabilities": [
"KILL",
"MKNOD",
"SYS_CHROOT",
"SETUID",
"SETGID"
],
"runAsUser": {
"type": "MustRunAs",
"uid": "1000"
},
"seLinuxContext": {
"type": "MustRunAs"
},
"supplementalGroups": {
"type": "RunAsAny"
},
"fsGroup": {
"type": "MustRunAs"
},
"volumes": [
"configMap",
"downwardAPI",
"emptyDir",
"persistentVolumeClaim",
"projected",
"secret"
]
}