forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfsgroupstrategyoptions-policy-v1beta1.json
44 lines (44 loc) · 1.23 KB
/
fsgroupstrategyoptions-policy-v1beta1.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
{
"description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"description": "IDRange provides a min/max of an allowed range of IDs.",
"properties": {
"max": {
"description": "max is the end of the range, inclusive.",
"format": "int64",
"type": "integer"
},
"min": {
"description": "min is the start of the range, inclusive.",
"format": "int64",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": [
"object",
"null"
]
},
"type": [
"array",
"null"
]
},
"rule": {
"description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
"type": [
"string",
"null"
]
}
},
"type": "object",
"$schema": "http://json-schema.org/schema#"
}