forked from cw-ozaki/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selinuxstrategyoptions.json
52 lines (52 loc) · 1.36 KB
/
selinuxstrategyoptions.json
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
{
"description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
"required": [
"rule"
],
"properties": {
"rule": {
"description": "rule is the strategy that will dictate the allowable labels that may be set.",
"type": [
"string",
"null"
]
},
"seLinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": [
"string",
"null"
]
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": [
"string",
"null"
]
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/schema#",
"type": "object"
}