Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
27 lines
767 B
Go
27 lines
767 B
Go
/*
|
|
* Kubernetes
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: v1.10.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package client
|
|
|
|
// SELinuxOptions are the labels to be applied to the container
|
|
type V1SeLinuxOptions struct {
|
|
|
|
// Level is SELinux level label that applies to the container.
|
|
Level string `json:"level,omitempty"`
|
|
|
|
// Role is a SELinux role label that applies to the container.
|
|
Role string `json:"role,omitempty"`
|
|
|
|
// Type is a SELinux type label that applies to the container.
|
|
Type_ string `json:"type,omitempty"`
|
|
|
|
// User is a SELinux user label that applies to the container.
|
|
User string `json:"user,omitempty"`
|
|
}
|