Add Support for supplemental groups

This commit is contained in:
Sami Wagiaalla
2015-10-15 13:45:16 -04:00
parent a123b15fd1
commit 030f882f06
18 changed files with 20896 additions and 20526 deletions

View File

@@ -13189,6 +13189,18 @@
"v1.PodSecurityContext": {
"id": "v1.PodSecurityContext",
"description": "PodSecurityContext holds pod-level security attributes and common container settings.",
"properties": {
"supplementalGroups": {
"type": "array",
"items": {
"$ref": "integer"
},
"description": "SupplementalGroups can be used to specify a list of additional groups which the main container process will run as. This will be applied to all containers in the pod in addition to the primary group of the container."
}
}
},
"integer": {
"id": "integer",
"properties": {}
},
"v1.PodStatus": {

View File

@@ -3837,6 +3837,18 @@
"v1.PodSecurityContext": {
"id": "v1.PodSecurityContext",
"description": "PodSecurityContext holds pod-level security attributes and common container settings.",
"properties": {
"supplementalGroups": {
"type": "array",
"items": {
"$ref": "integer"
},
"description": "SupplementalGroups can be used to specify a list of additional groups which the main container process will run as. This will be applied to all containers in the pod in addition to the primary group of the container."
}
}
},
"integer": {
"id": "integer",
"properties": {}
},
"v1beta1.JobStatus": {