Skip to content

Commit

Permalink
Update auto-generated files.
Browse files Browse the repository at this point in the history
  • Loading branch information
php-coder committed Jul 31, 2017
1 parent 075e3ed commit bd56ef8
Show file tree
Hide file tree
Showing 9 changed files with 263 additions and 166 deletions.
9 changes: 8 additions & 1 deletion api/swagger-spec/api-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -22773,7 +22773,8 @@
"allowHostPorts",
"allowHostPID",
"allowHostIPC",
"readOnlyRootFilesystem"
"readOnlyRootFilesystem",
"allowedFlexDrivers"
],
"properties": {
"kind": {
Expand Down Expand Up @@ -22885,6 +22886,12 @@
"type": "string"
},
"description": "SeccompProfiles lists the allowed profiles that may be set for the pod or container's seccomp annotations. An unset (nil) or empty value means that no profiles may be specifid by the pod or container.\tThe wildcard '*' may be used to allow all profiles. When used to generate a value for a pod the first non-wildcard profile will be used as the default."
},
"allowedFlexDrivers": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand Down
128 changes: 64 additions & 64 deletions pkg/authorization/apis/authorization/v1/generated.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion pkg/openapi/zz_generated.openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -9329,8 +9329,22 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
},
},
},
"allowedFlexDrivers": {
SchemaProps: spec.SchemaProps{
Description: "AllowedFlexDrivers is a whitelist of allowed Flexvolume drivers. Empty or nil indicates that all drivers may be used.",
Type: []string{"array"},
Items: &spec.SchemaOrArray{
Schema: &spec.Schema{
SchemaProps: spec.SchemaProps{
Type: []string{"string"},
Format: "",
},
},
},
},
},
},
Required: []string{"priority", "allowPrivilegedContainer", "defaultAddCapabilities", "requiredDropCapabilities", "allowedCapabilities", "allowHostDirVolumePlugin", "volumes", "allowHostNetwork", "allowHostPorts", "allowHostPID", "allowHostIPC", "readOnlyRootFilesystem"},
Required: []string{"priority", "allowPrivilegedContainer", "defaultAddCapabilities", "requiredDropCapabilities", "allowedCapabilities", "allowHostDirVolumePlugin", "volumes", "allowHostNetwork", "allowHostPorts", "allowHostPID", "allowHostIPC", "readOnlyRootFilesystem", "allowedFlexDrivers"},
},
},
Dependencies: []string{
Expand Down
Loading

0 comments on commit bd56ef8

Please sign in to comment.