v1

package
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 14, 2016 License: Apache-2.0 Imports: 27 Imported by: 0

Documentation

Overview

Package v1 is the v1 version of the API.

Package v1 is a generated protocol buffer package.

It is generated from these files:
	k8s.io/kubernetes/pkg/api/v1/generated.proto

It has these top-level messages:
	AWSElasticBlockStoreVolumeSource
	Affinity
	AttachedVolume
	AvoidPods
	AzureDiskVolumeSource
	AzureFileVolumeSource
	Binding
	Capabilities
	CephFSVolumeSource
	CinderVolumeSource
	ComponentCondition
	ComponentStatus
	ComponentStatusList
	ConfigMap
	ConfigMapKeySelector
	ConfigMapList
	ConfigMapVolumeSource
	Container
	ContainerImage
	ContainerPort
	ContainerState
	ContainerStateRunning
	ContainerStateTerminated
	ContainerStateWaiting
	ContainerStatus
	DaemonEndpoint
	DeleteOptions
	DownwardAPIVolumeFile
	DownwardAPIVolumeSource
	EmptyDirVolumeSource
	EndpointAddress
	EndpointPort
	EndpointSubset
	Endpoints
	EndpointsList
	EnvVar
	EnvVarSource
	Event
	EventList
	EventSource
	ExecAction
	ExportOptions
	FCVolumeSource
	FlexVolumeSource
	FlockerVolumeSource
	GCEPersistentDiskVolumeSource
	GitRepoVolumeSource
	GlusterfsVolumeSource
	HTTPGetAction
	HTTPHeader
	Handler
	HostPathVolumeSource
	ISCSIVolumeSource
	KeyToPath
	Lifecycle
	LimitRange
	LimitRangeItem
	LimitRangeList
	LimitRangeSpec
	List
	ListOptions
	LoadBalancerIngress
	LoadBalancerStatus
	LocalObjectReference
	NFSVolumeSource
	Namespace
	NamespaceList
	NamespaceSpec
	NamespaceStatus
	Node
	NodeAddress
	NodeAffinity
	NodeCondition
	NodeDaemonEndpoints
	NodeList
	NodeProxyOptions
	NodeSelector
	NodeSelectorRequirement
	NodeSelectorTerm
	NodeSpec
	NodeStatus
	NodeSystemInfo
	ObjectFieldSelector
	ObjectMeta
	ObjectReference
	OwnerReference
	PersistentVolume
	PersistentVolumeClaim
	PersistentVolumeClaimList
	PersistentVolumeClaimSpec
	PersistentVolumeClaimStatus
	PersistentVolumeClaimVolumeSource
	PersistentVolumeList
	PersistentVolumeSource
	PersistentVolumeSpec
	PersistentVolumeStatus
	PhotonPersistentDiskVolumeSource
	Pod
	PodAffinity
	PodAffinityTerm
	PodAntiAffinity
	PodAttachOptions
	PodCondition
	PodExecOptions
	PodList
	PodLogOptions
	PodProxyOptions
	PodSecurityContext
	PodSignature
	PodSpec
	PodStatus
	PodStatusResult
	PodTemplate
	PodTemplateList
	PodTemplateSpec
	Preconditions
	PreferAvoidPodsEntry
	PreferredSchedulingTerm
	Probe
	QuobyteVolumeSource
	RBDVolumeSource
	RangeAllocation
	ReplicationController
	ReplicationControllerCondition
	ReplicationControllerList
	ReplicationControllerSpec
	ReplicationControllerStatus
	ResourceFieldSelector
	ResourceQuota
	ResourceQuotaList
	ResourceQuotaSpec
	ResourceQuotaStatus
	ResourceRequirements
	SELinuxOptions
	Secret
	SecretKeySelector
	SecretList
	SecretVolumeSource
	SecurityContext
	SerializedReference
	Service
	ServiceAccount
	ServiceAccountList
	ServiceList
	ServicePort
	ServiceProxyOptions
	ServiceSpec
	ServiceStatus
	TCPSocketAction
	Taint
	Toleration
	Volume
	VolumeMount
	VolumeSource
	VsphereVirtualDiskVolumeSource
	WeightedPodAffinityTerm

Index

Constants

View Source
const (
	// NamespaceDefault means the object is in the default namespace which is applied when not specified by clients
	NamespaceDefault string = "default"
	// NamespaceAll is the default argument to specify on a context when you want to list or filter resources across all namespaces
	NamespaceAll string = ""
)
View Source
const (
	// This annotation key will be used to contain an array of v1 JSON encoded Containers
	// for init containers. The annotation will be placed into the internal type and cleared.
	// This key is only recognized by version >= 1.4.
	PodInitContainersBetaAnnotationKey = "pod.beta.kubernetes.io/init-containers"
	// This annotation key will be used to contain an array of v1 JSON encoded Containers
	// for init containers. The annotation will be placed into the internal type and cleared.
	// This key is recognized by version >= 1.3. For version 1.4 code, this key
	// will have its value copied to the beta key.
	PodInitContainersAnnotationKey = "pod.alpha.kubernetes.io/init-containers"
	// This annotation key will be used to contain an array of v1 JSON encoded
	// ContainerStatuses for init containers. The annotation will be placed into the internal
	// type and cleared. This key is only recognized by version >= 1.4.
	PodInitContainerStatusesBetaAnnotationKey = "pod.beta.kubernetes.io/init-container-statuses"
	// This annotation key will be used to contain an array of v1 JSON encoded
	// ContainerStatuses for init containers. The annotation will be placed into the internal
	// type and cleared. This key is recognized by version >= 1.3. For version 1.4 code,
	// this key will have its value copied to the beta key.
	PodInitContainerStatusesAnnotationKey = "pod.alpha.kubernetes.io/init-container-statuses"
)
View Source
const (
	FinalizerKubernetes FinalizerName = "kubernetes"
	FinalizerOrphan     string        = "orphan"
)

These are internal finalizer values to Kubernetes, must be qualified name unless defined here

View Source
const (
	// Information only and will not cause any problems
	EventTypeNormal string = "Normal"
	// These events are to warn that something might go wrong
	EventTypeWarning string = "Warning"
)

Valid values for event types (new types could be added in future)

View Source
const (
	// SecretTypeOpaque is the default. Arbitrary user-defined data
	SecretTypeOpaque SecretType = "Opaque"

	// SecretTypeServiceAccountToken contains a token that identifies a service account to the API
	//
	// Required fields:
	// - Secret.Annotations["kubernetes.io/service-account.name"] - the name of the ServiceAccount the token identifies
	// - Secret.Annotations["kubernetes.io/service-account.uid"] - the UID of the ServiceAccount the token identifies
	// - Secret.Data["token"] - a token that identifies the service account to the API
	SecretTypeServiceAccountToken SecretType = "kubernetes.io/service-account-token"

	// ServiceAccountNameKey is the key of the required annotation for SecretTypeServiceAccountToken secrets
	ServiceAccountNameKey = "kubernetes.io/service-account.name"
	// ServiceAccountUIDKey is the key of the required annotation for SecretTypeServiceAccountToken secrets
	ServiceAccountUIDKey = "kubernetes.io/service-account.uid"
	// ServiceAccountTokenKey is the key of the required data for SecretTypeServiceAccountToken secrets
	ServiceAccountTokenKey = "token"
	// ServiceAccountKubeconfigKey is the key of the optional kubeconfig data for SecretTypeServiceAccountToken secrets
	ServiceAccountKubeconfigKey = "kubernetes.kubeconfig"
	// ServiceAccountRootCAKey is the key of the optional root certificate authority for SecretTypeServiceAccountToken secrets
	ServiceAccountRootCAKey = "ca.crt"
	// ServiceAccountNamespaceKey is the key of the optional namespace to use as the default for namespaced API calls
	ServiceAccountNamespaceKey = "namespace"

	// SecretTypeDockercfg contains a dockercfg file that follows the same format rules as ~/.dockercfg
	//
	// Required fields:
	// - Secret.Data[".dockercfg"] - a serialized ~/.dockercfg file
	SecretTypeDockercfg SecretType = "kubernetes.io/dockercfg"

	// DockerConfigKey is the key of the required data for SecretTypeDockercfg secrets
	DockerConfigKey = ".dockercfg"

	// SecretTypeTLS contains information about a TLS client or server secret. It
	// is primarily used with TLS termination of the Ingress resource, but may be
	// used in other types.
	//
	// Required fields:
	// - Secret.Data["tls.key"] - TLS private key.
	//   Secret.Data["tls.crt"] - TLS certificate.
	// TODO: Consider supporting different formats, specifying CA/destinationCA.
	SecretTypeTLS SecretType = "kubernetes.io/tls"

	// TLSCertKey is the key for tls certificates in a TLS secert.
	TLSCertKey = "tls.crt"
	// TLSPrivateKeyKey is the key for the private key field in a TLS secret.
	TLSPrivateKeyKey = "tls.key"
)
View Source
const (
	// ClusterIPNone - do not assign a cluster IP
	// no proxying required and no environment variables should be created for pods
	ClusterIPNone = "None"
)
View Source
const (
	ConfigMapVolumeSourceDefaultMode int32 = 0644
)
View Source
const (
	// "default-scheduler" is the name of default scheduler.
	DefaultSchedulerName = "default-scheduler"
)
View Source
const (
	DownwardAPIVolumeSourceDefaultMode int32 = 0644
)
View Source
const GroupName = ""

GroupName is the group name use in this package

View Source
const MaxSecretSize = 1 * 1024 * 1024
View Source
const (

	// annotation key prefix used to identify non-convertible json paths.
	NonConvertibleAnnotationPrefix = "kubernetes.io/non-convertible"
)
View Source
const (
	SecretVolumeSourceDefaultMode int32 = 0644
)
View Source
const (
	// TerminationMessagePathDefault means the default path to capture the application termination message running in a container
	TerminationMessagePathDefault string = "/dev/termination-log"
)

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)
View Source
var (
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes, addDefaultingFuncs, addConversionFuncs, addFastPathConversionFuncs)
	AddToScheme   = SchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: "v1"}

SchemeGroupVersion is group version used to register these objects

Functions

func AddFieldLabelConversionsForEvent added in v1.4.0

func AddFieldLabelConversionsForEvent(scheme *runtime.Scheme) error

func AddFieldLabelConversionsForNamespace added in v1.4.0

func AddFieldLabelConversionsForNamespace(scheme *runtime.Scheme) error

func AddFieldLabelConversionsForSecret added in v1.4.0

func AddFieldLabelConversionsForSecret(scheme *runtime.Scheme) error

func Convert_api_AWSElasticBlockStoreVolumeSource_To_v1_AWSElasticBlockStoreVolumeSource added in v1.2.0

func Convert_api_AWSElasticBlockStoreVolumeSource_To_v1_AWSElasticBlockStoreVolumeSource(in *api.AWSElasticBlockStoreVolumeSource, out *AWSElasticBlockStoreVolumeSource, s conversion.Scope) error

func Convert_api_Affinity_To_v1_Affinity added in v1.3.0

func Convert_api_Affinity_To_v1_Affinity(in *api.Affinity, out *Affinity, s conversion.Scope) error

func Convert_api_AttachedVolume_To_v1_AttachedVolume added in v1.3.0

func Convert_api_AttachedVolume_To_v1_AttachedVolume(in *api.AttachedVolume, out *AttachedVolume, s conversion.Scope) error

func Convert_api_AvoidPods_To_v1_AvoidPods added in v1.4.0

func Convert_api_AvoidPods_To_v1_AvoidPods(in *api.AvoidPods, out *AvoidPods, s conversion.Scope) error

func Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource added in v1.4.0

func Convert_api_AzureDiskVolumeSource_To_v1_AzureDiskVolumeSource(in *api.AzureDiskVolumeSource, out *AzureDiskVolumeSource, s conversion.Scope) error

func Convert_api_AzureFileVolumeSource_To_v1_AzureFileVolumeSource added in v1.2.0

func Convert_api_AzureFileVolumeSource_To_v1_AzureFileVolumeSource(in *api.AzureFileVolumeSource, out *AzureFileVolumeSource, s conversion.Scope) error

func Convert_api_Binding_To_v1_Binding added in v1.2.0

func Convert_api_Binding_To_v1_Binding(in *api.Binding, out *Binding, s conversion.Scope) error

func Convert_api_Capabilities_To_v1_Capabilities added in v1.2.0

func Convert_api_Capabilities_To_v1_Capabilities(in *api.Capabilities, out *Capabilities, s conversion.Scope) error

func Convert_api_CephFSVolumeSource_To_v1_CephFSVolumeSource added in v1.2.0

func Convert_api_CephFSVolumeSource_To_v1_CephFSVolumeSource(in *api.CephFSVolumeSource, out *CephFSVolumeSource, s conversion.Scope) error

func Convert_api_CinderVolumeSource_To_v1_CinderVolumeSource added in v1.2.0

func Convert_api_CinderVolumeSource_To_v1_CinderVolumeSource(in *api.CinderVolumeSource, out *CinderVolumeSource, s conversion.Scope) error

func Convert_api_ComponentCondition_To_v1_ComponentCondition added in v1.2.0

func Convert_api_ComponentCondition_To_v1_ComponentCondition(in *api.ComponentCondition, out *ComponentCondition, s conversion.Scope) error

func Convert_api_ComponentStatusList_To_v1_ComponentStatusList added in v1.2.0

func Convert_api_ComponentStatusList_To_v1_ComponentStatusList(in *api.ComponentStatusList, out *ComponentStatusList, s conversion.Scope) error

func Convert_api_ComponentStatus_To_v1_ComponentStatus added in v1.2.0

func Convert_api_ComponentStatus_To_v1_ComponentStatus(in *api.ComponentStatus, out *ComponentStatus, s conversion.Scope) error

func Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector added in v1.2.0

func Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in *api.ConfigMapKeySelector, out *ConfigMapKeySelector, s conversion.Scope) error

func Convert_api_ConfigMapList_To_v1_ConfigMapList added in v1.2.0

func Convert_api_ConfigMapList_To_v1_ConfigMapList(in *api.ConfigMapList, out *ConfigMapList, s conversion.Scope) error

func Convert_api_ConfigMapVolumeSource_To_v1_ConfigMapVolumeSource added in v1.2.0

func Convert_api_ConfigMapVolumeSource_To_v1_ConfigMapVolumeSource(in *api.ConfigMapVolumeSource, out *ConfigMapVolumeSource, s conversion.Scope) error

func Convert_api_ConfigMap_To_v1_ConfigMap added in v1.2.0

func Convert_api_ConfigMap_To_v1_ConfigMap(in *api.ConfigMap, out *ConfigMap, s conversion.Scope) error

func Convert_api_ContainerImage_To_v1_ContainerImage added in v1.2.0

func Convert_api_ContainerImage_To_v1_ContainerImage(in *api.ContainerImage, out *ContainerImage, s conversion.Scope) error

func Convert_api_ContainerPort_To_v1_ContainerPort added in v1.2.0

func Convert_api_ContainerPort_To_v1_ContainerPort(in *api.ContainerPort, out *ContainerPort, s conversion.Scope) error

func Convert_api_ContainerStateRunning_To_v1_ContainerStateRunning added in v1.2.0

func Convert_api_ContainerStateRunning_To_v1_ContainerStateRunning(in *api.ContainerStateRunning, out *ContainerStateRunning, s conversion.Scope) error

func Convert_api_ContainerStateTerminated_To_v1_ContainerStateTerminated added in v1.2.0

func Convert_api_ContainerStateTerminated_To_v1_ContainerStateTerminated(in *api.ContainerStateTerminated, out *ContainerStateTerminated, s conversion.Scope) error

func Convert_api_ContainerStateWaiting_To_v1_ContainerStateWaiting added in v1.2.0

func Convert_api_ContainerStateWaiting_To_v1_ContainerStateWaiting(in *api.ContainerStateWaiting, out *ContainerStateWaiting, s conversion.Scope) error

func Convert_api_ContainerState_To_v1_ContainerState added in v1.2.0

func Convert_api_ContainerState_To_v1_ContainerState(in *api.ContainerState, out *ContainerState, s conversion.Scope) error

func Convert_api_ContainerStatus_To_v1_ContainerStatus added in v1.2.0

func Convert_api_ContainerStatus_To_v1_ContainerStatus(in *api.ContainerStatus, out *ContainerStatus, s conversion.Scope) error

func Convert_api_Container_To_v1_Container added in v1.2.0

func Convert_api_Container_To_v1_Container(in *api.Container, out *Container, s conversion.Scope) error

func Convert_api_DaemonEndpoint_To_v1_DaemonEndpoint added in v1.2.0

func Convert_api_DaemonEndpoint_To_v1_DaemonEndpoint(in *api.DaemonEndpoint, out *DaemonEndpoint, s conversion.Scope) error

func Convert_api_DeleteOptions_To_v1_DeleteOptions added in v1.2.0

func Convert_api_DeleteOptions_To_v1_DeleteOptions(in *api.DeleteOptions, out *DeleteOptions, s conversion.Scope) error

func Convert_api_DownwardAPIVolumeFile_To_v1_DownwardAPIVolumeFile added in v1.2.0

func Convert_api_DownwardAPIVolumeFile_To_v1_DownwardAPIVolumeFile(in *api.DownwardAPIVolumeFile, out *DownwardAPIVolumeFile, s conversion.Scope) error

func Convert_api_DownwardAPIVolumeSource_To_v1_DownwardAPIVolumeSource added in v1.2.0

func Convert_api_DownwardAPIVolumeSource_To_v1_DownwardAPIVolumeSource(in *api.DownwardAPIVolumeSource, out *DownwardAPIVolumeSource, s conversion.Scope) error

func Convert_api_EmptyDirVolumeSource_To_v1_EmptyDirVolumeSource added in v1.2.0

func Convert_api_EmptyDirVolumeSource_To_v1_EmptyDirVolumeSource(in *api.EmptyDirVolumeSource, out *EmptyDirVolumeSource, s conversion.Scope) error

func Convert_api_EndpointAddress_To_v1_EndpointAddress added in v1.2.0

func Convert_api_EndpointAddress_To_v1_EndpointAddress(in *api.EndpointAddress, out *EndpointAddress, s conversion.Scope) error

func Convert_api_EndpointPort_To_v1_EndpointPort added in v1.2.0

func Convert_api_EndpointPort_To_v1_EndpointPort(in *api.EndpointPort, out *EndpointPort, s conversion.Scope) error

func Convert_api_EndpointSubset_To_v1_EndpointSubset added in v1.2.0

func Convert_api_EndpointSubset_To_v1_EndpointSubset(in *api.EndpointSubset, out *EndpointSubset, s conversion.Scope) error

func Convert_api_EndpointsList_To_v1_EndpointsList added in v1.2.0

func Convert_api_EndpointsList_To_v1_EndpointsList(in *api.EndpointsList, out *EndpointsList, s conversion.Scope) error

func Convert_api_Endpoints_To_v1_Endpoints added in v1.2.0

func Convert_api_Endpoints_To_v1_Endpoints(in *api.Endpoints, out *Endpoints, s conversion.Scope) error

func Convert_api_EnvVarSource_To_v1_EnvVarSource added in v1.2.0

func Convert_api_EnvVarSource_To_v1_EnvVarSource(in *api.EnvVarSource, out *EnvVarSource, s conversion.Scope) error

func Convert_api_EnvVar_To_v1_EnvVar added in v1.2.0

func Convert_api_EnvVar_To_v1_EnvVar(in *api.EnvVar, out *EnvVar, s conversion.Scope) error

func Convert_api_EventList_To_v1_EventList added in v1.2.0

func Convert_api_EventList_To_v1_EventList(in *api.EventList, out *EventList, s conversion.Scope) error

func Convert_api_EventSource_To_v1_EventSource added in v1.2.0

func Convert_api_EventSource_To_v1_EventSource(in *api.EventSource, out *EventSource, s conversion.Scope) error

func Convert_api_Event_To_v1_Event added in v1.2.0

func Convert_api_Event_To_v1_Event(in *api.Event, out *Event, s conversion.Scope) error

func Convert_api_ExecAction_To_v1_ExecAction added in v1.2.0

func Convert_api_ExecAction_To_v1_ExecAction(in *api.ExecAction, out *ExecAction, s conversion.Scope) error

func Convert_api_ExportOptions_To_v1_ExportOptions added in v1.3.0

func Convert_api_ExportOptions_To_v1_ExportOptions(in *api.ExportOptions, out *ExportOptions, s conversion.Scope) error

func Convert_api_FCVolumeSource_To_v1_FCVolumeSource added in v1.2.0

func Convert_api_FCVolumeSource_To_v1_FCVolumeSource(in *api.FCVolumeSource, out *FCVolumeSource, s conversion.Scope) error

func Convert_api_FlexVolumeSource_To_v1_FlexVolumeSource added in v1.2.0

func Convert_api_FlexVolumeSource_To_v1_FlexVolumeSource(in *api.FlexVolumeSource, out *FlexVolumeSource, s conversion.Scope) error

func Convert_api_FlockerVolumeSource_To_v1_FlockerVolumeSource added in v1.2.0

func Convert_api_FlockerVolumeSource_To_v1_FlockerVolumeSource(in *api.FlockerVolumeSource, out *FlockerVolumeSource, s conversion.Scope) error

func Convert_api_GCEPersistentDiskVolumeSource_To_v1_GCEPersistentDiskVolumeSource added in v1.2.0

func Convert_api_GCEPersistentDiskVolumeSource_To_v1_GCEPersistentDiskVolumeSource(in *api.GCEPersistentDiskVolumeSource, out *GCEPersistentDiskVolumeSource, s conversion.Scope) error

func Convert_api_GitRepoVolumeSource_To_v1_GitRepoVolumeSource added in v1.2.0

func Convert_api_GitRepoVolumeSource_To_v1_GitRepoVolumeSource(in *api.GitRepoVolumeSource, out *GitRepoVolumeSource, s conversion.Scope) error

func Convert_api_GlusterfsVolumeSource_To_v1_GlusterfsVolumeSource added in v1.2.0

func Convert_api_GlusterfsVolumeSource_To_v1_GlusterfsVolumeSource(in *api.GlusterfsVolumeSource, out *GlusterfsVolumeSource, s conversion.Scope) error

func Convert_api_HTTPGetAction_To_v1_HTTPGetAction added in v1.2.0

func Convert_api_HTTPGetAction_To_v1_HTTPGetAction(in *api.HTTPGetAction, out *HTTPGetAction, s conversion.Scope) error

func Convert_api_HTTPHeader_To_v1_HTTPHeader added in v1.2.0

func Convert_api_HTTPHeader_To_v1_HTTPHeader(in *api.HTTPHeader, out *HTTPHeader, s conversion.Scope) error

func Convert_api_Handler_To_v1_Handler added in v1.2.0

func Convert_api_Handler_To_v1_Handler(in *api.Handler, out *Handler, s conversion.Scope) error

func Convert_api_HostPathVolumeSource_To_v1_HostPathVolumeSource added in v1.2.0

func Convert_api_HostPathVolumeSource_To_v1_HostPathVolumeSource(in *api.HostPathVolumeSource, out *HostPathVolumeSource, s conversion.Scope) error

func Convert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource added in v1.2.0

func Convert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource(in *api.ISCSIVolumeSource, out *ISCSIVolumeSource, s conversion.Scope) error

func Convert_api_KeyToPath_To_v1_KeyToPath added in v1.2.0

func Convert_api_KeyToPath_To_v1_KeyToPath(in *api.KeyToPath, out *KeyToPath, s conversion.Scope) error

func Convert_api_Lifecycle_To_v1_Lifecycle added in v1.2.0

func Convert_api_Lifecycle_To_v1_Lifecycle(in *api.Lifecycle, out *Lifecycle, s conversion.Scope) error

func Convert_api_LimitRangeItem_To_v1_LimitRangeItem added in v1.2.0

func Convert_api_LimitRangeItem_To_v1_LimitRangeItem(in *api.LimitRangeItem, out *LimitRangeItem, s conversion.Scope) error

func Convert_api_LimitRangeList_To_v1_LimitRangeList added in v1.2.0

func Convert_api_LimitRangeList_To_v1_LimitRangeList(in *api.LimitRangeList, out *LimitRangeList, s conversion.Scope) error

func Convert_api_LimitRangeSpec_To_v1_LimitRangeSpec added in v1.2.0

func Convert_api_LimitRangeSpec_To_v1_LimitRangeSpec(in *api.LimitRangeSpec, out *LimitRangeSpec, s conversion.Scope) error

func Convert_api_LimitRange_To_v1_LimitRange added in v1.2.0

func Convert_api_LimitRange_To_v1_LimitRange(in *api.LimitRange, out *LimitRange, s conversion.Scope) error

func Convert_api_ListOptions_To_v1_ListOptions added in v1.2.0

func Convert_api_ListOptions_To_v1_ListOptions(in *api.ListOptions, out *ListOptions, s conversion.Scope) error

func Convert_api_List_To_v1_List added in v1.2.0

func Convert_api_List_To_v1_List(in *api.List, out *List, s conversion.Scope) error

func Convert_api_LoadBalancerIngress_To_v1_LoadBalancerIngress added in v1.2.0

func Convert_api_LoadBalancerIngress_To_v1_LoadBalancerIngress(in *api.LoadBalancerIngress, out *LoadBalancerIngress, s conversion.Scope) error

func Convert_api_LoadBalancerStatus_To_v1_LoadBalancerStatus added in v1.2.0

func Convert_api_LoadBalancerStatus_To_v1_LoadBalancerStatus(in *api.LoadBalancerStatus, out *LoadBalancerStatus, s conversion.Scope) error

func Convert_api_LocalObjectReference_To_v1_LocalObjectReference added in v1.2.0

func Convert_api_LocalObjectReference_To_v1_LocalObjectReference(in *api.LocalObjectReference, out *LocalObjectReference, s conversion.Scope) error

func Convert_api_NFSVolumeSource_To_v1_NFSVolumeSource added in v1.2.0

func Convert_api_NFSVolumeSource_To_v1_NFSVolumeSource(in *api.NFSVolumeSource, out *NFSVolumeSource, s conversion.Scope) error

func Convert_api_NamespaceList_To_v1_NamespaceList added in v1.2.0

func Convert_api_NamespaceList_To_v1_NamespaceList(in *api.NamespaceList, out *NamespaceList, s conversion.Scope) error

func Convert_api_NamespaceSpec_To_v1_NamespaceSpec added in v1.2.0

func Convert_api_NamespaceSpec_To_v1_NamespaceSpec(in *api.NamespaceSpec, out *NamespaceSpec, s conversion.Scope) error

func Convert_api_NamespaceStatus_To_v1_NamespaceStatus added in v1.2.0

func Convert_api_NamespaceStatus_To_v1_NamespaceStatus(in *api.NamespaceStatus, out *NamespaceStatus, s conversion.Scope) error

func Convert_api_Namespace_To_v1_Namespace added in v1.2.0

func Convert_api_Namespace_To_v1_Namespace(in *api.Namespace, out *Namespace, s conversion.Scope) error

func Convert_api_NodeAddress_To_v1_NodeAddress added in v1.2.0

func Convert_api_NodeAddress_To_v1_NodeAddress(in *api.NodeAddress, out *NodeAddress, s conversion.Scope) error

func Convert_api_NodeAffinity_To_v1_NodeAffinity added in v1.3.0

func Convert_api_NodeAffinity_To_v1_NodeAffinity(in *api.NodeAffinity, out *NodeAffinity, s conversion.Scope) error

func Convert_api_NodeCondition_To_v1_NodeCondition added in v1.2.0

func Convert_api_NodeCondition_To_v1_NodeCondition(in *api.NodeCondition, out *NodeCondition, s conversion.Scope) error

func Convert_api_NodeDaemonEndpoints_To_v1_NodeDaemonEndpoints added in v1.2.0

func Convert_api_NodeDaemonEndpoints_To_v1_NodeDaemonEndpoints(in *api.NodeDaemonEndpoints, out *NodeDaemonEndpoints, s conversion.Scope) error

func Convert_api_NodeList_To_v1_NodeList added in v1.2.0

func Convert_api_NodeList_To_v1_NodeList(in *api.NodeList, out *NodeList, s conversion.Scope) error

func Convert_api_NodeProxyOptions_To_v1_NodeProxyOptions added in v1.2.0

func Convert_api_NodeProxyOptions_To_v1_NodeProxyOptions(in *api.NodeProxyOptions, out *NodeProxyOptions, s conversion.Scope) error

func Convert_api_NodeSelectorRequirement_To_v1_NodeSelectorRequirement added in v1.3.0

func Convert_api_NodeSelectorRequirement_To_v1_NodeSelectorRequirement(in *api.NodeSelectorRequirement, out *NodeSelectorRequirement, s conversion.Scope) error

func Convert_api_NodeSelectorTerm_To_v1_NodeSelectorTerm added in v1.3.0

func Convert_api_NodeSelectorTerm_To_v1_NodeSelectorTerm(in *api.NodeSelectorTerm, out *NodeSelectorTerm, s conversion.Scope) error

func Convert_api_NodeSelector_To_v1_NodeSelector added in v1.3.0

func Convert_api_NodeSelector_To_v1_NodeSelector(in *api.NodeSelector, out *NodeSelector, s conversion.Scope) error

func Convert_api_NodeSpec_To_v1_NodeSpec added in v1.2.0

func Convert_api_NodeSpec_To_v1_NodeSpec(in *api.NodeSpec, out *NodeSpec, s conversion.Scope) error

func Convert_api_NodeStatus_To_v1_NodeStatus added in v1.2.0

func Convert_api_NodeStatus_To_v1_NodeStatus(in *api.NodeStatus, out *NodeStatus, s conversion.Scope) error

func Convert_api_NodeSystemInfo_To_v1_NodeSystemInfo added in v1.2.0

func Convert_api_NodeSystemInfo_To_v1_NodeSystemInfo(in *api.NodeSystemInfo, out *NodeSystemInfo, s conversion.Scope) error

func Convert_api_Node_To_v1_Node added in v1.2.0

func Convert_api_Node_To_v1_Node(in *api.Node, out *Node, s conversion.Scope) error

func Convert_api_ObjectFieldSelector_To_v1_ObjectFieldSelector added in v1.2.0

func Convert_api_ObjectFieldSelector_To_v1_ObjectFieldSelector(in *api.ObjectFieldSelector, out *ObjectFieldSelector, s conversion.Scope) error

func Convert_api_ObjectMeta_To_v1_ObjectMeta added in v1.2.0

func Convert_api_ObjectMeta_To_v1_ObjectMeta(in *api.ObjectMeta, out *ObjectMeta, s conversion.Scope) error

func Convert_api_ObjectReference_To_v1_ObjectReference added in v1.2.0

func Convert_api_ObjectReference_To_v1_ObjectReference(in *api.ObjectReference, out *ObjectReference, s conversion.Scope) error

func Convert_api_OwnerReference_To_v1_OwnerReference added in v1.3.0

func Convert_api_OwnerReference_To_v1_OwnerReference(in *api.OwnerReference, out *OwnerReference, s conversion.Scope) error

func Convert_api_PersistentVolumeClaimList_To_v1_PersistentVolumeClaimList added in v1.2.0

func Convert_api_PersistentVolumeClaimList_To_v1_PersistentVolumeClaimList(in *api.PersistentVolumeClaimList, out *PersistentVolumeClaimList, s conversion.Scope) error

func Convert_api_PersistentVolumeClaimSpec_To_v1_PersistentVolumeClaimSpec added in v1.2.0

func Convert_api_PersistentVolumeClaimSpec_To_v1_PersistentVolumeClaimSpec(in *api.PersistentVolumeClaimSpec, out *PersistentVolumeClaimSpec, s conversion.Scope) error

func Convert_api_PersistentVolumeClaimStatus_To_v1_PersistentVolumeClaimStatus added in v1.2.0

func Convert_api_PersistentVolumeClaimStatus_To_v1_PersistentVolumeClaimStatus(in *api.PersistentVolumeClaimStatus, out *PersistentVolumeClaimStatus, s conversion.Scope) error

func Convert_api_PersistentVolumeClaimVolumeSource_To_v1_PersistentVolumeClaimVolumeSource added in v1.2.0

func Convert_api_PersistentVolumeClaimVolumeSource_To_v1_PersistentVolumeClaimVolumeSource(in *api.PersistentVolumeClaimVolumeSource, out *PersistentVolumeClaimVolumeSource, s conversion.Scope) error

func Convert_api_PersistentVolumeClaim_To_v1_PersistentVolumeClaim added in v1.2.0

func Convert_api_PersistentVolumeClaim_To_v1_PersistentVolumeClaim(in *api.PersistentVolumeClaim, out *PersistentVolumeClaim, s conversion.Scope) error

func Convert_api_PersistentVolumeList_To_v1_PersistentVolumeList added in v1.2.0

func Convert_api_PersistentVolumeList_To_v1_PersistentVolumeList(in *api.PersistentVolumeList, out *PersistentVolumeList, s conversion.Scope) error

func Convert_api_PersistentVolumeSource_To_v1_PersistentVolumeSource added in v1.2.0

func Convert_api_PersistentVolumeSource_To_v1_PersistentVolumeSource(in *api.PersistentVolumeSource, out *PersistentVolumeSource, s conversion.Scope) error

func Convert_api_PersistentVolumeSpec_To_v1_PersistentVolumeSpec added in v1.2.0

func Convert_api_PersistentVolumeSpec_To_v1_PersistentVolumeSpec(in *api.PersistentVolumeSpec, out *PersistentVolumeSpec, s conversion.Scope) error

func Convert_api_PersistentVolumeStatus_To_v1_PersistentVolumeStatus added in v1.2.0

func Convert_api_PersistentVolumeStatus_To_v1_PersistentVolumeStatus(in *api.PersistentVolumeStatus, out *PersistentVolumeStatus, s conversion.Scope) error

func Convert_api_PersistentVolume_To_v1_PersistentVolume added in v1.2.0

func Convert_api_PersistentVolume_To_v1_PersistentVolume(in *api.PersistentVolume, out *PersistentVolume, s conversion.Scope) error

func Convert_api_PhotonPersistentDiskVolumeSource_To_v1_PhotonPersistentDiskVolumeSource added in v1.5.0

func Convert_api_PhotonPersistentDiskVolumeSource_To_v1_PhotonPersistentDiskVolumeSource(in *api.PhotonPersistentDiskVolumeSource, out *PhotonPersistentDiskVolumeSource, s conversion.Scope) error

func Convert_api_PodAffinityTerm_To_v1_PodAffinityTerm added in v1.3.0

func Convert_api_PodAffinityTerm_To_v1_PodAffinityTerm(in *api.PodAffinityTerm, out *PodAffinityTerm, s conversion.Scope) error

func Convert_api_PodAffinity_To_v1_PodAffinity added in v1.3.0

func Convert_api_PodAffinity_To_v1_PodAffinity(in *api.PodAffinity, out *PodAffinity, s conversion.Scope) error

func Convert_api_PodAntiAffinity_To_v1_PodAntiAffinity added in v1.3.0

func Convert_api_PodAntiAffinity_To_v1_PodAntiAffinity(in *api.PodAntiAffinity, out *PodAntiAffinity, s conversion.Scope) error

func Convert_api_PodAttachOptions_To_v1_PodAttachOptions added in v1.2.0

func Convert_api_PodAttachOptions_To_v1_PodAttachOptions(in *api.PodAttachOptions, out *PodAttachOptions, s conversion.Scope) error

func Convert_api_PodCondition_To_v1_PodCondition added in v1.2.0

func Convert_api_PodCondition_To_v1_PodCondition(in *api.PodCondition, out *PodCondition, s conversion.Scope) error

func Convert_api_PodExecOptions_To_v1_PodExecOptions added in v1.2.0

func Convert_api_PodExecOptions_To_v1_PodExecOptions(in *api.PodExecOptions, out *PodExecOptions, s conversion.Scope) error

func Convert_api_PodList_To_v1_PodList added in v1.2.0

func Convert_api_PodList_To_v1_PodList(in *api.PodList, out *PodList, s conversion.Scope) error

func Convert_api_PodLogOptions_To_v1_PodLogOptions added in v1.2.0

func Convert_api_PodLogOptions_To_v1_PodLogOptions(in *api.PodLogOptions, out *PodLogOptions, s conversion.Scope) error

func Convert_api_PodProxyOptions_To_v1_PodProxyOptions added in v1.2.0

func Convert_api_PodProxyOptions_To_v1_PodProxyOptions(in *api.PodProxyOptions, out *PodProxyOptions, s conversion.Scope) error

func Convert_api_PodSecurityContext_To_v1_PodSecurityContext added in v1.2.0

func Convert_api_PodSecurityContext_To_v1_PodSecurityContext(in *api.PodSecurityContext, out *PodSecurityContext, s conversion.Scope) error

func Convert_api_PodSignature_To_v1_PodSignature added in v1.4.0

func Convert_api_PodSignature_To_v1_PodSignature(in *api.PodSignature, out *PodSignature, s conversion.Scope) error

func Convert_api_PodSpec_To_v1_PodSpec added in v1.2.0

func Convert_api_PodSpec_To_v1_PodSpec(in *api.PodSpec, out *PodSpec, s conversion.Scope) error

The following two PodSpec conversions are done here to support ServiceAccount as an alias for ServiceAccountName.

func Convert_api_PodStatusResult_To_v1_PodStatusResult added in v1.2.0

func Convert_api_PodStatusResult_To_v1_PodStatusResult(in *api.PodStatusResult, out *PodStatusResult, s conversion.Scope) error

func Convert_api_PodStatus_To_v1_PodStatus added in v1.2.0

func Convert_api_PodStatus_To_v1_PodStatus(in *api.PodStatus, out *PodStatus, s conversion.Scope) error

func Convert_api_PodTemplateList_To_v1_PodTemplateList added in v1.2.0

func Convert_api_PodTemplateList_To_v1_PodTemplateList(in *api.PodTemplateList, out *PodTemplateList, s conversion.Scope) error

func Convert_api_PodTemplateSpec_To_v1_PodTemplateSpec added in v1.2.0

func Convert_api_PodTemplateSpec_To_v1_PodTemplateSpec(in *api.PodTemplateSpec, out *PodTemplateSpec, s conversion.Scope) error

func Convert_api_PodTemplate_To_v1_PodTemplate added in v1.2.0

func Convert_api_PodTemplate_To_v1_PodTemplate(in *api.PodTemplate, out *PodTemplate, s conversion.Scope) error

func Convert_api_Pod_To_v1_Pod added in v1.2.0

func Convert_api_Pod_To_v1_Pod(in *api.Pod, out *Pod, s conversion.Scope) error

func Convert_api_Preconditions_To_v1_Preconditions added in v1.3.0

func Convert_api_Preconditions_To_v1_Preconditions(in *api.Preconditions, out *Preconditions, s conversion.Scope) error

func Convert_api_PreferAvoidPodsEntry_To_v1_PreferAvoidPodsEntry added in v1.4.0

func Convert_api_PreferAvoidPodsEntry_To_v1_PreferAvoidPodsEntry(in *api.PreferAvoidPodsEntry, out *PreferAvoidPodsEntry, s conversion.Scope) error

func Convert_api_PreferredSchedulingTerm_To_v1_PreferredSchedulingTerm added in v1.3.0

func Convert_api_PreferredSchedulingTerm_To_v1_PreferredSchedulingTerm(in *api.PreferredSchedulingTerm, out *PreferredSchedulingTerm, s conversion.Scope) error

func Convert_api_Probe_To_v1_Probe added in v1.2.0

func Convert_api_Probe_To_v1_Probe(in *api.Probe, out *Probe, s conversion.Scope) error

func Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource added in v1.4.0

func Convert_api_QuobyteVolumeSource_To_v1_QuobyteVolumeSource(in *api.QuobyteVolumeSource, out *QuobyteVolumeSource, s conversion.Scope) error

func Convert_api_RBDVolumeSource_To_v1_RBDVolumeSource added in v1.2.0

func Convert_api_RBDVolumeSource_To_v1_RBDVolumeSource(in *api.RBDVolumeSource, out *RBDVolumeSource, s conversion.Scope) error

func Convert_api_RangeAllocation_To_v1_RangeAllocation added in v1.2.0

func Convert_api_RangeAllocation_To_v1_RangeAllocation(in *api.RangeAllocation, out *RangeAllocation, s conversion.Scope) error

func Convert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition added in v1.5.0

func Convert_api_ReplicationControllerCondition_To_v1_ReplicationControllerCondition(in *api.ReplicationControllerCondition, out *ReplicationControllerCondition, s conversion.Scope) error

func Convert_api_ReplicationControllerList_To_v1_ReplicationControllerList added in v1.2.0

func Convert_api_ReplicationControllerList_To_v1_ReplicationControllerList(in *api.ReplicationControllerList, out *ReplicationControllerList, s conversion.Scope) error

func Convert_api_ReplicationControllerSpec_To_v1_ReplicationControllerSpec added in v1.2.0

func Convert_api_ReplicationControllerSpec_To_v1_ReplicationControllerSpec(in *api.ReplicationControllerSpec, out *ReplicationControllerSpec, s conversion.Scope) error

func Convert_api_ReplicationControllerStatus_To_v1_ReplicationControllerStatus added in v1.2.0

func Convert_api_ReplicationControllerStatus_To_v1_ReplicationControllerStatus(in *api.ReplicationControllerStatus, out *ReplicationControllerStatus, s conversion.Scope) error

func Convert_api_ReplicationController_To_v1_ReplicationController added in v1.2.0

func Convert_api_ReplicationController_To_v1_ReplicationController(in *api.ReplicationController, out *ReplicationController, s conversion.Scope) error

func Convert_api_ResourceFieldSelector_To_v1_ResourceFieldSelector added in v1.3.0

func Convert_api_ResourceFieldSelector_To_v1_ResourceFieldSelector(in *api.ResourceFieldSelector, out *ResourceFieldSelector, s conversion.Scope) error

func Convert_api_ResourceQuotaList_To_v1_ResourceQuotaList added in v1.2.0

func Convert_api_ResourceQuotaList_To_v1_ResourceQuotaList(in *api.ResourceQuotaList, out *ResourceQuotaList, s conversion.Scope) error

func Convert_api_ResourceQuotaSpec_To_v1_ResourceQuotaSpec added in v1.2.0

func Convert_api_ResourceQuotaSpec_To_v1_ResourceQuotaSpec(in *api.ResourceQuotaSpec, out *ResourceQuotaSpec, s conversion.Scope) error

func Convert_api_ResourceQuotaStatus_To_v1_ResourceQuotaStatus added in v1.2.0

func Convert_api_ResourceQuotaStatus_To_v1_ResourceQuotaStatus(in *api.ResourceQuotaStatus, out *ResourceQuotaStatus, s conversion.Scope) error

func Convert_api_ResourceQuota_To_v1_ResourceQuota added in v1.2.0

func Convert_api_ResourceQuota_To_v1_ResourceQuota(in *api.ResourceQuota, out *ResourceQuota, s conversion.Scope) error

func Convert_api_ResourceRequirements_To_v1_ResourceRequirements added in v1.2.0

func Convert_api_ResourceRequirements_To_v1_ResourceRequirements(in *api.ResourceRequirements, out *ResourceRequirements, s conversion.Scope) error

func Convert_api_SELinuxOptions_To_v1_SELinuxOptions added in v1.2.0

func Convert_api_SELinuxOptions_To_v1_SELinuxOptions(in *api.SELinuxOptions, out *SELinuxOptions, s conversion.Scope) error

func Convert_api_SecretKeySelector_To_v1_SecretKeySelector added in v1.2.0

func Convert_api_SecretKeySelector_To_v1_SecretKeySelector(in *api.SecretKeySelector, out *SecretKeySelector, s conversion.Scope) error

func Convert_api_SecretList_To_v1_SecretList added in v1.2.0

func Convert_api_SecretList_To_v1_SecretList(in *api.SecretList, out *SecretList, s conversion.Scope) error

func Convert_api_SecretVolumeSource_To_v1_SecretVolumeSource added in v1.2.0

func Convert_api_SecretVolumeSource_To_v1_SecretVolumeSource(in *api.SecretVolumeSource, out *SecretVolumeSource, s conversion.Scope) error

func Convert_api_Secret_To_v1_Secret added in v1.2.0

func Convert_api_Secret_To_v1_Secret(in *api.Secret, out *Secret, s conversion.Scope) error

func Convert_api_SecurityContext_To_v1_SecurityContext added in v1.2.0

func Convert_api_SecurityContext_To_v1_SecurityContext(in *api.SecurityContext, out *SecurityContext, s conversion.Scope) error

func Convert_api_SerializedReference_To_v1_SerializedReference added in v1.2.0

func Convert_api_SerializedReference_To_v1_SerializedReference(in *api.SerializedReference, out *SerializedReference, s conversion.Scope) error

func Convert_api_ServiceAccountList_To_v1_ServiceAccountList added in v1.2.0

func Convert_api_ServiceAccountList_To_v1_ServiceAccountList(in *api.ServiceAccountList, out *ServiceAccountList, s conversion.Scope) error

func Convert_api_ServiceAccount_To_v1_ServiceAccount added in v1.2.0

func Convert_api_ServiceAccount_To_v1_ServiceAccount(in *api.ServiceAccount, out *ServiceAccount, s conversion.Scope) error

func Convert_api_ServiceList_To_v1_ServiceList added in v1.2.0

func Convert_api_ServiceList_To_v1_ServiceList(in *api.ServiceList, out *ServiceList, s conversion.Scope) error

func Convert_api_ServicePort_To_v1_ServicePort added in v1.2.0

func Convert_api_ServicePort_To_v1_ServicePort(in *api.ServicePort, out *ServicePort, s conversion.Scope) error

func Convert_api_ServiceProxyOptions_To_v1_ServiceProxyOptions added in v1.2.0

func Convert_api_ServiceProxyOptions_To_v1_ServiceProxyOptions(in *api.ServiceProxyOptions, out *ServiceProxyOptions, s conversion.Scope) error

func Convert_api_ServiceSpec_To_v1_ServiceSpec added in v1.2.0

func Convert_api_ServiceSpec_To_v1_ServiceSpec(in *api.ServiceSpec, out *ServiceSpec, s conversion.Scope) error

func Convert_api_ServiceStatus_To_v1_ServiceStatus added in v1.2.0

func Convert_api_ServiceStatus_To_v1_ServiceStatus(in *api.ServiceStatus, out *ServiceStatus, s conversion.Scope) error

func Convert_api_Service_To_v1_Service added in v1.2.0

func Convert_api_Service_To_v1_Service(in *api.Service, out *Service, s conversion.Scope) error

func Convert_api_TCPSocketAction_To_v1_TCPSocketAction added in v1.2.0

func Convert_api_TCPSocketAction_To_v1_TCPSocketAction(in *api.TCPSocketAction, out *TCPSocketAction, s conversion.Scope) error

func Convert_api_Taint_To_v1_Taint added in v1.3.0

func Convert_api_Taint_To_v1_Taint(in *api.Taint, out *Taint, s conversion.Scope) error

func Convert_api_Toleration_To_v1_Toleration added in v1.3.0

func Convert_api_Toleration_To_v1_Toleration(in *api.Toleration, out *Toleration, s conversion.Scope) error

func Convert_api_VolumeMount_To_v1_VolumeMount added in v1.2.0

func Convert_api_VolumeMount_To_v1_VolumeMount(in *api.VolumeMount, out *VolumeMount, s conversion.Scope) error

func Convert_api_VolumeSource_To_v1_VolumeSource added in v1.2.0

func Convert_api_VolumeSource_To_v1_VolumeSource(in *api.VolumeSource, out *VolumeSource, s conversion.Scope) error

func Convert_api_Volume_To_v1_Volume added in v1.2.0

func Convert_api_Volume_To_v1_Volume(in *api.Volume, out *Volume, s conversion.Scope) error

func Convert_api_VsphereVirtualDiskVolumeSource_To_v1_VsphereVirtualDiskVolumeSource added in v1.3.0

func Convert_api_VsphereVirtualDiskVolumeSource_To_v1_VsphereVirtualDiskVolumeSource(in *api.VsphereVirtualDiskVolumeSource, out *VsphereVirtualDiskVolumeSource, s conversion.Scope) error

func Convert_api_WeightedPodAffinityTerm_To_v1_WeightedPodAffinityTerm added in v1.3.0

func Convert_api_WeightedPodAffinityTerm_To_v1_WeightedPodAffinityTerm(in *api.WeightedPodAffinityTerm, out *WeightedPodAffinityTerm, s conversion.Scope) error

func Convert_extensions_ReplicaSetSpec_to_v1_ReplicationControllerSpec added in v1.4.0

func Convert_extensions_ReplicaSetSpec_to_v1_ReplicationControllerSpec(in *extensions.ReplicaSetSpec, out *ReplicationControllerSpec, s conversion.Scope) error

func Convert_extensions_ReplicaSetStatus_to_v1_ReplicationControllerStatus added in v1.4.0

func Convert_extensions_ReplicaSetStatus_to_v1_ReplicationControllerStatus(in *extensions.ReplicaSetStatus, out *ReplicationControllerStatus, s conversion.Scope) error

func Convert_extensions_ReplicaSet_to_v1_ReplicationController added in v1.4.0

func Convert_extensions_ReplicaSet_to_v1_ReplicationController(in *extensions.ReplicaSet, out *ReplicationController, s conversion.Scope) error

func Convert_v1_AWSElasticBlockStoreVolumeSource_To_api_AWSElasticBlockStoreVolumeSource added in v1.2.0

func Convert_v1_AWSElasticBlockStoreVolumeSource_To_api_AWSElasticBlockStoreVolumeSource(in *AWSElasticBlockStoreVolumeSource, out *api.AWSElasticBlockStoreVolumeSource, s conversion.Scope) error

func Convert_v1_Affinity_To_api_Affinity added in v1.3.0

func Convert_v1_Affinity_To_api_Affinity(in *Affinity, out *api.Affinity, s conversion.Scope) error

func Convert_v1_AttachedVolume_To_api_AttachedVolume added in v1.3.0

func Convert_v1_AttachedVolume_To_api_AttachedVolume(in *AttachedVolume, out *api.AttachedVolume, s conversion.Scope) error

func Convert_v1_AvoidPods_To_api_AvoidPods added in v1.4.0

func Convert_v1_AvoidPods_To_api_AvoidPods(in *AvoidPods, out *api.AvoidPods, s conversion.Scope) error

func Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource added in v1.4.0

func Convert_v1_AzureDiskVolumeSource_To_api_AzureDiskVolumeSource(in *AzureDiskVolumeSource, out *api.AzureDiskVolumeSource, s conversion.Scope) error

func Convert_v1_AzureFileVolumeSource_To_api_AzureFileVolumeSource added in v1.2.0

func Convert_v1_AzureFileVolumeSource_To_api_AzureFileVolumeSource(in *AzureFileVolumeSource, out *api.AzureFileVolumeSource, s conversion.Scope) error

func Convert_v1_Binding_To_api_Binding added in v1.2.0

func Convert_v1_Binding_To_api_Binding(in *Binding, out *api.Binding, s conversion.Scope) error

func Convert_v1_Capabilities_To_api_Capabilities added in v1.2.0

func Convert_v1_Capabilities_To_api_Capabilities(in *Capabilities, out *api.Capabilities, s conversion.Scope) error

func Convert_v1_CephFSVolumeSource_To_api_CephFSVolumeSource added in v1.2.0

func Convert_v1_CephFSVolumeSource_To_api_CephFSVolumeSource(in *CephFSVolumeSource, out *api.CephFSVolumeSource, s conversion.Scope) error

func Convert_v1_CinderVolumeSource_To_api_CinderVolumeSource added in v1.2.0

func Convert_v1_CinderVolumeSource_To_api_CinderVolumeSource(in *CinderVolumeSource, out *api.CinderVolumeSource, s conversion.Scope) error

func Convert_v1_ComponentCondition_To_api_ComponentCondition added in v1.2.0

func Convert_v1_ComponentCondition_To_api_ComponentCondition(in *ComponentCondition, out *api.ComponentCondition, s conversion.Scope) error

func Convert_v1_ComponentStatusList_To_api_ComponentStatusList added in v1.2.0

func Convert_v1_ComponentStatusList_To_api_ComponentStatusList(in *ComponentStatusList, out *api.ComponentStatusList, s conversion.Scope) error

func Convert_v1_ComponentStatus_To_api_ComponentStatus added in v1.2.0

func Convert_v1_ComponentStatus_To_api_ComponentStatus(in *ComponentStatus, out *api.ComponentStatus, s conversion.Scope) error

func Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector added in v1.2.0

func Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error

func Convert_v1_ConfigMapList_To_api_ConfigMapList added in v1.2.0

func Convert_v1_ConfigMapList_To_api_ConfigMapList(in *ConfigMapList, out *api.ConfigMapList, s conversion.Scope) error

func Convert_v1_ConfigMapVolumeSource_To_api_ConfigMapVolumeSource added in v1.2.0

func Convert_v1_ConfigMapVolumeSource_To_api_ConfigMapVolumeSource(in *ConfigMapVolumeSource, out *api.ConfigMapVolumeSource, s conversion.Scope) error

func Convert_v1_ConfigMap_To_api_ConfigMap added in v1.2.0

func Convert_v1_ConfigMap_To_api_ConfigMap(in *ConfigMap, out *api.ConfigMap, s conversion.Scope) error

func Convert_v1_ContainerImage_To_api_ContainerImage added in v1.2.0

func Convert_v1_ContainerImage_To_api_ContainerImage(in *ContainerImage, out *api.ContainerImage, s conversion.Scope) error

func Convert_v1_ContainerPort_To_api_ContainerPort added in v1.2.0

func Convert_v1_ContainerPort_To_api_ContainerPort(in *ContainerPort, out *api.ContainerPort, s conversion.Scope) error

func Convert_v1_ContainerStateRunning_To_api_ContainerStateRunning added in v1.2.0

func Convert_v1_ContainerStateRunning_To_api_ContainerStateRunning(in *ContainerStateRunning, out *api.ContainerStateRunning, s conversion.Scope) error

func Convert_v1_ContainerStateTerminated_To_api_ContainerStateTerminated added in v1.2.0

func Convert_v1_ContainerStateTerminated_To_api_ContainerStateTerminated(in *ContainerStateTerminated, out *api.ContainerStateTerminated, s conversion.Scope) error

func Convert_v1_ContainerStateWaiting_To_api_ContainerStateWaiting added in v1.2.0

func Convert_v1_ContainerStateWaiting_To_api_ContainerStateWaiting(in *ContainerStateWaiting, out *api.ContainerStateWaiting, s conversion.Scope) error

func Convert_v1_ContainerState_To_api_ContainerState added in v1.2.0

func Convert_v1_ContainerState_To_api_ContainerState(in *ContainerState, out *api.ContainerState, s conversion.Scope) error

func Convert_v1_ContainerStatus_To_api_ContainerStatus added in v1.2.0

func Convert_v1_ContainerStatus_To_api_ContainerStatus(in *ContainerStatus, out *api.ContainerStatus, s conversion.Scope) error

func Convert_v1_Container_To_api_Container added in v1.2.0

func Convert_v1_Container_To_api_Container(in *Container, out *api.Container, s conversion.Scope) error

func Convert_v1_DaemonEndpoint_To_api_DaemonEndpoint added in v1.2.0

func Convert_v1_DaemonEndpoint_To_api_DaemonEndpoint(in *DaemonEndpoint, out *api.DaemonEndpoint, s conversion.Scope) error

func Convert_v1_DeleteOptions_To_api_DeleteOptions added in v1.2.0

func Convert_v1_DeleteOptions_To_api_DeleteOptions(in *DeleteOptions, out *api.DeleteOptions, s conversion.Scope) error

func Convert_v1_DownwardAPIVolumeFile_To_api_DownwardAPIVolumeFile added in v1.2.0

func Convert_v1_DownwardAPIVolumeFile_To_api_DownwardAPIVolumeFile(in *DownwardAPIVolumeFile, out *api.DownwardAPIVolumeFile, s conversion.Scope) error

func Convert_v1_DownwardAPIVolumeSource_To_api_DownwardAPIVolumeSource added in v1.2.0

func Convert_v1_DownwardAPIVolumeSource_To_api_DownwardAPIVolumeSource(in *DownwardAPIVolumeSource, out *api.DownwardAPIVolumeSource, s conversion.Scope) error

func Convert_v1_EmptyDirVolumeSource_To_api_EmptyDirVolumeSource added in v1.2.0

func Convert_v1_EmptyDirVolumeSource_To_api_EmptyDirVolumeSource(in *EmptyDirVolumeSource, out *api.EmptyDirVolumeSource, s conversion.Scope) error

func Convert_v1_EndpointAddress_To_api_EndpointAddress added in v1.2.0

func Convert_v1_EndpointAddress_To_api_EndpointAddress(in *EndpointAddress, out *api.EndpointAddress, s conversion.Scope) error

func Convert_v1_EndpointPort_To_api_EndpointPort added in v1.2.0

func Convert_v1_EndpointPort_To_api_EndpointPort(in *EndpointPort, out *api.EndpointPort, s conversion.Scope) error

func Convert_v1_EndpointSubset_To_api_EndpointSubset added in v1.2.0

func Convert_v1_EndpointSubset_To_api_EndpointSubset(in *EndpointSubset, out *api.EndpointSubset, s conversion.Scope) error

func Convert_v1_EndpointsList_To_api_EndpointsList added in v1.2.0

func Convert_v1_EndpointsList_To_api_EndpointsList(in *EndpointsList, out *api.EndpointsList, s conversion.Scope) error

func Convert_v1_Endpoints_To_api_Endpoints added in v1.2.0

func Convert_v1_Endpoints_To_api_Endpoints(in *Endpoints, out *api.Endpoints, s conversion.Scope) error

func Convert_v1_EnvVarSource_To_api_EnvVarSource added in v1.2.0

func Convert_v1_EnvVarSource_To_api_EnvVarSource(in *EnvVarSource, out *api.EnvVarSource, s conversion.Scope) error

func Convert_v1_EnvVar_To_api_EnvVar added in v1.2.0

func Convert_v1_EnvVar_To_api_EnvVar(in *EnvVar, out *api.EnvVar, s conversion.Scope) error

func Convert_v1_EventList_To_api_EventList added in v1.2.0

func Convert_v1_EventList_To_api_EventList(in *EventList, out *api.EventList, s conversion.Scope) error

func Convert_v1_EventSource_To_api_EventSource added in v1.2.0

func Convert_v1_EventSource_To_api_EventSource(in *EventSource, out *api.EventSource, s conversion.Scope) error

func Convert_v1_Event_To_api_Event added in v1.2.0

func Convert_v1_Event_To_api_Event(in *Event, out *api.Event, s conversion.Scope) error

func Convert_v1_ExecAction_To_api_ExecAction added in v1.2.0

func Convert_v1_ExecAction_To_api_ExecAction(in *ExecAction, out *api.ExecAction, s conversion.Scope) error

func Convert_v1_ExportOptions_To_api_ExportOptions added in v1.3.0

func Convert_v1_ExportOptions_To_api_ExportOptions(in *ExportOptions, out *api.ExportOptions, s conversion.Scope) error

func Convert_v1_FCVolumeSource_To_api_FCVolumeSource added in v1.2.0

func Convert_v1_FCVolumeSource_To_api_FCVolumeSource(in *FCVolumeSource, out *api.FCVolumeSource, s conversion.Scope) error

func Convert_v1_FlexVolumeSource_To_api_FlexVolumeSource added in v1.2.0

func Convert_v1_FlexVolumeSource_To_api_FlexVolumeSource(in *FlexVolumeSource, out *api.FlexVolumeSource, s conversion.Scope) error

func Convert_v1_FlockerVolumeSource_To_api_FlockerVolumeSource added in v1.2.0

func Convert_v1_FlockerVolumeSource_To_api_FlockerVolumeSource(in *FlockerVolumeSource, out *api.FlockerVolumeSource, s conversion.Scope) error

func Convert_v1_GCEPersistentDiskVolumeSource_To_api_GCEPersistentDiskVolumeSource added in v1.2.0

func Convert_v1_GCEPersistentDiskVolumeSource_To_api_GCEPersistentDiskVolumeSource(in *GCEPersistentDiskVolumeSource, out *api.GCEPersistentDiskVolumeSource, s conversion.Scope) error

func Convert_v1_GitRepoVolumeSource_To_api_GitRepoVolumeSource added in v1.2.0

func Convert_v1_GitRepoVolumeSource_To_api_GitRepoVolumeSource(in *GitRepoVolumeSource, out *api.GitRepoVolumeSource, s conversion.Scope) error

func Convert_v1_GlusterfsVolumeSource_To_api_GlusterfsVolumeSource added in v1.2.0

func Convert_v1_GlusterfsVolumeSource_To_api_GlusterfsVolumeSource(in *GlusterfsVolumeSource, out *api.GlusterfsVolumeSource, s conversion.Scope) error

func Convert_v1_HTTPGetAction_To_api_HTTPGetAction added in v1.2.0

func Convert_v1_HTTPGetAction_To_api_HTTPGetAction(in *HTTPGetAction, out *api.HTTPGetAction, s conversion.Scope) error

func Convert_v1_HTTPHeader_To_api_HTTPHeader added in v1.2.0

func Convert_v1_HTTPHeader_To_api_HTTPHeader(in *HTTPHeader, out *api.HTTPHeader, s conversion.Scope) error

func Convert_v1_Handler_To_api_Handler added in v1.2.0

func Convert_v1_Handler_To_api_Handler(in *Handler, out *api.Handler, s conversion.Scope) error

func Convert_v1_HostPathVolumeSource_To_api_HostPathVolumeSource added in v1.2.0

func Convert_v1_HostPathVolumeSource_To_api_HostPathVolumeSource(in *HostPathVolumeSource, out *api.HostPathVolumeSource, s conversion.Scope) error

func Convert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource added in v1.2.0

func Convert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource(in *ISCSIVolumeSource, out *api.ISCSIVolumeSource, s conversion.Scope) error

func Convert_v1_KeyToPath_To_api_KeyToPath added in v1.2.0

func Convert_v1_KeyToPath_To_api_KeyToPath(in *KeyToPath, out *api.KeyToPath, s conversion.Scope) error

func Convert_v1_Lifecycle_To_api_Lifecycle added in v1.2.0

func Convert_v1_Lifecycle_To_api_Lifecycle(in *Lifecycle, out *api.Lifecycle, s conversion.Scope) error

func Convert_v1_LimitRangeItem_To_api_LimitRangeItem added in v1.2.0

func Convert_v1_LimitRangeItem_To_api_LimitRangeItem(in *LimitRangeItem, out *api.LimitRangeItem, s conversion.Scope) error

func Convert_v1_LimitRangeList_To_api_LimitRangeList added in v1.2.0

func Convert_v1_LimitRangeList_To_api_LimitRangeList(in *LimitRangeList, out *api.LimitRangeList, s conversion.Scope) error

func Convert_v1_LimitRangeSpec_To_api_LimitRangeSpec added in v1.2.0

func Convert_v1_LimitRangeSpec_To_api_LimitRangeSpec(in *LimitRangeSpec, out *api.LimitRangeSpec, s conversion.Scope) error

func Convert_v1_LimitRange_To_api_LimitRange added in v1.2.0

func Convert_v1_LimitRange_To_api_LimitRange(in *LimitRange, out *api.LimitRange, s conversion.Scope) error

func Convert_v1_ListOptions_To_api_ListOptions added in v1.2.0

func Convert_v1_ListOptions_To_api_ListOptions(in *ListOptions, out *api.ListOptions, s conversion.Scope) error

func Convert_v1_List_To_api_List added in v1.2.0

func Convert_v1_List_To_api_List(in *List, out *api.List, s conversion.Scope) error

func Convert_v1_LoadBalancerIngress_To_api_LoadBalancerIngress added in v1.2.0

func Convert_v1_LoadBalancerIngress_To_api_LoadBalancerIngress(in *LoadBalancerIngress, out *api.LoadBalancerIngress, s conversion.Scope) error

func Convert_v1_LoadBalancerStatus_To_api_LoadBalancerStatus added in v1.2.0

func Convert_v1_LoadBalancerStatus_To_api_LoadBalancerStatus(in *LoadBalancerStatus, out *api.LoadBalancerStatus, s conversion.Scope) error

func Convert_v1_LocalObjectReference_To_api_LocalObjectReference added in v1.2.0

func Convert_v1_LocalObjectReference_To_api_LocalObjectReference(in *LocalObjectReference, out *api.LocalObjectReference, s conversion.Scope) error

func Convert_v1_NFSVolumeSource_To_api_NFSVolumeSource added in v1.2.0

func Convert_v1_NFSVolumeSource_To_api_NFSVolumeSource(in *NFSVolumeSource, out *api.NFSVolumeSource, s conversion.Scope) error

func Convert_v1_NamespaceList_To_api_NamespaceList added in v1.2.0

func Convert_v1_NamespaceList_To_api_NamespaceList(in *NamespaceList, out *api.NamespaceList, s conversion.Scope) error

func Convert_v1_NamespaceSpec_To_api_NamespaceSpec added in v1.2.0

func Convert_v1_NamespaceSpec_To_api_NamespaceSpec(in *NamespaceSpec, out *api.NamespaceSpec, s conversion.Scope) error

func Convert_v1_NamespaceStatus_To_api_NamespaceStatus added in v1.2.0

func Convert_v1_NamespaceStatus_To_api_NamespaceStatus(in *NamespaceStatus, out *api.NamespaceStatus, s conversion.Scope) error

func Convert_v1_Namespace_To_api_Namespace added in v1.2.0

func Convert_v1_Namespace_To_api_Namespace(in *Namespace, out *api.Namespace, s conversion.Scope) error

func Convert_v1_NodeAddress_To_api_NodeAddress added in v1.2.0

func Convert_v1_NodeAddress_To_api_NodeAddress(in *NodeAddress, out *api.NodeAddress, s conversion.Scope) error

func Convert_v1_NodeAffinity_To_api_NodeAffinity added in v1.3.0

func Convert_v1_NodeAffinity_To_api_NodeAffinity(in *NodeAffinity, out *api.NodeAffinity, s conversion.Scope) error

func Convert_v1_NodeCondition_To_api_NodeCondition added in v1.2.0

func Convert_v1_NodeCondition_To_api_NodeCondition(in *NodeCondition, out *api.NodeCondition, s conversion.Scope) error

func Convert_v1_NodeDaemonEndpoints_To_api_NodeDaemonEndpoints added in v1.2.0

func Convert_v1_NodeDaemonEndpoints_To_api_NodeDaemonEndpoints(in *NodeDaemonEndpoints, out *api.NodeDaemonEndpoints, s conversion.Scope) error

func Convert_v1_NodeList_To_api_NodeList added in v1.2.0

func Convert_v1_NodeList_To_api_NodeList(in *NodeList, out *api.NodeList, s conversion.Scope) error

func Convert_v1_NodeProxyOptions_To_api_NodeProxyOptions added in v1.2.0

func Convert_v1_NodeProxyOptions_To_api_NodeProxyOptions(in *NodeProxyOptions, out *api.NodeProxyOptions, s conversion.Scope) error

func Convert_v1_NodeSelectorRequirement_To_api_NodeSelectorRequirement added in v1.3.0

func Convert_v1_NodeSelectorRequirement_To_api_NodeSelectorRequirement(in *NodeSelectorRequirement, out *api.NodeSelectorRequirement, s conversion.Scope) error

func Convert_v1_NodeSelectorTerm_To_api_NodeSelectorTerm added in v1.3.0

func Convert_v1_NodeSelectorTerm_To_api_NodeSelectorTerm(in *NodeSelectorTerm, out *api.NodeSelectorTerm, s conversion.Scope) error

func Convert_v1_NodeSelector_To_api_NodeSelector added in v1.3.0

func Convert_v1_NodeSelector_To_api_NodeSelector(in *NodeSelector, out *api.NodeSelector, s conversion.Scope) error

func Convert_v1_NodeSpec_To_api_NodeSpec added in v1.2.0

func Convert_v1_NodeSpec_To_api_NodeSpec(in *NodeSpec, out *api.NodeSpec, s conversion.Scope) error

func Convert_v1_NodeStatus_To_api_NodeStatus added in v1.2.0

func Convert_v1_NodeStatus_To_api_NodeStatus(in *NodeStatus, out *api.NodeStatus, s conversion.Scope) error

func Convert_v1_NodeSystemInfo_To_api_NodeSystemInfo added in v1.2.0

func Convert_v1_NodeSystemInfo_To_api_NodeSystemInfo(in *NodeSystemInfo, out *api.NodeSystemInfo, s conversion.Scope) error

func Convert_v1_Node_To_api_Node added in v1.2.0

func Convert_v1_Node_To_api_Node(in *Node, out *api.Node, s conversion.Scope) error

func Convert_v1_ObjectFieldSelector_To_api_ObjectFieldSelector added in v1.2.0

func Convert_v1_ObjectFieldSelector_To_api_ObjectFieldSelector(in *ObjectFieldSelector, out *api.ObjectFieldSelector, s conversion.Scope) error

func Convert_v1_ObjectMeta_To_api_ObjectMeta added in v1.2.0

func Convert_v1_ObjectMeta_To_api_ObjectMeta(in *ObjectMeta, out *api.ObjectMeta, s conversion.Scope) error

func Convert_v1_ObjectReference_To_api_ObjectReference added in v1.2.0

func Convert_v1_ObjectReference_To_api_ObjectReference(in *ObjectReference, out *api.ObjectReference, s conversion.Scope) error

func Convert_v1_OwnerReference_To_api_OwnerReference added in v1.3.0

func Convert_v1_OwnerReference_To_api_OwnerReference(in *OwnerReference, out *api.OwnerReference, s conversion.Scope) error

func Convert_v1_PersistentVolumeClaimList_To_api_PersistentVolumeClaimList added in v1.2.0

func Convert_v1_PersistentVolumeClaimList_To_api_PersistentVolumeClaimList(in *PersistentVolumeClaimList, out *api.PersistentVolumeClaimList, s conversion.Scope) error

func Convert_v1_PersistentVolumeClaimSpec_To_api_PersistentVolumeClaimSpec added in v1.2.0

func Convert_v1_PersistentVolumeClaimSpec_To_api_PersistentVolumeClaimSpec(in *PersistentVolumeClaimSpec, out *api.PersistentVolumeClaimSpec, s conversion.Scope) error

func Convert_v1_PersistentVolumeClaimStatus_To_api_PersistentVolumeClaimStatus added in v1.2.0

func Convert_v1_PersistentVolumeClaimStatus_To_api_PersistentVolumeClaimStatus(in *PersistentVolumeClaimStatus, out *api.PersistentVolumeClaimStatus, s conversion.Scope) error

func Convert_v1_PersistentVolumeClaimVolumeSource_To_api_PersistentVolumeClaimVolumeSource added in v1.2.0

func Convert_v1_PersistentVolumeClaimVolumeSource_To_api_PersistentVolumeClaimVolumeSource(in *PersistentVolumeClaimVolumeSource, out *api.PersistentVolumeClaimVolumeSource, s conversion.Scope) error

func Convert_v1_PersistentVolumeClaim_To_api_PersistentVolumeClaim added in v1.2.0

func Convert_v1_PersistentVolumeClaim_To_api_PersistentVolumeClaim(in *PersistentVolumeClaim, out *api.PersistentVolumeClaim, s conversion.Scope) error

func Convert_v1_PersistentVolumeList_To_api_PersistentVolumeList added in v1.2.0

func Convert_v1_PersistentVolumeList_To_api_PersistentVolumeList(in *PersistentVolumeList, out *api.PersistentVolumeList, s conversion.Scope) error

func Convert_v1_PersistentVolumeSource_To_api_PersistentVolumeSource added in v1.2.0

func Convert_v1_PersistentVolumeSource_To_api_PersistentVolumeSource(in *PersistentVolumeSource, out *api.PersistentVolumeSource, s conversion.Scope) error

func Convert_v1_PersistentVolumeSpec_To_api_PersistentVolumeSpec added in v1.2.0

func Convert_v1_PersistentVolumeSpec_To_api_PersistentVolumeSpec(in *PersistentVolumeSpec, out *api.PersistentVolumeSpec, s conversion.Scope) error

func Convert_v1_PersistentVolumeStatus_To_api_PersistentVolumeStatus added in v1.2.0

func Convert_v1_PersistentVolumeStatus_To_api_PersistentVolumeStatus(in *PersistentVolumeStatus, out *api.PersistentVolumeStatus, s conversion.Scope) error

func Convert_v1_PersistentVolume_To_api_PersistentVolume added in v1.2.0

func Convert_v1_PersistentVolume_To_api_PersistentVolume(in *PersistentVolume, out *api.PersistentVolume, s conversion.Scope) error

func Convert_v1_PhotonPersistentDiskVolumeSource_To_api_PhotonPersistentDiskVolumeSource added in v1.5.0

func Convert_v1_PhotonPersistentDiskVolumeSource_To_api_PhotonPersistentDiskVolumeSource(in *PhotonPersistentDiskVolumeSource, out *api.PhotonPersistentDiskVolumeSource, s conversion.Scope) error

func Convert_v1_PodAffinityTerm_To_api_PodAffinityTerm added in v1.3.0

func Convert_v1_PodAffinityTerm_To_api_PodAffinityTerm(in *PodAffinityTerm, out *api.PodAffinityTerm, s conversion.Scope) error

func Convert_v1_PodAffinity_To_api_PodAffinity added in v1.3.0

func Convert_v1_PodAffinity_To_api_PodAffinity(in *PodAffinity, out *api.PodAffinity, s conversion.Scope) error

func Convert_v1_PodAntiAffinity_To_api_PodAntiAffinity added in v1.3.0

func Convert_v1_PodAntiAffinity_To_api_PodAntiAffinity(in *PodAntiAffinity, out *api.PodAntiAffinity, s conversion.Scope) error

func Convert_v1_PodAttachOptions_To_api_PodAttachOptions added in v1.2.0

func Convert_v1_PodAttachOptions_To_api_PodAttachOptions(in *PodAttachOptions, out *api.PodAttachOptions, s conversion.Scope) error

func Convert_v1_PodCondition_To_api_PodCondition added in v1.2.0

func Convert_v1_PodCondition_To_api_PodCondition(in *PodCondition, out *api.PodCondition, s conversion.Scope) error

func Convert_v1_PodExecOptions_To_api_PodExecOptions added in v1.2.0

func Convert_v1_PodExecOptions_To_api_PodExecOptions(in *PodExecOptions, out *api.PodExecOptions, s conversion.Scope) error

func Convert_v1_PodList_To_api_PodList added in v1.2.0

func Convert_v1_PodList_To_api_PodList(in *PodList, out *api.PodList, s conversion.Scope) error

func Convert_v1_PodLogOptions_To_api_PodLogOptions added in v1.2.0

func Convert_v1_PodLogOptions_To_api_PodLogOptions(in *PodLogOptions, out *api.PodLogOptions, s conversion.Scope) error

func Convert_v1_PodProxyOptions_To_api_PodProxyOptions added in v1.2.0

func Convert_v1_PodProxyOptions_To_api_PodProxyOptions(in *PodProxyOptions, out *api.PodProxyOptions, s conversion.Scope) error

func Convert_v1_PodSecurityContext_To_api_PodSecurityContext added in v1.2.0

func Convert_v1_PodSecurityContext_To_api_PodSecurityContext(in *PodSecurityContext, out *api.PodSecurityContext, s conversion.Scope) error

func Convert_v1_PodSignature_To_api_PodSignature added in v1.4.0

func Convert_v1_PodSignature_To_api_PodSignature(in *PodSignature, out *api.PodSignature, s conversion.Scope) error

func Convert_v1_PodSpec_To_api_PodSpec added in v1.2.0

func Convert_v1_PodSpec_To_api_PodSpec(in *PodSpec, out *api.PodSpec, s conversion.Scope) error

func Convert_v1_PodStatusResult_To_api_PodStatusResult added in v1.2.0

func Convert_v1_PodStatusResult_To_api_PodStatusResult(in *PodStatusResult, out *api.PodStatusResult, s conversion.Scope) error

func Convert_v1_PodStatus_To_api_PodStatus added in v1.2.0

func Convert_v1_PodStatus_To_api_PodStatus(in *PodStatus, out *api.PodStatus, s conversion.Scope) error

func Convert_v1_PodTemplateList_To_api_PodTemplateList added in v1.2.0

func Convert_v1_PodTemplateList_To_api_PodTemplateList(in *PodTemplateList, out *api.PodTemplateList, s conversion.Scope) error

func Convert_v1_PodTemplateSpec_To_api_PodTemplateSpec added in v1.2.0

func Convert_v1_PodTemplateSpec_To_api_PodTemplateSpec(in *PodTemplateSpec, out *api.PodTemplateSpec, s conversion.Scope) error

func Convert_v1_PodTemplate_To_api_PodTemplate added in v1.2.0

func Convert_v1_PodTemplate_To_api_PodTemplate(in *PodTemplate, out *api.PodTemplate, s conversion.Scope) error

func Convert_v1_Pod_To_api_Pod added in v1.2.0

func Convert_v1_Pod_To_api_Pod(in *Pod, out *api.Pod, s conversion.Scope) error

func Convert_v1_Preconditions_To_api_Preconditions added in v1.3.0

func Convert_v1_Preconditions_To_api_Preconditions(in *Preconditions, out *api.Preconditions, s conversion.Scope) error

func Convert_v1_PreferAvoidPodsEntry_To_api_PreferAvoidPodsEntry added in v1.4.0

func Convert_v1_PreferAvoidPodsEntry_To_api_PreferAvoidPodsEntry(in *PreferAvoidPodsEntry, out *api.PreferAvoidPodsEntry, s conversion.Scope) error

func Convert_v1_PreferredSchedulingTerm_To_api_PreferredSchedulingTerm added in v1.3.0

func Convert_v1_PreferredSchedulingTerm_To_api_PreferredSchedulingTerm(in *PreferredSchedulingTerm, out *api.PreferredSchedulingTerm, s conversion.Scope) error

func Convert_v1_Probe_To_api_Probe added in v1.2.0

func Convert_v1_Probe_To_api_Probe(in *Probe, out *api.Probe, s conversion.Scope) error

func Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource added in v1.4.0

func Convert_v1_QuobyteVolumeSource_To_api_QuobyteVolumeSource(in *QuobyteVolumeSource, out *api.QuobyteVolumeSource, s conversion.Scope) error

func Convert_v1_RBDVolumeSource_To_api_RBDVolumeSource added in v1.2.0

func Convert_v1_RBDVolumeSource_To_api_RBDVolumeSource(in *RBDVolumeSource, out *api.RBDVolumeSource, s conversion.Scope) error

func Convert_v1_RangeAllocation_To_api_RangeAllocation added in v1.2.0

func Convert_v1_RangeAllocation_To_api_RangeAllocation(in *RangeAllocation, out *api.RangeAllocation, s conversion.Scope) error

func Convert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition added in v1.5.0

func Convert_v1_ReplicationControllerCondition_To_api_ReplicationControllerCondition(in *ReplicationControllerCondition, out *api.ReplicationControllerCondition, s conversion.Scope) error

func Convert_v1_ReplicationControllerList_To_api_ReplicationControllerList added in v1.2.0

func Convert_v1_ReplicationControllerList_To_api_ReplicationControllerList(in *ReplicationControllerList, out *api.ReplicationControllerList, s conversion.Scope) error

func Convert_v1_ReplicationControllerSpec_To_api_ReplicationControllerSpec added in v1.2.0

func Convert_v1_ReplicationControllerSpec_To_api_ReplicationControllerSpec(in *ReplicationControllerSpec, out *api.ReplicationControllerSpec, s conversion.Scope) error

func Convert_v1_ReplicationControllerSpec_to_extensions_ReplicaSetSpec added in v1.4.0

func Convert_v1_ReplicationControllerSpec_to_extensions_ReplicaSetSpec(in *ReplicationControllerSpec, out *extensions.ReplicaSetSpec, s conversion.Scope) error

func Convert_v1_ReplicationControllerStatus_To_api_ReplicationControllerStatus added in v1.2.0

func Convert_v1_ReplicationControllerStatus_To_api_ReplicationControllerStatus(in *ReplicationControllerStatus, out *api.ReplicationControllerStatus, s conversion.Scope) error

func Convert_v1_ReplicationControllerStatus_to_extensions_ReplicaSetStatus added in v1.4.0

func Convert_v1_ReplicationControllerStatus_to_extensions_ReplicaSetStatus(in *ReplicationControllerStatus, out *extensions.ReplicaSetStatus, s conversion.Scope) error

func Convert_v1_ReplicationController_To_api_ReplicationController added in v1.2.0

func Convert_v1_ReplicationController_To_api_ReplicationController(in *ReplicationController, out *api.ReplicationController, s conversion.Scope) error

func Convert_v1_ReplicationController_to_extensions_ReplicaSet added in v1.4.0

func Convert_v1_ReplicationController_to_extensions_ReplicaSet(in *ReplicationController, out *extensions.ReplicaSet, s conversion.Scope) error

func Convert_v1_ResourceFieldSelector_To_api_ResourceFieldSelector added in v1.3.0

func Convert_v1_ResourceFieldSelector_To_api_ResourceFieldSelector(in *ResourceFieldSelector, out *api.ResourceFieldSelector, s conversion.Scope) error

func Convert_v1_ResourceList_To_api_ResourceList added in v1.2.0

func Convert_v1_ResourceList_To_api_ResourceList(in *ResourceList, out *api.ResourceList, s conversion.Scope) error

+k8s:conversion-fn=copy-only

func Convert_v1_ResourceQuotaList_To_api_ResourceQuotaList added in v1.2.0

func Convert_v1_ResourceQuotaList_To_api_ResourceQuotaList(in *ResourceQuotaList, out *api.ResourceQuotaList, s conversion.Scope) error

func Convert_v1_ResourceQuotaSpec_To_api_ResourceQuotaSpec added in v1.2.0

func Convert_v1_ResourceQuotaSpec_To_api_ResourceQuotaSpec(in *ResourceQuotaSpec, out *api.ResourceQuotaSpec, s conversion.Scope) error

func Convert_v1_ResourceQuotaStatus_To_api_ResourceQuotaStatus added in v1.2.0

func Convert_v1_ResourceQuotaStatus_To_api_ResourceQuotaStatus(in *ResourceQuotaStatus, out *api.ResourceQuotaStatus, s conversion.Scope) error

func Convert_v1_ResourceQuota_To_api_ResourceQuota added in v1.2.0

func Convert_v1_ResourceQuota_To_api_ResourceQuota(in *ResourceQuota, out *api.ResourceQuota, s conversion.Scope) error

func Convert_v1_ResourceRequirements_To_api_ResourceRequirements added in v1.2.0

func Convert_v1_ResourceRequirements_To_api_ResourceRequirements(in *ResourceRequirements, out *api.ResourceRequirements, s conversion.Scope) error

func Convert_v1_SELinuxOptions_To_api_SELinuxOptions added in v1.2.0

func Convert_v1_SELinuxOptions_To_api_SELinuxOptions(in *SELinuxOptions, out *api.SELinuxOptions, s conversion.Scope) error

func Convert_v1_SecretKeySelector_To_api_SecretKeySelector added in v1.2.0

func Convert_v1_SecretKeySelector_To_api_SecretKeySelector(in *SecretKeySelector, out *api.SecretKeySelector, s conversion.Scope) error

func Convert_v1_SecretList_To_api_SecretList added in v1.2.0

func Convert_v1_SecretList_To_api_SecretList(in *SecretList, out *api.SecretList, s conversion.Scope) error

func Convert_v1_SecretVolumeSource_To_api_SecretVolumeSource added in v1.2.0

func Convert_v1_SecretVolumeSource_To_api_SecretVolumeSource(in *SecretVolumeSource, out *api.SecretVolumeSource, s conversion.Scope) error

func Convert_v1_Secret_To_api_Secret added in v1.2.0

func Convert_v1_Secret_To_api_Secret(in *Secret, out *api.Secret, s conversion.Scope) error

func Convert_v1_SecurityContext_To_api_SecurityContext added in v1.2.0

func Convert_v1_SecurityContext_To_api_SecurityContext(in *SecurityContext, out *api.SecurityContext, s conversion.Scope) error

func Convert_v1_SerializedReference_To_api_SerializedReference added in v1.2.0

func Convert_v1_SerializedReference_To_api_SerializedReference(in *SerializedReference, out *api.SerializedReference, s conversion.Scope) error

func Convert_v1_ServiceAccountList_To_api_ServiceAccountList added in v1.2.0

func Convert_v1_ServiceAccountList_To_api_ServiceAccountList(in *ServiceAccountList, out *api.ServiceAccountList, s conversion.Scope) error

func Convert_v1_ServiceAccount_To_api_ServiceAccount added in v1.2.0

func Convert_v1_ServiceAccount_To_api_ServiceAccount(in *ServiceAccount, out *api.ServiceAccount, s conversion.Scope) error

func Convert_v1_ServiceList_To_api_ServiceList added in v1.2.0

func Convert_v1_ServiceList_To_api_ServiceList(in *ServiceList, out *api.ServiceList, s conversion.Scope) error

func Convert_v1_ServicePort_To_api_ServicePort added in v1.2.0

func Convert_v1_ServicePort_To_api_ServicePort(in *ServicePort, out *api.ServicePort, s conversion.Scope) error

func Convert_v1_ServiceProxyOptions_To_api_ServiceProxyOptions added in v1.2.0

func Convert_v1_ServiceProxyOptions_To_api_ServiceProxyOptions(in *ServiceProxyOptions, out *api.ServiceProxyOptions, s conversion.Scope) error

func Convert_v1_ServiceSpec_To_api_ServiceSpec added in v1.2.0

func Convert_v1_ServiceSpec_To_api_ServiceSpec(in *ServiceSpec, out *api.ServiceSpec, s conversion.Scope) error

func Convert_v1_ServiceStatus_To_api_ServiceStatus added in v1.2.0

func Convert_v1_ServiceStatus_To_api_ServiceStatus(in *ServiceStatus, out *api.ServiceStatus, s conversion.Scope) error

func Convert_v1_Service_To_api_Service added in v1.2.0

func Convert_v1_Service_To_api_Service(in *Service, out *api.Service, s conversion.Scope) error

func Convert_v1_TCPSocketAction_To_api_TCPSocketAction added in v1.2.0

func Convert_v1_TCPSocketAction_To_api_TCPSocketAction(in *TCPSocketAction, out *api.TCPSocketAction, s conversion.Scope) error

func Convert_v1_Taint_To_api_Taint added in v1.3.0

func Convert_v1_Taint_To_api_Taint(in *Taint, out *api.Taint, s conversion.Scope) error

func Convert_v1_Toleration_To_api_Toleration added in v1.3.0

func Convert_v1_Toleration_To_api_Toleration(in *Toleration, out *api.Toleration, s conversion.Scope) error

func Convert_v1_VolumeMount_To_api_VolumeMount added in v1.2.0

func Convert_v1_VolumeMount_To_api_VolumeMount(in *VolumeMount, out *api.VolumeMount, s conversion.Scope) error

func Convert_v1_VolumeSource_To_api_VolumeSource added in v1.2.0

func Convert_v1_VolumeSource_To_api_VolumeSource(in *VolumeSource, out *api.VolumeSource, s conversion.Scope) error

func Convert_v1_Volume_To_api_Volume added in v1.2.0

func Convert_v1_Volume_To_api_Volume(in *Volume, out *api.Volume, s conversion.Scope) error

func Convert_v1_VsphereVirtualDiskVolumeSource_To_api_VsphereVirtualDiskVolumeSource added in v1.3.0

func Convert_v1_VsphereVirtualDiskVolumeSource_To_api_VsphereVirtualDiskVolumeSource(in *VsphereVirtualDiskVolumeSource, out *api.VsphereVirtualDiskVolumeSource, s conversion.Scope) error

func Convert_v1_WeightedPodAffinityTerm_To_api_WeightedPodAffinityTerm added in v1.3.0

func Convert_v1_WeightedPodAffinityTerm_To_api_WeightedPodAffinityTerm(in *WeightedPodAffinityTerm, out *api.WeightedPodAffinityTerm, s conversion.Scope) error

func DeepCopy_v1_AWSElasticBlockStoreVolumeSource added in v1.3.0

func DeepCopy_v1_AWSElasticBlockStoreVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Affinity added in v1.3.0

func DeepCopy_v1_Affinity(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_AttachedVolume added in v1.3.0

func DeepCopy_v1_AttachedVolume(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_AvoidPods added in v1.4.0

func DeepCopy_v1_AvoidPods(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_AzureDiskVolumeSource added in v1.4.0

func DeepCopy_v1_AzureDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_AzureFileVolumeSource added in v1.3.0

func DeepCopy_v1_AzureFileVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Binding added in v1.3.0

func DeepCopy_v1_Binding(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Capabilities added in v1.3.0

func DeepCopy_v1_Capabilities(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_CephFSVolumeSource added in v1.3.0

func DeepCopy_v1_CephFSVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_CinderVolumeSource added in v1.3.0

func DeepCopy_v1_CinderVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ComponentCondition added in v1.3.0

func DeepCopy_v1_ComponentCondition(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ComponentStatus added in v1.3.0

func DeepCopy_v1_ComponentStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ComponentStatusList added in v1.3.0

func DeepCopy_v1_ComponentStatusList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ConfigMap added in v1.3.0

func DeepCopy_v1_ConfigMap(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ConfigMapKeySelector added in v1.3.0

func DeepCopy_v1_ConfigMapKeySelector(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ConfigMapList added in v1.3.0

func DeepCopy_v1_ConfigMapList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ConfigMapVolumeSource added in v1.3.0

func DeepCopy_v1_ConfigMapVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Container added in v1.3.0

func DeepCopy_v1_Container(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerImage added in v1.3.0

func DeepCopy_v1_ContainerImage(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerPort added in v1.3.0

func DeepCopy_v1_ContainerPort(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerState added in v1.3.0

func DeepCopy_v1_ContainerState(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerStateRunning added in v1.3.0

func DeepCopy_v1_ContainerStateRunning(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerStateTerminated added in v1.3.0

func DeepCopy_v1_ContainerStateTerminated(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerStateWaiting added in v1.3.0

func DeepCopy_v1_ContainerStateWaiting(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ContainerStatus added in v1.3.0

func DeepCopy_v1_ContainerStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_DaemonEndpoint added in v1.3.0

func DeepCopy_v1_DaemonEndpoint(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_DeleteOptions added in v1.3.0

func DeepCopy_v1_DeleteOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_DownwardAPIVolumeFile added in v1.3.0

func DeepCopy_v1_DownwardAPIVolumeFile(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_DownwardAPIVolumeSource added in v1.3.0

func DeepCopy_v1_DownwardAPIVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EmptyDirVolumeSource added in v1.3.0

func DeepCopy_v1_EmptyDirVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EndpointAddress added in v1.3.0

func DeepCopy_v1_EndpointAddress(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EndpointPort added in v1.3.0

func DeepCopy_v1_EndpointPort(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EndpointSubset added in v1.3.0

func DeepCopy_v1_EndpointSubset(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Endpoints added in v1.3.0

func DeepCopy_v1_Endpoints(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EndpointsList added in v1.3.0

func DeepCopy_v1_EndpointsList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EnvVar added in v1.3.0

func DeepCopy_v1_EnvVar(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EnvVarSource added in v1.3.0

func DeepCopy_v1_EnvVarSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Event added in v1.3.0

func DeepCopy_v1_Event(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EventList added in v1.3.0

func DeepCopy_v1_EventList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_EventSource added in v1.3.0

func DeepCopy_v1_EventSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ExecAction added in v1.3.0

func DeepCopy_v1_ExecAction(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ExportOptions added in v1.3.0

func DeepCopy_v1_ExportOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_FCVolumeSource added in v1.3.0

func DeepCopy_v1_FCVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_FlexVolumeSource added in v1.3.0

func DeepCopy_v1_FlexVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_FlockerVolumeSource added in v1.3.0

func DeepCopy_v1_FlockerVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_GCEPersistentDiskVolumeSource added in v1.3.0

func DeepCopy_v1_GCEPersistentDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_GitRepoVolumeSource added in v1.3.0

func DeepCopy_v1_GitRepoVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_GlusterfsVolumeSource added in v1.3.0

func DeepCopy_v1_GlusterfsVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_HTTPGetAction added in v1.3.0

func DeepCopy_v1_HTTPGetAction(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_HTTPHeader added in v1.3.0

func DeepCopy_v1_HTTPHeader(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Handler added in v1.3.0

func DeepCopy_v1_Handler(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_HostPathVolumeSource added in v1.3.0

func DeepCopy_v1_HostPathVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ISCSIVolumeSource added in v1.3.0

func DeepCopy_v1_ISCSIVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_KeyToPath added in v1.3.0

func DeepCopy_v1_KeyToPath(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Lifecycle added in v1.3.0

func DeepCopy_v1_Lifecycle(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LimitRange added in v1.3.0

func DeepCopy_v1_LimitRange(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LimitRangeItem added in v1.3.0

func DeepCopy_v1_LimitRangeItem(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LimitRangeList added in v1.3.0

func DeepCopy_v1_LimitRangeList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LimitRangeSpec added in v1.3.0

func DeepCopy_v1_LimitRangeSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_List added in v1.3.0

func DeepCopy_v1_List(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ListOptions added in v1.3.0

func DeepCopy_v1_ListOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LoadBalancerIngress added in v1.3.0

func DeepCopy_v1_LoadBalancerIngress(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LoadBalancerStatus added in v1.3.0

func DeepCopy_v1_LoadBalancerStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_LocalObjectReference added in v1.3.0

func DeepCopy_v1_LocalObjectReference(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NFSVolumeSource added in v1.3.0

func DeepCopy_v1_NFSVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Namespace added in v1.3.0

func DeepCopy_v1_Namespace(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NamespaceList added in v1.3.0

func DeepCopy_v1_NamespaceList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NamespaceSpec added in v1.3.0

func DeepCopy_v1_NamespaceSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NamespaceStatus added in v1.3.0

func DeepCopy_v1_NamespaceStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Node added in v1.3.0

func DeepCopy_v1_Node(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeAddress added in v1.3.0

func DeepCopy_v1_NodeAddress(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeAffinity added in v1.3.0

func DeepCopy_v1_NodeAffinity(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeCondition added in v1.3.0

func DeepCopy_v1_NodeCondition(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeDaemonEndpoints added in v1.3.0

func DeepCopy_v1_NodeDaemonEndpoints(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeList added in v1.3.0

func DeepCopy_v1_NodeList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeProxyOptions added in v1.3.0

func DeepCopy_v1_NodeProxyOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeSelector added in v1.3.0

func DeepCopy_v1_NodeSelector(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeSelectorRequirement added in v1.3.0

func DeepCopy_v1_NodeSelectorRequirement(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeSelectorTerm added in v1.3.0

func DeepCopy_v1_NodeSelectorTerm(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeSpec added in v1.3.0

func DeepCopy_v1_NodeSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeStatus added in v1.3.0

func DeepCopy_v1_NodeStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_NodeSystemInfo added in v1.3.0

func DeepCopy_v1_NodeSystemInfo(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ObjectFieldSelector added in v1.3.0

func DeepCopy_v1_ObjectFieldSelector(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ObjectMeta added in v1.3.0

func DeepCopy_v1_ObjectMeta(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ObjectReference added in v1.3.0

func DeepCopy_v1_ObjectReference(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_OwnerReference added in v1.3.0

func DeepCopy_v1_OwnerReference(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolume added in v1.3.0

func DeepCopy_v1_PersistentVolume(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeClaim added in v1.3.0

func DeepCopy_v1_PersistentVolumeClaim(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeClaimList added in v1.3.0

func DeepCopy_v1_PersistentVolumeClaimList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeClaimSpec added in v1.3.0

func DeepCopy_v1_PersistentVolumeClaimSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeClaimStatus added in v1.3.0

func DeepCopy_v1_PersistentVolumeClaimStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeClaimVolumeSource added in v1.3.0

func DeepCopy_v1_PersistentVolumeClaimVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeList added in v1.3.0

func DeepCopy_v1_PersistentVolumeList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeSource added in v1.3.0

func DeepCopy_v1_PersistentVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeSpec added in v1.3.0

func DeepCopy_v1_PersistentVolumeSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PersistentVolumeStatus added in v1.3.0

func DeepCopy_v1_PersistentVolumeStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PhotonPersistentDiskVolumeSource added in v1.5.0

func DeepCopy_v1_PhotonPersistentDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Pod added in v1.3.0

func DeepCopy_v1_Pod(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodAffinity added in v1.3.0

func DeepCopy_v1_PodAffinity(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodAffinityTerm added in v1.3.0

func DeepCopy_v1_PodAffinityTerm(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodAntiAffinity added in v1.3.0

func DeepCopy_v1_PodAntiAffinity(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodAttachOptions added in v1.3.0

func DeepCopy_v1_PodAttachOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodCondition added in v1.3.0

func DeepCopy_v1_PodCondition(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodExecOptions added in v1.3.0

func DeepCopy_v1_PodExecOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodList added in v1.3.0

func DeepCopy_v1_PodList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodLogOptions added in v1.3.0

func DeepCopy_v1_PodLogOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodProxyOptions added in v1.3.0

func DeepCopy_v1_PodProxyOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodSecurityContext added in v1.3.0

func DeepCopy_v1_PodSecurityContext(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodSignature added in v1.4.0

func DeepCopy_v1_PodSignature(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodSpec added in v1.3.0

func DeepCopy_v1_PodSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodStatus added in v1.3.0

func DeepCopy_v1_PodStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodStatusResult added in v1.3.0

func DeepCopy_v1_PodStatusResult(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodTemplate added in v1.3.0

func DeepCopy_v1_PodTemplate(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodTemplateList added in v1.3.0

func DeepCopy_v1_PodTemplateList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PodTemplateSpec added in v1.3.0

func DeepCopy_v1_PodTemplateSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Preconditions added in v1.3.0

func DeepCopy_v1_Preconditions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PreferAvoidPodsEntry added in v1.4.0

func DeepCopy_v1_PreferAvoidPodsEntry(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_PreferredSchedulingTerm added in v1.3.0

func DeepCopy_v1_PreferredSchedulingTerm(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Probe added in v1.3.0

func DeepCopy_v1_Probe(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_QuobyteVolumeSource added in v1.4.0

func DeepCopy_v1_QuobyteVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_RBDVolumeSource added in v1.3.0

func DeepCopy_v1_RBDVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_RangeAllocation added in v1.3.0

func DeepCopy_v1_RangeAllocation(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ReplicationController added in v1.3.0

func DeepCopy_v1_ReplicationController(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ReplicationControllerCondition added in v1.5.0

func DeepCopy_v1_ReplicationControllerCondition(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ReplicationControllerList added in v1.3.0

func DeepCopy_v1_ReplicationControllerList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ReplicationControllerSpec added in v1.3.0

func DeepCopy_v1_ReplicationControllerSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ReplicationControllerStatus added in v1.3.0

func DeepCopy_v1_ReplicationControllerStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceFieldSelector added in v1.3.0

func DeepCopy_v1_ResourceFieldSelector(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceQuota added in v1.3.0

func DeepCopy_v1_ResourceQuota(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceQuotaList added in v1.3.0

func DeepCopy_v1_ResourceQuotaList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceQuotaSpec added in v1.3.0

func DeepCopy_v1_ResourceQuotaSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceQuotaStatus added in v1.3.0

func DeepCopy_v1_ResourceQuotaStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ResourceRequirements added in v1.3.0

func DeepCopy_v1_ResourceRequirements(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SELinuxOptions added in v1.3.0

func DeepCopy_v1_SELinuxOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Secret added in v1.3.0

func DeepCopy_v1_Secret(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SecretKeySelector added in v1.3.0

func DeepCopy_v1_SecretKeySelector(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SecretList added in v1.3.0

func DeepCopy_v1_SecretList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SecretVolumeSource added in v1.3.0

func DeepCopy_v1_SecretVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SecurityContext added in v1.3.0

func DeepCopy_v1_SecurityContext(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_SerializedReference added in v1.3.0

func DeepCopy_v1_SerializedReference(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Service added in v1.3.0

func DeepCopy_v1_Service(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceAccount added in v1.3.0

func DeepCopy_v1_ServiceAccount(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceAccountList added in v1.3.0

func DeepCopy_v1_ServiceAccountList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceList added in v1.3.0

func DeepCopy_v1_ServiceList(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServicePort added in v1.3.0

func DeepCopy_v1_ServicePort(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceProxyOptions added in v1.3.0

func DeepCopy_v1_ServiceProxyOptions(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceSpec added in v1.3.0

func DeepCopy_v1_ServiceSpec(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_ServiceStatus added in v1.3.0

func DeepCopy_v1_ServiceStatus(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_TCPSocketAction added in v1.3.0

func DeepCopy_v1_TCPSocketAction(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Taint added in v1.3.0

func DeepCopy_v1_Taint(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Toleration added in v1.3.0

func DeepCopy_v1_Toleration(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_Volume added in v1.3.0

func DeepCopy_v1_Volume(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_VolumeMount added in v1.3.0

func DeepCopy_v1_VolumeMount(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_VolumeSource added in v1.3.0

func DeepCopy_v1_VolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_VsphereVirtualDiskVolumeSource added in v1.3.0

func DeepCopy_v1_VsphereVirtualDiskVolumeSource(in interface{}, out interface{}, c *conversion.Cloner) error

func DeepCopy_v1_WeightedPodAffinityTerm added in v1.3.0

func DeepCopy_v1_WeightedPodAffinityTerm(in interface{}, out interface{}, c *conversion.Cloner) error

func RegisterConversions added in v1.4.0

func RegisterConversions(scheme *runtime.Scheme) error

RegisterConversions adds conversion functions to the given scheme. Public to allow building arbitrary schemes.

func RegisterDeepCopies added in v1.4.0

func RegisterDeepCopies(scheme *runtime.Scheme) error

RegisterDeepCopies adds deep-copy functions to the given scheme. Public to allow building arbitrary schemes.

func RegisterDefaults added in v1.5.0

func RegisterDefaults(scheme *runtime.Scheme) error

RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.

func SetDefaults_AzureDiskVolumeSource added in v1.4.0

func SetDefaults_AzureDiskVolumeSource(obj *AzureDiskVolumeSource)

func SetDefaults_ConfigMap added in v1.3.0

func SetDefaults_ConfigMap(obj *ConfigMap)

func SetDefaults_ConfigMapVolumeSource added in v1.4.0

func SetDefaults_ConfigMapVolumeSource(obj *ConfigMapVolumeSource)

func SetDefaults_Container added in v1.3.0

func SetDefaults_Container(obj *Container)

func SetDefaults_ContainerPort added in v1.3.0

func SetDefaults_ContainerPort(obj *ContainerPort)

func SetDefaults_DownwardAPIVolumeSource added in v1.4.0

func SetDefaults_DownwardAPIVolumeSource(obj *DownwardAPIVolumeSource)

func SetDefaults_Endpoints added in v1.3.0

func SetDefaults_Endpoints(obj *Endpoints)

func SetDefaults_HTTPGetAction added in v1.3.0

func SetDefaults_HTTPGetAction(obj *HTTPGetAction)

func SetDefaults_ISCSIVolumeSource added in v1.3.0

func SetDefaults_ISCSIVolumeSource(obj *ISCSIVolumeSource)

func SetDefaults_LimitRangeItem added in v1.3.0

func SetDefaults_LimitRangeItem(obj *LimitRangeItem)

func SetDefaults_NamespaceStatus added in v1.3.0

func SetDefaults_NamespaceStatus(obj *NamespaceStatus)

func SetDefaults_Node added in v1.3.0

func SetDefaults_Node(obj *Node)

func SetDefaults_NodeStatus added in v1.3.0

func SetDefaults_NodeStatus(obj *NodeStatus)

func SetDefaults_ObjectFieldSelector added in v1.3.0

func SetDefaults_ObjectFieldSelector(obj *ObjectFieldSelector)

func SetDefaults_PersistentVolume added in v1.3.0

func SetDefaults_PersistentVolume(obj *PersistentVolume)

func SetDefaults_PersistentVolumeClaim added in v1.3.0

func SetDefaults_PersistentVolumeClaim(obj *PersistentVolumeClaim)

func SetDefaults_Pod added in v1.3.0

func SetDefaults_Pod(obj *Pod)

func SetDefaults_PodAttachOptions added in v1.3.0

func SetDefaults_PodAttachOptions(obj *PodAttachOptions)

func SetDefaults_PodExecOptions added in v1.3.0

func SetDefaults_PodExecOptions(obj *PodExecOptions)

func SetDefaults_PodSpec added in v1.3.0

func SetDefaults_PodSpec(obj *PodSpec)

func SetDefaults_Probe added in v1.3.0

func SetDefaults_Probe(obj *Probe)

func SetDefaults_RBDVolumeSource added in v1.3.0

func SetDefaults_RBDVolumeSource(obj *RBDVolumeSource)

func SetDefaults_ReplicationController added in v1.3.0

func SetDefaults_ReplicationController(obj *ReplicationController)

func SetDefaults_ResourceList added in v1.5.0

func SetDefaults_ResourceList(obj *ResourceList)

func SetDefaults_Secret added in v1.3.0

func SetDefaults_Secret(obj *Secret)

func SetDefaults_SecretVolumeSource added in v1.4.0

func SetDefaults_SecretVolumeSource(obj *SecretVolumeSource)

func SetDefaults_ServiceSpec added in v1.3.0

func SetDefaults_ServiceSpec(obj *ServiceSpec)

func SetDefaults_Volume added in v1.3.0

func SetDefaults_Volume(obj *Volume)

func SetObjectDefaults_ConfigMap added in v1.5.0

func SetObjectDefaults_ConfigMap(in *ConfigMap)

func SetObjectDefaults_ConfigMapList added in v1.5.0

func SetObjectDefaults_ConfigMapList(in *ConfigMapList)

func SetObjectDefaults_Endpoints added in v1.5.0

func SetObjectDefaults_Endpoints(in *Endpoints)

func SetObjectDefaults_EndpointsList added in v1.5.0

func SetObjectDefaults_EndpointsList(in *EndpointsList)

func SetObjectDefaults_LimitRange added in v1.5.0

func SetObjectDefaults_LimitRange(in *LimitRange)

func SetObjectDefaults_LimitRangeList added in v1.5.0

func SetObjectDefaults_LimitRangeList(in *LimitRangeList)

func SetObjectDefaults_Namespace added in v1.5.0

func SetObjectDefaults_Namespace(in *Namespace)

func SetObjectDefaults_NamespaceList added in v1.5.0

func SetObjectDefaults_NamespaceList(in *NamespaceList)

func SetObjectDefaults_Node added in v1.5.0

func SetObjectDefaults_Node(in *Node)

func SetObjectDefaults_NodeList added in v1.5.0

func SetObjectDefaults_NodeList(in *NodeList)

func SetObjectDefaults_PersistentVolume added in v1.5.0

func SetObjectDefaults_PersistentVolume(in *PersistentVolume)

func SetObjectDefaults_PersistentVolumeClaim added in v1.5.0

func SetObjectDefaults_PersistentVolumeClaim(in *PersistentVolumeClaim)

func SetObjectDefaults_PersistentVolumeClaimList added in v1.5.0

func SetObjectDefaults_PersistentVolumeClaimList(in *PersistentVolumeClaimList)

func SetObjectDefaults_PersistentVolumeList added in v1.5.0

func SetObjectDefaults_PersistentVolumeList(in *PersistentVolumeList)

func SetObjectDefaults_Pod added in v1.5.0

func SetObjectDefaults_Pod(in *Pod)

func SetObjectDefaults_PodAttachOptions added in v1.5.0

func SetObjectDefaults_PodAttachOptions(in *PodAttachOptions)

func SetObjectDefaults_PodExecOptions added in v1.5.0

func SetObjectDefaults_PodExecOptions(in *PodExecOptions)

func SetObjectDefaults_PodList added in v1.5.0

func SetObjectDefaults_PodList(in *PodList)

func SetObjectDefaults_PodTemplate added in v1.5.0

func SetObjectDefaults_PodTemplate(in *PodTemplate)

func SetObjectDefaults_PodTemplateList added in v1.5.0

func SetObjectDefaults_PodTemplateList(in *PodTemplateList)

func SetObjectDefaults_ReplicationController added in v1.5.0

func SetObjectDefaults_ReplicationController(in *ReplicationController)

func SetObjectDefaults_ReplicationControllerList added in v1.5.0

func SetObjectDefaults_ReplicationControllerList(in *ReplicationControllerList)

func SetObjectDefaults_ResourceQuota added in v1.5.0

func SetObjectDefaults_ResourceQuota(in *ResourceQuota)

func SetObjectDefaults_ResourceQuotaList added in v1.5.0

func SetObjectDefaults_ResourceQuotaList(in *ResourceQuotaList)

func SetObjectDefaults_Secret added in v1.5.0

func SetObjectDefaults_Secret(in *Secret)

func SetObjectDefaults_SecretList added in v1.5.0

func SetObjectDefaults_SecretList(in *SecretList)

func SetObjectDefaults_Service added in v1.5.0

func SetObjectDefaults_Service(in *Service)

func SetObjectDefaults_ServiceList added in v1.5.0

func SetObjectDefaults_ServiceList(in *ServiceList)

Types

type AWSElasticBlockStoreVolumeSource

type AWSElasticBlockStoreVolumeSource struct {
	// Unique ID of the persistent disk resource in AWS (Amazon EBS volume).
	// More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
	VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
	// Filesystem type of the volume that you want to mount.
	// Tip: Ensure that the filesystem type is supported by the host operating system.
	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
	// TODO: how do we prevent errors in the filesystem from compromising the machine
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
	// The partition in the volume that you want to mount.
	// If omitted, the default is to mount by volume name.
	// Examples: For volume /dev/sda1, you specify the partition as "1".
	// Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
	// +optional
	Partition int32 `json:"partition,omitempty" protobuf:"varint,3,opt,name=partition"`
	// Specify "true" to force and set the ReadOnly property in VolumeMounts to "true".
	// If omitted, the default is "false".
	// More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,4,opt,name=readOnly"`
}

Represents a Persistent Disk resource in AWS.

An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.

func (*AWSElasticBlockStoreVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*AWSElasticBlockStoreVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*AWSElasticBlockStoreVolumeSource) Descriptor added in v1.4.0

func (*AWSElasticBlockStoreVolumeSource) Descriptor() ([]byte, []int)

func (*AWSElasticBlockStoreVolumeSource) Marshal added in v1.3.0

func (m *AWSElasticBlockStoreVolumeSource) Marshal() (data []byte, err error)

func (*AWSElasticBlockStoreVolumeSource) MarshalTo added in v1.3.0

func (m *AWSElasticBlockStoreVolumeSource) MarshalTo(data []byte) (int, error)

func (*AWSElasticBlockStoreVolumeSource) ProtoMessage added in v1.3.0

func (*AWSElasticBlockStoreVolumeSource) ProtoMessage()

func (*AWSElasticBlockStoreVolumeSource) Reset added in v1.3.0

func (*AWSElasticBlockStoreVolumeSource) Size added in v1.3.0

func (m *AWSElasticBlockStoreVolumeSource) Size() (n int)

func (*AWSElasticBlockStoreVolumeSource) String added in v1.3.0

func (AWSElasticBlockStoreVolumeSource) SwaggerDoc added in v1.1.0

func (*AWSElasticBlockStoreVolumeSource) Unmarshal added in v1.3.0

func (m *AWSElasticBlockStoreVolumeSource) Unmarshal(data []byte) error

type Affinity added in v1.2.0

type Affinity struct {
	// Describes node affinity scheduling rules for the pod.
	// +optional
	NodeAffinity *NodeAffinity `json:"nodeAffinity,omitempty" protobuf:"bytes,1,opt,name=nodeAffinity"`
	// Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).
	// +optional
	PodAffinity *PodAffinity `json:"podAffinity,omitempty" protobuf:"bytes,2,opt,name=podAffinity"`
	// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
	// +optional
	PodAntiAffinity *PodAntiAffinity `json:"podAntiAffinity,omitempty" protobuf:"bytes,3,opt,name=podAntiAffinity"`
}

Affinity is a group of affinity scheduling rules.

func (*Affinity) CodecDecodeSelf added in v1.2.0

func (x *Affinity) CodecDecodeSelf(d *codec1978.Decoder)

func (*Affinity) CodecEncodeSelf added in v1.2.0

func (x *Affinity) CodecEncodeSelf(e *codec1978.Encoder)

func (*Affinity) Descriptor added in v1.4.0

func (*Affinity) Descriptor() ([]byte, []int)

func (*Affinity) Marshal added in v1.3.0

func (m *Affinity) Marshal() (data []byte, err error)

func (*Affinity) MarshalTo added in v1.3.0

func (m *Affinity) MarshalTo(data []byte) (int, error)

func (*Affinity) ProtoMessage added in v1.3.0

func (*Affinity) ProtoMessage()

func (*Affinity) Reset added in v1.3.0

func (m *Affinity) Reset()

func (*Affinity) Size added in v1.3.0

func (m *Affinity) Size() (n int)

func (*Affinity) String added in v1.3.0

func (this *Affinity) String() string

func (Affinity) SwaggerDoc added in v1.2.0

func (Affinity) SwaggerDoc() map[string]string

func (*Affinity) Unmarshal added in v1.3.0

func (m *Affinity) Unmarshal(data []byte) error

type AttachedVolume added in v1.3.0

type AttachedVolume struct {
	// Name of the attached volume
	Name UniqueVolumeName `json:"name" protobuf:"bytes,1,rep,name=name"`

	// DevicePath represents the device path where the volume should be available
	DevicePath string `json:"devicePath" protobuf:"bytes,2,rep,name=devicePath"`
}

AttachedVolume describes a volume attached to a node

func (*AttachedVolume) CodecDecodeSelf added in v1.3.0

func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder)

func (*AttachedVolume) CodecEncodeSelf added in v1.3.0

func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder)

func (*AttachedVolume) Descriptor added in v1.4.0

func (*AttachedVolume) Descriptor() ([]byte, []int)

func (*AttachedVolume) Marshal added in v1.3.0

func (m *AttachedVolume) Marshal() (data []byte, err error)

func (*AttachedVolume) MarshalTo added in v1.3.0

func (m *AttachedVolume) MarshalTo(data []byte) (int, error)

func (*AttachedVolume) ProtoMessage added in v1.3.0

func (*AttachedVolume) ProtoMessage()

func (*AttachedVolume) Reset added in v1.3.0

func (m *AttachedVolume) Reset()

func (*AttachedVolume) Size added in v1.3.0

func (m *AttachedVolume) Size() (n int)

func (*AttachedVolume) String added in v1.3.0

func (this *AttachedVolume) String() string

func (AttachedVolume) SwaggerDoc added in v1.3.0

func (AttachedVolume) SwaggerDoc() map[string]string

func (*AttachedVolume) Unmarshal added in v1.3.0

func (m *AttachedVolume) Unmarshal(data []byte) error

type AvoidPods added in v1.4.0

type AvoidPods struct {
	// Bounded-sized list of signatures of pods that should avoid this node, sorted
	// in timestamp order from oldest to newest. Size of the slice is unspecified.
	// +optional
	PreferAvoidPods []PreferAvoidPodsEntry `json:"preferAvoidPods,omitempty" protobuf:"bytes,1,rep,name=preferAvoidPods"`
}

AvoidPods describes pods that should avoid this node. This is the value for a Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and will eventually become a field of NodeStatus.

func (*AvoidPods) CodecDecodeSelf added in v1.4.0

func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder)

func (*AvoidPods) CodecEncodeSelf added in v1.4.0

func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder)

func (*AvoidPods) Descriptor added in v1.4.0

func (*AvoidPods) Descriptor() ([]byte, []int)

func (*AvoidPods) Marshal added in v1.4.0

func (m *AvoidPods) Marshal() (data []byte, err error)

func (*AvoidPods) MarshalTo added in v1.4.0

func (m *AvoidPods) MarshalTo(data []byte) (int, error)

func (*AvoidPods) ProtoMessage added in v1.4.0

func (*AvoidPods) ProtoMessage()

func (*AvoidPods) Reset added in v1.4.0

func (m *AvoidPods) Reset()

func (*AvoidPods) Size added in v1.4.0

func (m *AvoidPods) Size() (n int)

func (*AvoidPods) String added in v1.4.0

func (this *AvoidPods) String() string

func (AvoidPods) SwaggerDoc added in v1.4.0

func (AvoidPods) SwaggerDoc() map[string]string

func (*AvoidPods) Unmarshal added in v1.4.0

func (m *AvoidPods) Unmarshal(data []byte) error

type AzureDataDiskCachingMode added in v1.4.0

type AzureDataDiskCachingMode string
const (
	AzureDataDiskCachingNone      AzureDataDiskCachingMode = "None"
	AzureDataDiskCachingReadOnly  AzureDataDiskCachingMode = "ReadOnly"
	AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite"
)

func (*AzureDataDiskCachingMode) CodecDecodeSelf added in v1.4.0

func (x *AzureDataDiskCachingMode) CodecDecodeSelf(d *codec1978.Decoder)

func (AzureDataDiskCachingMode) CodecEncodeSelf added in v1.4.0

func (x AzureDataDiskCachingMode) CodecEncodeSelf(e *codec1978.Encoder)

type AzureDiskVolumeSource added in v1.4.0

type AzureDiskVolumeSource struct {
	// The Name of the data disk in the blob storage
	DiskName string `json:"diskName" protobuf:"bytes,1,opt,name=diskName"`
	// The URI the data disk in the blob storage
	DataDiskURI string `json:"diskURI" protobuf:"bytes,2,opt,name=diskURI"`
	// Host Caching mode: None, Read Only, Read Write.
	// +optional
	CachingMode *AzureDataDiskCachingMode `json:"cachingMode,omitempty" protobuf:"bytes,3,opt,name=cachingMode,casttype=AzureDataDiskCachingMode"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// +optional
	FSType *string `json:"fsType,omitempty" protobuf:"bytes,4,opt,name=fsType"`
	// Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly *bool `json:"readOnly,omitempty" protobuf:"varint,5,opt,name=readOnly"`
}

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

func (*AzureDiskVolumeSource) CodecDecodeSelf added in v1.4.0

func (x *AzureDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*AzureDiskVolumeSource) CodecEncodeSelf added in v1.4.0

func (x *AzureDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*AzureDiskVolumeSource) Descriptor added in v1.4.0

func (*AzureDiskVolumeSource) Descriptor() ([]byte, []int)

func (*AzureDiskVolumeSource) Marshal added in v1.4.0

func (m *AzureDiskVolumeSource) Marshal() (data []byte, err error)

func (*AzureDiskVolumeSource) MarshalTo added in v1.4.0

func (m *AzureDiskVolumeSource) MarshalTo(data []byte) (int, error)

func (*AzureDiskVolumeSource) ProtoMessage added in v1.4.0

func (*AzureDiskVolumeSource) ProtoMessage()

func (*AzureDiskVolumeSource) Reset added in v1.4.0

func (m *AzureDiskVolumeSource) Reset()

func (*AzureDiskVolumeSource) Size added in v1.4.0

func (m *AzureDiskVolumeSource) Size() (n int)

func (*AzureDiskVolumeSource) String added in v1.4.0

func (this *AzureDiskVolumeSource) String() string

func (AzureDiskVolumeSource) SwaggerDoc added in v1.4.0

func (AzureDiskVolumeSource) SwaggerDoc() map[string]string

func (*AzureDiskVolumeSource) Unmarshal added in v1.4.0

func (m *AzureDiskVolumeSource) Unmarshal(data []byte) error

type AzureFileVolumeSource added in v1.2.0

type AzureFileVolumeSource struct {
	// the name of secret that contains Azure Storage Account Name and Key
	SecretName string `json:"secretName" protobuf:"bytes,1,opt,name=secretName"`
	// Share Name
	ShareName string `json:"shareName" protobuf:"bytes,2,opt,name=shareName"`
	// Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
}

AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

func (*AzureFileVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *AzureFileVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*AzureFileVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *AzureFileVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*AzureFileVolumeSource) Descriptor added in v1.4.0

func (*AzureFileVolumeSource) Descriptor() ([]byte, []int)

func (*AzureFileVolumeSource) Marshal added in v1.3.0

func (m *AzureFileVolumeSource) Marshal() (data []byte, err error)

func (*AzureFileVolumeSource) MarshalTo added in v1.3.0

func (m *AzureFileVolumeSource) MarshalTo(data []byte) (int, error)

func (*AzureFileVolumeSource) ProtoMessage added in v1.3.0

func (*AzureFileVolumeSource) ProtoMessage()

func (*AzureFileVolumeSource) Reset added in v1.3.0

func (m *AzureFileVolumeSource) Reset()

func (*AzureFileVolumeSource) Size added in v1.3.0

func (m *AzureFileVolumeSource) Size() (n int)

func (*AzureFileVolumeSource) String added in v1.3.0

func (this *AzureFileVolumeSource) String() string

func (AzureFileVolumeSource) SwaggerDoc added in v1.2.0

func (AzureFileVolumeSource) SwaggerDoc() map[string]string

func (*AzureFileVolumeSource) Unmarshal added in v1.3.0

func (m *AzureFileVolumeSource) Unmarshal(data []byte) error

type Binding

type Binding struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// The target object that you want to bind to the standard object.
	Target ObjectReference `json:"target" protobuf:"bytes,2,opt,name=target"`
}

Binding ties one object to another. For example, a pod is bound to a node by a scheduler.

func (*Binding) CodecDecodeSelf added in v1.2.0

func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder)

func (*Binding) CodecEncodeSelf added in v1.2.0

func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder)

func (*Binding) Descriptor added in v1.4.0

func (*Binding) Descriptor() ([]byte, []int)

func (*Binding) Marshal added in v1.3.0

func (m *Binding) Marshal() (data []byte, err error)

func (*Binding) MarshalTo added in v1.3.0

func (m *Binding) MarshalTo(data []byte) (int, error)

func (*Binding) ProtoMessage added in v1.3.0

func (*Binding) ProtoMessage()

func (*Binding) Reset added in v1.3.0

func (m *Binding) Reset()

func (*Binding) Size added in v1.3.0

func (m *Binding) Size() (n int)

func (*Binding) String added in v1.3.0

func (this *Binding) String() string

func (Binding) SwaggerDoc added in v1.1.0

func (Binding) SwaggerDoc() map[string]string

func (*Binding) Unmarshal added in v1.3.0

func (m *Binding) Unmarshal(data []byte) error

type Capabilities

type Capabilities struct {
	// Added capabilities
	// +optional
	Add []Capability `json:"add,omitempty" protobuf:"bytes,1,rep,name=add,casttype=Capability"`
	// Removed capabilities
	// +optional
	Drop []Capability `json:"drop,omitempty" protobuf:"bytes,2,rep,name=drop,casttype=Capability"`
}

Adds and removes POSIX capabilities from running containers.

func (*Capabilities) CodecDecodeSelf added in v1.2.0

func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder)

func (*Capabilities) CodecEncodeSelf added in v1.2.0

func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder)

func (*Capabilities) Descriptor added in v1.4.0

func (*Capabilities) Descriptor() ([]byte, []int)

func (*Capabilities) Marshal added in v1.3.0

func (m *Capabilities) Marshal() (data []byte, err error)

func (*Capabilities) MarshalTo added in v1.3.0

func (m *Capabilities) MarshalTo(data []byte) (int, error)

func (*Capabilities) ProtoMessage added in v1.3.0

func (*Capabilities) ProtoMessage()

func (*Capabilities) Reset added in v1.3.0

func (m *Capabilities) Reset()

func (*Capabilities) Size added in v1.3.0

func (m *Capabilities) Size() (n int)

func (*Capabilities) String added in v1.3.0

func (this *Capabilities) String() string

func (Capabilities) SwaggerDoc added in v1.1.0

func (Capabilities) SwaggerDoc() map[string]string

func (*Capabilities) Unmarshal added in v1.3.0

func (m *Capabilities) Unmarshal(data []byte) error

type Capability added in v0.18.0

type Capability string

Capability represent POSIX capabilities type

func (*Capability) CodecDecodeSelf added in v1.2.0

func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder)

func (Capability) CodecEncodeSelf added in v1.2.0

func (x Capability) CodecEncodeSelf(e *codec1978.Encoder)

type CephFSVolumeSource added in v1.1.0

type CephFSVolumeSource struct {
	// Required: Monitors is a collection of Ceph monitors
	// More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	Monitors []string `json:"monitors" protobuf:"bytes,1,rep,name=monitors"`
	// Optional: Used as the mounted root, rather than the full Ceph tree, default is /
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,2,opt,name=path"`
	// Optional: User is the rados user name, default is admin
	// More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// +optional
	User string `json:"user,omitempty" protobuf:"bytes,3,opt,name=user"`
	// Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret
	// More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// +optional
	SecretFile string `json:"secretFile,omitempty" protobuf:"bytes,4,opt,name=secretFile"`
	// Optional: SecretRef is reference to the authentication secret for User, default is empty.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// +optional
	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,5,opt,name=secretRef"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,6,opt,name=readOnly"`
}

Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

func (*CephFSVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*CephFSVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*CephFSVolumeSource) Descriptor added in v1.4.0

func (*CephFSVolumeSource) Descriptor() ([]byte, []int)

func (*CephFSVolumeSource) Marshal added in v1.3.0

func (m *CephFSVolumeSource) Marshal() (data []byte, err error)

func (*CephFSVolumeSource) MarshalTo added in v1.3.0

func (m *CephFSVolumeSource) MarshalTo(data []byte) (int, error)

func (*CephFSVolumeSource) ProtoMessage added in v1.3.0

func (*CephFSVolumeSource) ProtoMessage()

func (*CephFSVolumeSource) Reset added in v1.3.0

func (m *CephFSVolumeSource) Reset()

func (*CephFSVolumeSource) Size added in v1.3.0

func (m *CephFSVolumeSource) Size() (n int)

func (*CephFSVolumeSource) String added in v1.3.0

func (this *CephFSVolumeSource) String() string

func (CephFSVolumeSource) SwaggerDoc added in v1.1.0

func (CephFSVolumeSource) SwaggerDoc() map[string]string

func (*CephFSVolumeSource) Unmarshal added in v1.3.0

func (m *CephFSVolumeSource) Unmarshal(data []byte) error

type CinderVolumeSource added in v1.1.0

type CinderVolumeSource struct {
	// volume id used to identify the volume in cinder
	// More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
}

Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.

func (*CinderVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*CinderVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*CinderVolumeSource) Descriptor added in v1.4.0

func (*CinderVolumeSource) Descriptor() ([]byte, []int)

func (*CinderVolumeSource) Marshal added in v1.3.0

func (m *CinderVolumeSource) Marshal() (data []byte, err error)

func (*CinderVolumeSource) MarshalTo added in v1.3.0

func (m *CinderVolumeSource) MarshalTo(data []byte) (int, error)

func (*CinderVolumeSource) ProtoMessage added in v1.3.0

func (*CinderVolumeSource) ProtoMessage()

func (*CinderVolumeSource) Reset added in v1.3.0

func (m *CinderVolumeSource) Reset()

func (*CinderVolumeSource) Size added in v1.3.0

func (m *CinderVolumeSource) Size() (n int)

func (*CinderVolumeSource) String added in v1.3.0

func (this *CinderVolumeSource) String() string

func (CinderVolumeSource) SwaggerDoc added in v1.1.0

func (CinderVolumeSource) SwaggerDoc() map[string]string

func (*CinderVolumeSource) Unmarshal added in v1.3.0

func (m *CinderVolumeSource) Unmarshal(data []byte) error

type ComponentCondition

type ComponentCondition struct {
	// Type of condition for a component.
	// Valid value: "Healthy"
	Type ComponentConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=ComponentConditionType"`
	// Status of the condition for a component.
	// Valid values for "Healthy": "True", "False", or "Unknown".
	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
	// Message about the condition for a component.
	// For example, information about a health check.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
	// Condition error code for a component.
	// For example, a health check error code.
	// +optional
	Error string `json:"error,omitempty" protobuf:"bytes,4,opt,name=error"`
}

Information about the condition of a component.

func (*ComponentCondition) CodecDecodeSelf added in v1.2.0

func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder)

func (*ComponentCondition) CodecEncodeSelf added in v1.2.0

func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder)

func (*ComponentCondition) Descriptor added in v1.4.0

func (*ComponentCondition) Descriptor() ([]byte, []int)

func (*ComponentCondition) Marshal added in v1.3.0

func (m *ComponentCondition) Marshal() (data []byte, err error)

func (*ComponentCondition) MarshalTo added in v1.3.0

func (m *ComponentCondition) MarshalTo(data []byte) (int, error)

func (*ComponentCondition) ProtoMessage added in v1.3.0

func (*ComponentCondition) ProtoMessage()

func (*ComponentCondition) Reset added in v1.3.0

func (m *ComponentCondition) Reset()

func (*ComponentCondition) Size added in v1.3.0

func (m *ComponentCondition) Size() (n int)

func (*ComponentCondition) String added in v1.3.0

func (this *ComponentCondition) String() string

func (ComponentCondition) SwaggerDoc added in v1.1.0

func (ComponentCondition) SwaggerDoc() map[string]string

func (*ComponentCondition) Unmarshal added in v1.3.0

func (m *ComponentCondition) Unmarshal(data []byte) error

type ComponentConditionType

type ComponentConditionType string

Type and constants for component health validation.

const (
	ComponentHealthy ComponentConditionType = "Healthy"
)

These are the valid conditions for the component.

func (*ComponentConditionType) CodecDecodeSelf added in v1.2.0

func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder)

func (ComponentConditionType) CodecEncodeSelf added in v1.2.0

func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder)

type ComponentStatus

type ComponentStatus struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of component conditions observed
	// +optional
	Conditions []ComponentCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,2,rep,name=conditions"`
}

ComponentStatus (and ComponentStatusList) holds the cluster validation info.

func (*ComponentStatus) CodecDecodeSelf added in v1.2.0

func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*ComponentStatus) CodecEncodeSelf added in v1.2.0

func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*ComponentStatus) Descriptor added in v1.4.0

func (*ComponentStatus) Descriptor() ([]byte, []int)

func (*ComponentStatus) Marshal added in v1.3.0

func (m *ComponentStatus) Marshal() (data []byte, err error)

func (*ComponentStatus) MarshalTo added in v1.3.0

func (m *ComponentStatus) MarshalTo(data []byte) (int, error)

func (*ComponentStatus) ProtoMessage added in v1.3.0

func (*ComponentStatus) ProtoMessage()

func (*ComponentStatus) Reset added in v1.3.0

func (m *ComponentStatus) Reset()

func (*ComponentStatus) Size added in v1.3.0

func (m *ComponentStatus) Size() (n int)

func (*ComponentStatus) String added in v1.3.0

func (this *ComponentStatus) String() string

func (ComponentStatus) SwaggerDoc added in v1.1.0

func (ComponentStatus) SwaggerDoc() map[string]string

func (*ComponentStatus) Unmarshal added in v1.3.0

func (m *ComponentStatus) Unmarshal(data []byte) error

type ComponentStatusList

type ComponentStatusList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of ComponentStatus objects.
	Items []ComponentStatus `json:"items" protobuf:"bytes,2,rep,name=items"`
}

Status of all the conditions for the component as a list of ComponentStatus objects.

func (*ComponentStatusList) CodecDecodeSelf added in v1.2.0

func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ComponentStatusList) CodecEncodeSelf added in v1.2.0

func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ComponentStatusList) Descriptor added in v1.4.0

func (*ComponentStatusList) Descriptor() ([]byte, []int)

func (*ComponentStatusList) Marshal added in v1.3.0

func (m *ComponentStatusList) Marshal() (data []byte, err error)

func (*ComponentStatusList) MarshalTo added in v1.3.0

func (m *ComponentStatusList) MarshalTo(data []byte) (int, error)

func (*ComponentStatusList) ProtoMessage added in v1.3.0

func (*ComponentStatusList) ProtoMessage()

func (*ComponentStatusList) Reset added in v1.3.0

func (m *ComponentStatusList) Reset()

func (*ComponentStatusList) Size added in v1.3.0

func (m *ComponentStatusList) Size() (n int)

func (*ComponentStatusList) String added in v1.3.0

func (this *ComponentStatusList) String() string

func (ComponentStatusList) SwaggerDoc added in v1.1.0

func (ComponentStatusList) SwaggerDoc() map[string]string

func (*ComponentStatusList) Unmarshal added in v1.3.0

func (m *ComponentStatusList) Unmarshal(data []byte) error

type ConditionStatus

type ConditionStatus string
const (
	ConditionTrue    ConditionStatus = "True"
	ConditionFalse   ConditionStatus = "False"
	ConditionUnknown ConditionStatus = "Unknown"
)

These are valid condition statuses. "ConditionTrue" means a resource is in the condition. "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes can't decide if a resource is in the condition or not. In the future, we could add other intermediate conditions, e.g. ConditionDegraded.

func (*ConditionStatus) CodecDecodeSelf added in v1.2.0

func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (ConditionStatus) CodecEncodeSelf added in v1.2.0

func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder)

type ConfigMap added in v1.2.0

type ConfigMap struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Data contains the configuration data.
	// Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.
	// +optional
	Data map[string]string `json:"data,omitempty" protobuf:"bytes,2,rep,name=data"`
}

ConfigMap holds configuration data for pods to consume.

func (*ConfigMap) CodecDecodeSelf added in v1.2.0

func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder)

func (*ConfigMap) CodecEncodeSelf added in v1.2.0

func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder)

func (*ConfigMap) Descriptor added in v1.4.0

func (*ConfigMap) Descriptor() ([]byte, []int)

func (*ConfigMap) Marshal added in v1.3.0

func (m *ConfigMap) Marshal() (data []byte, err error)

func (*ConfigMap) MarshalTo added in v1.3.0

func (m *ConfigMap) MarshalTo(data []byte) (int, error)

func (*ConfigMap) ProtoMessage added in v1.3.0

func (*ConfigMap) ProtoMessage()

func (*ConfigMap) Reset added in v1.3.0

func (m *ConfigMap) Reset()

func (*ConfigMap) Size added in v1.3.0

func (m *ConfigMap) Size() (n int)

func (*ConfigMap) String added in v1.3.0

func (this *ConfigMap) String() string

func (ConfigMap) SwaggerDoc added in v1.2.0

func (ConfigMap) SwaggerDoc() map[string]string

func (*ConfigMap) Unmarshal added in v1.3.0

func (m *ConfigMap) Unmarshal(data []byte) error

type ConfigMapKeySelector added in v1.2.0

type ConfigMapKeySelector struct {
	// The ConfigMap to select from.
	LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
	// The key to select.
	Key string `json:"key" protobuf:"bytes,2,opt,name=key"`
}

Selects a key from a ConfigMap.

func (*ConfigMapKeySelector) CodecDecodeSelf added in v1.2.0

func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder)

func (*ConfigMapKeySelector) CodecEncodeSelf added in v1.2.0

func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder)

func (*ConfigMapKeySelector) Descriptor added in v1.4.0

func (*ConfigMapKeySelector) Descriptor() ([]byte, []int)

func (*ConfigMapKeySelector) Marshal added in v1.3.0

func (m *ConfigMapKeySelector) Marshal() (data []byte, err error)

func (*ConfigMapKeySelector) MarshalTo added in v1.3.0

func (m *ConfigMapKeySelector) MarshalTo(data []byte) (int, error)

func (*ConfigMapKeySelector) ProtoMessage added in v1.3.0

func (*ConfigMapKeySelector) ProtoMessage()

func (*ConfigMapKeySelector) Reset added in v1.3.0

func (m *ConfigMapKeySelector) Reset()

func (*ConfigMapKeySelector) Size added in v1.3.0

func (m *ConfigMapKeySelector) Size() (n int)

func (*ConfigMapKeySelector) String added in v1.3.0

func (this *ConfigMapKeySelector) String() string

func (ConfigMapKeySelector) SwaggerDoc added in v1.2.0

func (ConfigMapKeySelector) SwaggerDoc() map[string]string

func (*ConfigMapKeySelector) Unmarshal added in v1.3.0

func (m *ConfigMapKeySelector) Unmarshal(data []byte) error

type ConfigMapList added in v1.2.0

type ConfigMapList struct {
	unversioned.TypeMeta `json:",inline"`

	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is the list of ConfigMaps.
	Items []ConfigMap `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ConfigMapList is a resource containing a list of ConfigMap objects.

func (*ConfigMapList) CodecDecodeSelf added in v1.2.0

func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ConfigMapList) CodecEncodeSelf added in v1.2.0

func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ConfigMapList) Descriptor added in v1.4.0

func (*ConfigMapList) Descriptor() ([]byte, []int)

func (*ConfigMapList) Marshal added in v1.3.0

func (m *ConfigMapList) Marshal() (data []byte, err error)

func (*ConfigMapList) MarshalTo added in v1.3.0

func (m *ConfigMapList) MarshalTo(data []byte) (int, error)

func (*ConfigMapList) ProtoMessage added in v1.3.0

func (*ConfigMapList) ProtoMessage()

func (*ConfigMapList) Reset added in v1.3.0

func (m *ConfigMapList) Reset()

func (*ConfigMapList) Size added in v1.3.0

func (m *ConfigMapList) Size() (n int)

func (*ConfigMapList) String added in v1.3.0

func (this *ConfigMapList) String() string

func (ConfigMapList) SwaggerDoc added in v1.2.0

func (ConfigMapList) SwaggerDoc() map[string]string

func (*ConfigMapList) Unmarshal added in v1.3.0

func (m *ConfigMapList) Unmarshal(data []byte) error

type ConfigMapVolumeSource added in v1.2.0

type ConfigMapVolumeSource struct {
	LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
	// If unspecified, each key-value pair in the Data field of the referenced
	// ConfigMap will be projected into the volume as a file whose name is the
	// key and content is the value. If specified, the listed keys will be
	// projected into the specified paths, and unlisted keys will not be
	// present. If a key is specified which is not present in the ConfigMap,
	// the volume setup will error. Paths must be relative and may not contain
	// the '..' path or start with '..'.
	// +optional
	Items []KeyToPath `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"`
	// Optional: mode bits to use on created files by default. Must be a
	// value between 0 and 0777. Defaults to 0644.
	// Directories within the path are not affected by this setting.
	// This might be in conflict with other options that affect the file
	// mode, like fsGroup, and the result can be other mode bits set.
	// +optional
	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,3,opt,name=defaultMode"`
}

Adapts a ConfigMap into a volume.

The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.

func (*ConfigMapVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *ConfigMapVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*ConfigMapVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *ConfigMapVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*ConfigMapVolumeSource) Descriptor added in v1.4.0

func (*ConfigMapVolumeSource) Descriptor() ([]byte, []int)

func (*ConfigMapVolumeSource) Marshal added in v1.3.0

func (m *ConfigMapVolumeSource) Marshal() (data []byte, err error)

func (*ConfigMapVolumeSource) MarshalTo added in v1.3.0

func (m *ConfigMapVolumeSource) MarshalTo(data []byte) (int, error)

func (*ConfigMapVolumeSource) ProtoMessage added in v1.3.0

func (*ConfigMapVolumeSource) ProtoMessage()

func (*ConfigMapVolumeSource) Reset added in v1.3.0

func (m *ConfigMapVolumeSource) Reset()

func (*ConfigMapVolumeSource) Size added in v1.3.0

func (m *ConfigMapVolumeSource) Size() (n int)

func (*ConfigMapVolumeSource) String added in v1.3.0

func (this *ConfigMapVolumeSource) String() string

func (ConfigMapVolumeSource) SwaggerDoc added in v1.2.0

func (ConfigMapVolumeSource) SwaggerDoc() map[string]string

func (*ConfigMapVolumeSource) Unmarshal added in v1.3.0

func (m *ConfigMapVolumeSource) Unmarshal(data []byte) error

type Container

type Container struct {
	// Name of the container specified as a DNS_LABEL.
	// Each container in a pod must have a unique name (DNS_LABEL).
	// Cannot be updated.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Docker image name.
	// More info: http://kubernetes.io/docs/user-guide/images
	// +optional
	Image string `json:"image,omitempty" protobuf:"bytes,2,opt,name=image"`
	// Entrypoint array. Not executed within a shell.
	// The docker image's ENTRYPOINT is used if this is not provided.
	// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable
	// cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax
	// can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded,
	// regardless of whether the variable exists or not.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands
	// +optional
	Command []string `json:"command,omitempty" protobuf:"bytes,3,rep,name=command"`
	// Arguments to the entrypoint.
	// The docker image's CMD is used if this is not provided.
	// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable
	// cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax
	// can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded,
	// regardless of whether the variable exists or not.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands
	// +optional
	Args []string `json:"args,omitempty" protobuf:"bytes,4,rep,name=args"`
	// Container's working directory.
	// If not specified, the container runtime's default will be used, which
	// might be configured in the container image.
	// Cannot be updated.
	// +optional
	WorkingDir string `json:"workingDir,omitempty" protobuf:"bytes,5,opt,name=workingDir"`
	// List of ports to expose from the container. Exposing a port here gives
	// the system additional information about the network connections a
	// container uses, but is primarily informational. Not specifying a port here
	// DOES NOT prevent that port from being exposed. Any port which is
	// listening on the default "0.0.0.0" address inside a container will be
	// accessible from the network.
	// Cannot be updated.
	// +optional
	Ports []ContainerPort `json:"ports,omitempty" patchStrategy:"merge" patchMergeKey:"containerPort" protobuf:"bytes,6,rep,name=ports"`
	// List of environment variables to set in the container.
	// Cannot be updated.
	// +optional
	Env []EnvVar `json:"env,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,7,rep,name=env"`
	// Compute Resources required by this container.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources
	// +optional
	Resources ResourceRequirements `json:"resources,omitempty" protobuf:"bytes,8,opt,name=resources"`
	// Pod volumes to mount into the container's filesystem.
	// Cannot be updated.
	// +optional
	VolumeMounts []VolumeMount `json:"volumeMounts,omitempty" patchStrategy:"merge" patchMergeKey:"mountPath" protobuf:"bytes,9,rep,name=volumeMounts"`
	// Periodic probe of container liveness.
	// Container will be restarted if the probe fails.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
	// +optional
	LivenessProbe *Probe `json:"livenessProbe,omitempty" protobuf:"bytes,10,opt,name=livenessProbe"`
	// Periodic probe of container service readiness.
	// Container will be removed from service endpoints if the probe fails.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
	// +optional
	ReadinessProbe *Probe `json:"readinessProbe,omitempty" protobuf:"bytes,11,opt,name=readinessProbe"`
	// Actions that the management system should take in response to container lifecycle events.
	// Cannot be updated.
	// +optional
	Lifecycle *Lifecycle `json:"lifecycle,omitempty" protobuf:"bytes,12,opt,name=lifecycle"`
	// Optional: Path at which the file to which the container's termination message
	// will be written is mounted into the container's filesystem.
	// Message written is intended to be brief final status, such as an assertion failure message.
	// Defaults to /dev/termination-log.
	// Cannot be updated.
	// +optional
	TerminationMessagePath string `json:"terminationMessagePath,omitempty" protobuf:"bytes,13,opt,name=terminationMessagePath"`
	// Image pull policy.
	// One of Always, Never, IfNotPresent.
	// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/images#updating-images
	// +optional
	ImagePullPolicy PullPolicy `json:"imagePullPolicy,omitempty" protobuf:"bytes,14,opt,name=imagePullPolicy,casttype=PullPolicy"`
	// Security options the pod should run with.
	// More info: http://releases.k8s.io/HEAD/docs/design/security_context.md
	// +optional
	SecurityContext *SecurityContext `json:"securityContext,omitempty" protobuf:"bytes,15,opt,name=securityContext"`

	// Whether this container should allocate a buffer for stdin in the container runtime. If this
	// is not set, reads from stdin in the container will always result in EOF.
	// Default is false.
	// +optional
	Stdin bool `json:"stdin,omitempty" protobuf:"varint,16,opt,name=stdin"`
	// Whether the container runtime should close the stdin channel after it has been opened by
	// a single attach. When stdin is true the stdin stream will remain open across multiple attach
	// sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the
	// first client attaches to stdin, and then remains open and accepts data until the client disconnects,
	// at which time stdin is closed and remains closed until the container is restarted. If this
	// flag is false, a container processes that reads from stdin will never receive an EOF.
	// Default is false
	// +optional
	StdinOnce bool `json:"stdinOnce,omitempty" protobuf:"varint,17,opt,name=stdinOnce"`
	// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.
	// Default is false.
	// +optional
	TTY bool `json:"tty,omitempty" protobuf:"varint,18,opt,name=tty"`
}

A single application container that you want to run within a pod.

func (*Container) CodecDecodeSelf added in v1.2.0

func (x *Container) CodecDecodeSelf(d *codec1978.Decoder)

func (*Container) CodecEncodeSelf added in v1.2.0

func (x *Container) CodecEncodeSelf(e *codec1978.Encoder)

func (*Container) Descriptor added in v1.4.0

func (*Container) Descriptor() ([]byte, []int)

func (*Container) Marshal added in v1.3.0

func (m *Container) Marshal() (data []byte, err error)

func (*Container) MarshalTo added in v1.3.0

func (m *Container) MarshalTo(data []byte) (int, error)

func (*Container) ProtoMessage added in v1.3.0

func (*Container) ProtoMessage()

func (*Container) Reset added in v1.3.0

func (m *Container) Reset()

func (*Container) Size added in v1.3.0

func (m *Container) Size() (n int)

func (*Container) String added in v1.3.0

func (this *Container) String() string

func (Container) SwaggerDoc added in v1.1.0

func (Container) SwaggerDoc() map[string]string

func (*Container) Unmarshal added in v1.3.0

func (m *Container) Unmarshal(data []byte) error

type ContainerImage added in v1.2.0

type ContainerImage struct {
	// Names by which this image is known.
	// e.g. ["gcr.io/google_containers/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]
	Names []string `json:"names" protobuf:"bytes,1,rep,name=names"`
	// The size of the image in bytes.
	// +optional
	SizeBytes int64 `json:"sizeBytes,omitempty" protobuf:"varint,2,opt,name=sizeBytes"`
}

Describe a container image

func (*ContainerImage) CodecDecodeSelf added in v1.2.0

func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerImage) CodecEncodeSelf added in v1.2.0

func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerImage) Descriptor added in v1.4.0

func (*ContainerImage) Descriptor() ([]byte, []int)

func (*ContainerImage) Marshal added in v1.3.0

func (m *ContainerImage) Marshal() (data []byte, err error)

func (*ContainerImage) MarshalTo added in v1.3.0

func (m *ContainerImage) MarshalTo(data []byte) (int, error)

func (*ContainerImage) ProtoMessage added in v1.3.0

func (*ContainerImage) ProtoMessage()

func (*ContainerImage) Reset added in v1.3.0

func (m *ContainerImage) Reset()

func (*ContainerImage) Size added in v1.3.0

func (m *ContainerImage) Size() (n int)

func (*ContainerImage) String added in v1.3.0

func (this *ContainerImage) String() string

func (ContainerImage) SwaggerDoc added in v1.2.0

func (ContainerImage) SwaggerDoc() map[string]string

func (*ContainerImage) Unmarshal added in v1.3.0

func (m *ContainerImage) Unmarshal(data []byte) error

type ContainerPort

type ContainerPort struct {
	// If specified, this must be an IANA_SVC_NAME and unique within the pod. Each
	// named port in a pod must have a unique name. Name for the port that can be
	// referred to by services.
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
	// Number of port to expose on the host.
	// If specified, this must be a valid port number, 0 < x < 65536.
	// If HostNetwork is specified, this must match ContainerPort.
	// Most containers do not need this.
	// +optional
	HostPort int32 `json:"hostPort,omitempty" protobuf:"varint,2,opt,name=hostPort"`
	// Number of port to expose on the pod's IP address.
	// This must be a valid port number, 0 < x < 65536.
	ContainerPort int32 `json:"containerPort" protobuf:"varint,3,opt,name=containerPort"`
	// Protocol for port. Must be UDP or TCP.
	// Defaults to "TCP".
	// +optional
	Protocol Protocol `json:"protocol,omitempty" protobuf:"bytes,4,opt,name=protocol,casttype=Protocol"`
	// What host IP to bind the external port to.
	// +optional
	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
}

ContainerPort represents a network port in a single container.

func (*ContainerPort) CodecDecodeSelf added in v1.2.0

func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerPort) CodecEncodeSelf added in v1.2.0

func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerPort) Descriptor added in v1.4.0

func (*ContainerPort) Descriptor() ([]byte, []int)

func (*ContainerPort) Marshal added in v1.3.0

func (m *ContainerPort) Marshal() (data []byte, err error)

func (*ContainerPort) MarshalTo added in v1.3.0

func (m *ContainerPort) MarshalTo(data []byte) (int, error)

func (*ContainerPort) ProtoMessage added in v1.3.0

func (*ContainerPort) ProtoMessage()

func (*ContainerPort) Reset added in v1.3.0

func (m *ContainerPort) Reset()

func (*ContainerPort) Size added in v1.3.0

func (m *ContainerPort) Size() (n int)

func (*ContainerPort) String added in v1.3.0

func (this *ContainerPort) String() string

func (ContainerPort) SwaggerDoc added in v1.1.0

func (ContainerPort) SwaggerDoc() map[string]string

func (*ContainerPort) Unmarshal added in v1.3.0

func (m *ContainerPort) Unmarshal(data []byte) error

type ContainerState

type ContainerState struct {
	// Details about a waiting container
	// +optional
	Waiting *ContainerStateWaiting `json:"waiting,omitempty" protobuf:"bytes,1,opt,name=waiting"`
	// Details about a running container
	// +optional
	Running *ContainerStateRunning `json:"running,omitempty" protobuf:"bytes,2,opt,name=running"`
	// Details about a terminated container
	// +optional
	Terminated *ContainerStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`
}

ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.

func (*ContainerState) CodecDecodeSelf added in v1.2.0

func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerState) CodecEncodeSelf added in v1.2.0

func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerState) Descriptor added in v1.4.0

func (*ContainerState) Descriptor() ([]byte, []int)

func (*ContainerState) Marshal added in v1.3.0

func (m *ContainerState) Marshal() (data []byte, err error)

func (*ContainerState) MarshalTo added in v1.3.0

func (m *ContainerState) MarshalTo(data []byte) (int, error)

func (*ContainerState) ProtoMessage added in v1.3.0

func (*ContainerState) ProtoMessage()

func (*ContainerState) Reset added in v1.3.0

func (m *ContainerState) Reset()

func (*ContainerState) Size added in v1.3.0

func (m *ContainerState) Size() (n int)

func (*ContainerState) String added in v1.3.0

func (this *ContainerState) String() string

func (ContainerState) SwaggerDoc added in v1.1.0

func (ContainerState) SwaggerDoc() map[string]string

func (*ContainerState) Unmarshal added in v1.3.0

func (m *ContainerState) Unmarshal(data []byte) error

type ContainerStateRunning

type ContainerStateRunning struct {
	// Time at which the container was last (re-)started
	// +optional
	StartedAt unversioned.Time `json:"startedAt,omitempty" protobuf:"bytes,1,opt,name=startedAt"`
}

ContainerStateRunning is a running state of a container.

func (*ContainerStateRunning) CodecDecodeSelf added in v1.2.0

func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerStateRunning) CodecEncodeSelf added in v1.2.0

func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerStateRunning) Descriptor added in v1.4.0

func (*ContainerStateRunning) Descriptor() ([]byte, []int)

func (*ContainerStateRunning) Marshal added in v1.3.0

func (m *ContainerStateRunning) Marshal() (data []byte, err error)

func (*ContainerStateRunning) MarshalTo added in v1.3.0

func (m *ContainerStateRunning) MarshalTo(data []byte) (int, error)

func (*ContainerStateRunning) ProtoMessage added in v1.3.0

func (*ContainerStateRunning) ProtoMessage()

func (*ContainerStateRunning) Reset added in v1.3.0

func (m *ContainerStateRunning) Reset()

func (*ContainerStateRunning) Size added in v1.3.0

func (m *ContainerStateRunning) Size() (n int)

func (*ContainerStateRunning) String added in v1.3.0

func (this *ContainerStateRunning) String() string

func (ContainerStateRunning) SwaggerDoc added in v1.1.0

func (ContainerStateRunning) SwaggerDoc() map[string]string

func (*ContainerStateRunning) Unmarshal added in v1.3.0

func (m *ContainerStateRunning) Unmarshal(data []byte) error

type ContainerStateTerminated

type ContainerStateTerminated struct {
	// Exit status from the last termination of the container
	ExitCode int32 `json:"exitCode" protobuf:"varint,1,opt,name=exitCode"`
	// Signal from the last termination of the container
	// +optional
	Signal int32 `json:"signal,omitempty" protobuf:"varint,2,opt,name=signal"`
	// (brief) reason from the last termination of the container
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
	// Message regarding the last termination of the container
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"`
	// Time at which previous execution of the container started
	// +optional
	StartedAt unversioned.Time `json:"startedAt,omitempty" protobuf:"bytes,5,opt,name=startedAt"`
	// Time at which the container last terminated
	// +optional
	FinishedAt unversioned.Time `json:"finishedAt,omitempty" protobuf:"bytes,6,opt,name=finishedAt"`
	// Container's ID in the format 'docker://<container_id>'
	// +optional
	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,7,opt,name=containerID"`
}

ContainerStateTerminated is a terminated state of a container.

func (*ContainerStateTerminated) CodecDecodeSelf added in v1.2.0

func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerStateTerminated) CodecEncodeSelf added in v1.2.0

func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerStateTerminated) Descriptor added in v1.4.0

func (*ContainerStateTerminated) Descriptor() ([]byte, []int)

func (*ContainerStateTerminated) Marshal added in v1.3.0

func (m *ContainerStateTerminated) Marshal() (data []byte, err error)

func (*ContainerStateTerminated) MarshalTo added in v1.3.0

func (m *ContainerStateTerminated) MarshalTo(data []byte) (int, error)

func (*ContainerStateTerminated) ProtoMessage added in v1.3.0

func (*ContainerStateTerminated) ProtoMessage()

func (*ContainerStateTerminated) Reset added in v1.3.0

func (m *ContainerStateTerminated) Reset()

func (*ContainerStateTerminated) Size added in v1.3.0

func (m *ContainerStateTerminated) Size() (n int)

func (*ContainerStateTerminated) String added in v1.3.0

func (this *ContainerStateTerminated) String() string

func (ContainerStateTerminated) SwaggerDoc added in v1.1.0

func (ContainerStateTerminated) SwaggerDoc() map[string]string

func (*ContainerStateTerminated) Unmarshal added in v1.3.0

func (m *ContainerStateTerminated) Unmarshal(data []byte) error

type ContainerStateWaiting

type ContainerStateWaiting struct {
	// (brief) reason the container is not yet running.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,1,opt,name=reason"`
	// Message regarding why the container is not yet running.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
}

ContainerStateWaiting is a waiting state of a container.

func (*ContainerStateWaiting) CodecDecodeSelf added in v1.2.0

func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerStateWaiting) CodecEncodeSelf added in v1.2.0

func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerStateWaiting) Descriptor added in v1.4.0

func (*ContainerStateWaiting) Descriptor() ([]byte, []int)

func (*ContainerStateWaiting) Marshal added in v1.3.0

func (m *ContainerStateWaiting) Marshal() (data []byte, err error)

func (*ContainerStateWaiting) MarshalTo added in v1.3.0

func (m *ContainerStateWaiting) MarshalTo(data []byte) (int, error)

func (*ContainerStateWaiting) ProtoMessage added in v1.3.0

func (*ContainerStateWaiting) ProtoMessage()

func (*ContainerStateWaiting) Reset added in v1.3.0

func (m *ContainerStateWaiting) Reset()

func (*ContainerStateWaiting) Size added in v1.3.0

func (m *ContainerStateWaiting) Size() (n int)

func (*ContainerStateWaiting) String added in v1.3.0

func (this *ContainerStateWaiting) String() string

func (ContainerStateWaiting) SwaggerDoc added in v1.1.0

func (ContainerStateWaiting) SwaggerDoc() map[string]string

func (*ContainerStateWaiting) Unmarshal added in v1.3.0

func (m *ContainerStateWaiting) Unmarshal(data []byte) error

type ContainerStatus

type ContainerStatus struct {
	// This must be a DNS_LABEL. Each container in a pod must have a unique name.
	// Cannot be updated.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Details about the container's current condition.
	// +optional
	State ContainerState `json:"state,omitempty" protobuf:"bytes,2,opt,name=state"`
	// Details about the container's last termination condition.
	// +optional
	LastTerminationState ContainerState `json:"lastState,omitempty" protobuf:"bytes,3,opt,name=lastState"`
	// Specifies whether the container has passed its readiness probe.
	Ready bool `json:"ready" protobuf:"varint,4,opt,name=ready"`
	// The number of times the container has been restarted, currently based on
	// the number of dead containers that have not yet been removed.
	// Note that this is calculated from dead containers. But those containers are subject to
	// garbage collection. This value will get capped at 5 by GC.
	RestartCount int32 `json:"restartCount" protobuf:"varint,5,opt,name=restartCount"`
	// The image the container is running.
	// More info: http://kubernetes.io/docs/user-guide/images
	// TODO(dchen1107): Which image the container is running with?
	Image string `json:"image" protobuf:"bytes,6,opt,name=image"`
	// ImageID of the container's image.
	ImageID string `json:"imageID" protobuf:"bytes,7,opt,name=imageID"`
	// Container's ID in the format 'docker://<container_id>'.
	// More info: http://kubernetes.io/docs/user-guide/container-environment#container-information
	// +optional
	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,8,opt,name=containerID"`
}

ContainerStatus contains details for the current status of this container.

func (*ContainerStatus) CodecDecodeSelf added in v1.2.0

func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*ContainerStatus) CodecEncodeSelf added in v1.2.0

func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*ContainerStatus) Descriptor added in v1.4.0

func (*ContainerStatus) Descriptor() ([]byte, []int)

func (*ContainerStatus) Marshal added in v1.3.0

func (m *ContainerStatus) Marshal() (data []byte, err error)

func (*ContainerStatus) MarshalTo added in v1.3.0

func (m *ContainerStatus) MarshalTo(data []byte) (int, error)

func (*ContainerStatus) ProtoMessage added in v1.3.0

func (*ContainerStatus) ProtoMessage()

func (*ContainerStatus) Reset added in v1.3.0

func (m *ContainerStatus) Reset()

func (*ContainerStatus) Size added in v1.3.0

func (m *ContainerStatus) Size() (n int)

func (*ContainerStatus) String added in v1.3.0

func (this *ContainerStatus) String() string

func (ContainerStatus) SwaggerDoc added in v1.1.0

func (ContainerStatus) SwaggerDoc() map[string]string

func (*ContainerStatus) Unmarshal added in v1.3.0

func (m *ContainerStatus) Unmarshal(data []byte) error

type DNSPolicy

type DNSPolicy string

DNSPolicy defines how a pod's DNS will be configured.

const (
	// DNSClusterFirst indicates that the pod should use cluster DNS
	// first, if it is available, then fall back on the default (as
	// determined by kubelet) DNS settings.
	DNSClusterFirst DNSPolicy = "ClusterFirst"

	// DNSDefault indicates that the pod should use the default (as
	// determined by kubelet) DNS settings.
	DNSDefault DNSPolicy = "Default"

	DefaultTerminationGracePeriodSeconds = 30
)

func (*DNSPolicy) CodecDecodeSelf added in v1.2.0

func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder)

func (DNSPolicy) CodecEncodeSelf added in v1.2.0

func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder)

type DaemonEndpoint added in v1.1.0

type DaemonEndpoint struct {

	// Port number of the given endpoint.
	Port int32 `json:"Port" protobuf:"varint,1,opt,name=Port"`
}

DaemonEndpoint contains information about a single Daemon endpoint.

func (*DaemonEndpoint) CodecDecodeSelf added in v1.2.0

func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder)

func (*DaemonEndpoint) CodecEncodeSelf added in v1.2.0

func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder)

func (*DaemonEndpoint) Descriptor added in v1.4.0

func (*DaemonEndpoint) Descriptor() ([]byte, []int)

func (*DaemonEndpoint) Marshal added in v1.3.0

func (m *DaemonEndpoint) Marshal() (data []byte, err error)

func (*DaemonEndpoint) MarshalTo added in v1.3.0

func (m *DaemonEndpoint) MarshalTo(data []byte) (int, error)

func (*DaemonEndpoint) ProtoMessage added in v1.3.0

func (*DaemonEndpoint) ProtoMessage()

func (*DaemonEndpoint) Reset added in v1.3.0

func (m *DaemonEndpoint) Reset()

func (*DaemonEndpoint) Size added in v1.3.0

func (m *DaemonEndpoint) Size() (n int)

func (*DaemonEndpoint) String added in v1.3.0

func (this *DaemonEndpoint) String() string

func (DaemonEndpoint) SwaggerDoc added in v1.1.0

func (DaemonEndpoint) SwaggerDoc() map[string]string

func (*DaemonEndpoint) Unmarshal added in v1.3.0

func (m *DaemonEndpoint) Unmarshal(data []byte) error

type DeleteOptions

type DeleteOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// The duration in seconds before the object should be deleted. Value must be non-negative integer.
	// The value zero indicates delete immediately. If this value is nil, the default grace period for the
	// specified type will be used.
	// Defaults to a per object value if not specified. zero means delete immediately.
	// +optional
	GracePeriodSeconds *int64 `json:"gracePeriodSeconds,omitempty" protobuf:"varint,1,opt,name=gracePeriodSeconds"`

	// Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be
	// returned.
	// +optional
	Preconditions *Preconditions `json:"preconditions,omitempty" protobuf:"bytes,2,opt,name=preconditions"`

	// Should the dependent objects be orphaned. If true/false, the "orphan"
	// finalizer will be added to/removed from the object's finalizers list.
	// +optional
	OrphanDependents *bool `json:"orphanDependents,omitempty" protobuf:"varint,3,opt,name=orphanDependents"`
}

DeleteOptions may be provided when deleting an API object

func NewDeleteOptions added in v1.5.0

func NewDeleteOptions(grace int64) *DeleteOptions

NewDeleteOptions returns a DeleteOptions indicating the resource should be deleted within the specified grace period. Use zero to indicate immediate deletion. If you would prefer to use the default grace period, use &v1.DeleteOptions{} directly.

func (*DeleteOptions) CodecDecodeSelf added in v1.2.0

func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*DeleteOptions) CodecEncodeSelf added in v1.2.0

func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*DeleteOptions) Descriptor added in v1.4.0

func (*DeleteOptions) Descriptor() ([]byte, []int)

func (*DeleteOptions) Marshal added in v1.3.0

func (m *DeleteOptions) Marshal() (data []byte, err error)

func (*DeleteOptions) MarshalTo added in v1.3.0

func (m *DeleteOptions) MarshalTo(data []byte) (int, error)

func (*DeleteOptions) ProtoMessage added in v1.3.0

func (*DeleteOptions) ProtoMessage()

func (*DeleteOptions) Reset added in v1.3.0

func (m *DeleteOptions) Reset()

func (*DeleteOptions) Size added in v1.3.0

func (m *DeleteOptions) Size() (n int)

func (*DeleteOptions) String added in v1.3.0

func (this *DeleteOptions) String() string

func (DeleteOptions) SwaggerDoc added in v1.1.0

func (DeleteOptions) SwaggerDoc() map[string]string

func (*DeleteOptions) Unmarshal added in v1.3.0

func (m *DeleteOptions) Unmarshal(data []byte) error

type DownwardAPIVolumeFile added in v1.1.0

type DownwardAPIVolumeFile struct {
	// Required: Path is  the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'
	Path string `json:"path" protobuf:"bytes,1,opt,name=path"`
	// Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.
	// +optional
	FieldRef *ObjectFieldSelector `json:"fieldRef,omitempty" protobuf:"bytes,2,opt,name=fieldRef"`
	// Selects a resource of the container: only resources limits and requests
	// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
	// +optional
	ResourceFieldRef *ResourceFieldSelector `json:"resourceFieldRef,omitempty" protobuf:"bytes,3,opt,name=resourceFieldRef"`
	// Optional: mode bits to use on this file, must be a value between 0
	// and 0777. If not specified, the volume defaultMode will be used.
	// This might be in conflict with other options that affect the file
	// mode, like fsGroup, and the result can be other mode bits set.
	// +optional
	Mode *int32 `json:"mode,omitempty" protobuf:"varint,4,opt,name=mode"`
}

DownwardAPIVolumeFile represents information to create the file containing the pod field

func (*DownwardAPIVolumeFile) CodecDecodeSelf added in v1.2.0

func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder)

func (*DownwardAPIVolumeFile) CodecEncodeSelf added in v1.2.0

func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder)

func (*DownwardAPIVolumeFile) Descriptor added in v1.4.0

func (*DownwardAPIVolumeFile) Descriptor() ([]byte, []int)

func (*DownwardAPIVolumeFile) Marshal added in v1.3.0

func (m *DownwardAPIVolumeFile) Marshal() (data []byte, err error)

func (*DownwardAPIVolumeFile) MarshalTo added in v1.3.0

func (m *DownwardAPIVolumeFile) MarshalTo(data []byte) (int, error)

func (*DownwardAPIVolumeFile) ProtoMessage added in v1.3.0

func (*DownwardAPIVolumeFile) ProtoMessage()

func (*DownwardAPIVolumeFile) Reset added in v1.3.0

func (m *DownwardAPIVolumeFile) Reset()

func (*DownwardAPIVolumeFile) Size added in v1.3.0

func (m *DownwardAPIVolumeFile) Size() (n int)

func (*DownwardAPIVolumeFile) String added in v1.3.0

func (this *DownwardAPIVolumeFile) String() string

func (DownwardAPIVolumeFile) SwaggerDoc added in v1.1.0

func (DownwardAPIVolumeFile) SwaggerDoc() map[string]string

func (*DownwardAPIVolumeFile) Unmarshal added in v1.3.0

func (m *DownwardAPIVolumeFile) Unmarshal(data []byte) error

type DownwardAPIVolumeSource added in v1.1.0

type DownwardAPIVolumeSource struct {
	// Items is a list of downward API volume file
	// +optional
	Items []DownwardAPIVolumeFile `json:"items,omitempty" protobuf:"bytes,1,rep,name=items"`
	// Optional: mode bits to use on created files by default. Must be a
	// value between 0 and 0777. Defaults to 0644.
	// Directories within the path are not affected by this setting.
	// This might be in conflict with other options that affect the file
	// mode, like fsGroup, and the result can be other mode bits set.
	// +optional
	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,2,opt,name=defaultMode"`
}

DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

func (*DownwardAPIVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*DownwardAPIVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*DownwardAPIVolumeSource) Descriptor added in v1.4.0

func (*DownwardAPIVolumeSource) Descriptor() ([]byte, []int)

func (*DownwardAPIVolumeSource) Marshal added in v1.3.0

func (m *DownwardAPIVolumeSource) Marshal() (data []byte, err error)

func (*DownwardAPIVolumeSource) MarshalTo added in v1.3.0

func (m *DownwardAPIVolumeSource) MarshalTo(data []byte) (int, error)

func (*DownwardAPIVolumeSource) ProtoMessage added in v1.3.0

func (*DownwardAPIVolumeSource) ProtoMessage()

func (*DownwardAPIVolumeSource) Reset added in v1.3.0

func (m *DownwardAPIVolumeSource) Reset()

func (*DownwardAPIVolumeSource) Size added in v1.3.0

func (m *DownwardAPIVolumeSource) Size() (n int)

func (*DownwardAPIVolumeSource) String added in v1.3.0

func (this *DownwardAPIVolumeSource) String() string

func (DownwardAPIVolumeSource) SwaggerDoc added in v1.1.0

func (DownwardAPIVolumeSource) SwaggerDoc() map[string]string

func (*DownwardAPIVolumeSource) Unmarshal added in v1.3.0

func (m *DownwardAPIVolumeSource) Unmarshal(data []byte) error

type EmptyDirVolumeSource

type EmptyDirVolumeSource struct {
	// What type of storage medium should back this directory.
	// The default is "" which means to use the node's default medium.
	// Must be an empty string (default) or Memory.
	// More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
	// +optional
	Medium StorageMedium `json:"medium,omitempty" protobuf:"bytes,1,opt,name=medium,casttype=StorageMedium"`
}

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

func (*EmptyDirVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *EmptyDirVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*EmptyDirVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *EmptyDirVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*EmptyDirVolumeSource) Descriptor added in v1.4.0

func (*EmptyDirVolumeSource) Descriptor() ([]byte, []int)

func (*EmptyDirVolumeSource) Marshal added in v1.3.0

func (m *EmptyDirVolumeSource) Marshal() (data []byte, err error)

func (*EmptyDirVolumeSource) MarshalTo added in v1.3.0

func (m *EmptyDirVolumeSource) MarshalTo(data []byte) (int, error)

func (*EmptyDirVolumeSource) ProtoMessage added in v1.3.0

func (*EmptyDirVolumeSource) ProtoMessage()

func (*EmptyDirVolumeSource) Reset added in v1.3.0

func (m *EmptyDirVolumeSource) Reset()

func (*EmptyDirVolumeSource) Size added in v1.3.0

func (m *EmptyDirVolumeSource) Size() (n int)

func (*EmptyDirVolumeSource) String added in v1.3.0

func (this *EmptyDirVolumeSource) String() string

func (EmptyDirVolumeSource) SwaggerDoc added in v1.1.0

func (EmptyDirVolumeSource) SwaggerDoc() map[string]string

func (*EmptyDirVolumeSource) Unmarshal added in v1.3.0

func (m *EmptyDirVolumeSource) Unmarshal(data []byte) error

type EndpointAddress

type EndpointAddress struct {
	// The IP of this endpoint.
	// May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16),
	// or link-local multicast ((224.0.0.0/24).
	// IPv6 is also accepted but not fully supported on all platforms. Also, certain
	// kubernetes components, like kube-proxy, are not IPv6 ready.
	// TODO: This should allow hostname or IP, See #4447.
	IP string `json:"ip" protobuf:"bytes,1,opt,name=ip"`
	// The Hostname of this endpoint
	// +optional
	Hostname string `json:"hostname,omitempty" protobuf:"bytes,3,opt,name=hostname"`
	// Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
	// +optional
	NodeName *string `json:"nodeName,omitempty" protobuf:"bytes,4,opt,name=nodeName"`
	// Reference to object providing the endpoint.
	// +optional
	TargetRef *ObjectReference `json:"targetRef,omitempty" protobuf:"bytes,2,opt,name=targetRef"`
}

EndpointAddress is a tuple that describes single IP address.

func (*EndpointAddress) CodecDecodeSelf added in v1.2.0

func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder)

func (*EndpointAddress) CodecEncodeSelf added in v1.2.0

func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder)

func (*EndpointAddress) Descriptor added in v1.4.0

func (*EndpointAddress) Descriptor() ([]byte, []int)

func (*EndpointAddress) Marshal added in v1.3.0

func (m *EndpointAddress) Marshal() (data []byte, err error)

func (*EndpointAddress) MarshalTo added in v1.3.0

func (m *EndpointAddress) MarshalTo(data []byte) (int, error)

func (*EndpointAddress) ProtoMessage added in v1.3.0

func (*EndpointAddress) ProtoMessage()

func (*EndpointAddress) Reset added in v1.3.0

func (m *EndpointAddress) Reset()

func (*EndpointAddress) Size added in v1.3.0

func (m *EndpointAddress) Size() (n int)

func (*EndpointAddress) String added in v1.3.0

func (this *EndpointAddress) String() string

func (EndpointAddress) SwaggerDoc added in v1.1.0

func (EndpointAddress) SwaggerDoc() map[string]string

func (*EndpointAddress) Unmarshal added in v1.3.0

func (m *EndpointAddress) Unmarshal(data []byte) error

type EndpointPort

type EndpointPort struct {
	// The name of this port (corresponds to ServicePort.Name).
	// Must be a DNS_LABEL.
	// Optional only if one port is defined.
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`

	// The port number of the endpoint.
	Port int32 `json:"port" protobuf:"varint,2,opt,name=port"`

	// The IP protocol for this port.
	// Must be UDP or TCP.
	// Default is TCP.
	// +optional
	Protocol Protocol `json:"protocol,omitempty" protobuf:"bytes,3,opt,name=protocol,casttype=Protocol"`
}

EndpointPort is a tuple that describes a single port.

func (*EndpointPort) CodecDecodeSelf added in v1.2.0

func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder)

func (*EndpointPort) CodecEncodeSelf added in v1.2.0

func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder)

func (*EndpointPort) Descriptor added in v1.4.0

func (*EndpointPort) Descriptor() ([]byte, []int)

func (*EndpointPort) Marshal added in v1.3.0

func (m *EndpointPort) Marshal() (data []byte, err error)

func (*EndpointPort) MarshalTo added in v1.3.0

func (m *EndpointPort) MarshalTo(data []byte) (int, error)

func (*EndpointPort) ProtoMessage added in v1.3.0

func (*EndpointPort) ProtoMessage()

func (*EndpointPort) Reset added in v1.3.0

func (m *EndpointPort) Reset()

func (*EndpointPort) Size added in v1.3.0

func (m *EndpointPort) Size() (n int)

func (*EndpointPort) String added in v1.3.0

func (this *EndpointPort) String() string

func (EndpointPort) SwaggerDoc added in v1.1.0

func (EndpointPort) SwaggerDoc() map[string]string

func (*EndpointPort) Unmarshal added in v1.3.0

func (m *EndpointPort) Unmarshal(data []byte) error

type EndpointSubset

type EndpointSubset struct {
	// IP addresses which offer the related ports that are marked as ready. These endpoints
	// should be considered safe for load balancers and clients to utilize.
	// +optional
	Addresses []EndpointAddress `json:"addresses,omitempty" protobuf:"bytes,1,rep,name=addresses"`
	// IP addresses which offer the related ports but are not currently marked as ready
	// because they have not yet finished starting, have recently failed a readiness check,
	// or have recently failed a liveness check.
	// +optional
	NotReadyAddresses []EndpointAddress `json:"notReadyAddresses,omitempty" protobuf:"bytes,2,rep,name=notReadyAddresses"`
	// Port numbers available on the related IP addresses.
	// +optional
	Ports []EndpointPort `json:"ports,omitempty" protobuf:"bytes,3,rep,name=ports"`
}

EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:

{
  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
}

The resulting set of endpoints can be viewed as:

a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],
b: [ 10.10.1.1:309, 10.10.2.2:309 ]

func (*EndpointSubset) CodecDecodeSelf added in v1.2.0

func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder)

func (*EndpointSubset) CodecEncodeSelf added in v1.2.0

func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder)

func (*EndpointSubset) Descriptor added in v1.4.0

func (*EndpointSubset) Descriptor() ([]byte, []int)

func (*EndpointSubset) Marshal added in v1.3.0

func (m *EndpointSubset) Marshal() (data []byte, err error)

func (*EndpointSubset) MarshalTo added in v1.3.0

func (m *EndpointSubset) MarshalTo(data []byte) (int, error)

func (*EndpointSubset) ProtoMessage added in v1.3.0

func (*EndpointSubset) ProtoMessage()

func (*EndpointSubset) Reset added in v1.3.0

func (m *EndpointSubset) Reset()

func (*EndpointSubset) Size added in v1.3.0

func (m *EndpointSubset) Size() (n int)

func (*EndpointSubset) String added in v1.3.0

func (this *EndpointSubset) String() string

func (EndpointSubset) SwaggerDoc added in v1.1.0

func (EndpointSubset) SwaggerDoc() map[string]string

func (*EndpointSubset) Unmarshal added in v1.3.0

func (m *EndpointSubset) Unmarshal(data []byte) error

type Endpoints

type Endpoints struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// The set of all endpoints is the union of all subsets. Addresses are placed into
	// subsets according to the IPs they share. A single address with multiple ports,
	// some of which are ready and some of which are not (because they come from
	// different containers) will result in the address being displayed in different
	// subsets for the different ports. No address will appear in both Addresses and
	// NotReadyAddresses in the same subset.
	// Sets of addresses and ports that comprise a service.
	Subsets []EndpointSubset `json:"subsets" protobuf:"bytes,2,rep,name=subsets"`
}

Endpoints is a collection of endpoints that implement the actual service. Example:

 Name: "mysvc",
 Subsets: [
   {
     Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
     Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
   },
   {
     Addresses: [{"ip": "10.10.3.3"}],
     Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}]
   },
]

func (*Endpoints) CodecDecodeSelf added in v1.2.0

func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder)

func (*Endpoints) CodecEncodeSelf added in v1.2.0

func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder)

func (*Endpoints) Descriptor added in v1.4.0

func (*Endpoints) Descriptor() ([]byte, []int)

func (*Endpoints) Marshal added in v1.3.0

func (m *Endpoints) Marshal() (data []byte, err error)

func (*Endpoints) MarshalTo added in v1.3.0

func (m *Endpoints) MarshalTo(data []byte) (int, error)

func (*Endpoints) ProtoMessage added in v1.3.0

func (*Endpoints) ProtoMessage()

func (*Endpoints) Reset added in v1.3.0

func (m *Endpoints) Reset()

func (*Endpoints) Size added in v1.3.0

func (m *Endpoints) Size() (n int)

func (*Endpoints) String added in v1.3.0

func (this *Endpoints) String() string

func (Endpoints) SwaggerDoc added in v1.1.0

func (Endpoints) SwaggerDoc() map[string]string

func (*Endpoints) Unmarshal added in v1.3.0

func (m *Endpoints) Unmarshal(data []byte) error

type EndpointsList

type EndpointsList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of endpoints.
	Items []Endpoints `json:"items" protobuf:"bytes,2,rep,name=items"`
}

EndpointsList is a list of endpoints.

func (*EndpointsList) CodecDecodeSelf added in v1.2.0

func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder)

func (*EndpointsList) CodecEncodeSelf added in v1.2.0

func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder)

func (*EndpointsList) Descriptor added in v1.4.0

func (*EndpointsList) Descriptor() ([]byte, []int)

func (*EndpointsList) Marshal added in v1.3.0

func (m *EndpointsList) Marshal() (data []byte, err error)

func (*EndpointsList) MarshalTo added in v1.3.0

func (m *EndpointsList) MarshalTo(data []byte) (int, error)

func (*EndpointsList) ProtoMessage added in v1.3.0

func (*EndpointsList) ProtoMessage()

func (*EndpointsList) Reset added in v1.3.0

func (m *EndpointsList) Reset()

func (*EndpointsList) Size added in v1.3.0

func (m *EndpointsList) Size() (n int)

func (*EndpointsList) String added in v1.3.0

func (this *EndpointsList) String() string

func (EndpointsList) SwaggerDoc added in v1.1.0

func (EndpointsList) SwaggerDoc() map[string]string

func (*EndpointsList) Unmarshal added in v1.3.0

func (m *EndpointsList) Unmarshal(data []byte) error

type EnvVar

type EnvVar struct {
	// Name of the environment variable. Must be a C_IDENTIFIER.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// Variable references $(VAR_NAME) are expanded
	// using the previous defined environment variables in the container and
	// any service environment variables. If a variable cannot be resolved,
	// the reference in the input string will be unchanged. The $(VAR_NAME)
	// syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped
	// references will never be expanded, regardless of whether the variable
	// exists or not.
	// Defaults to "".
	// +optional
	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
	// Source for the environment variable's value. Cannot be used if value is not empty.
	// +optional
	ValueFrom *EnvVarSource `json:"valueFrom,omitempty" protobuf:"bytes,3,opt,name=valueFrom"`
}

EnvVar represents an environment variable present in a Container.

func (*EnvVar) CodecDecodeSelf added in v1.2.0

func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder)

func (*EnvVar) CodecEncodeSelf added in v1.2.0

func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder)

func (*EnvVar) Descriptor added in v1.4.0

func (*EnvVar) Descriptor() ([]byte, []int)

func (*EnvVar) Marshal added in v1.3.0

func (m *EnvVar) Marshal() (data []byte, err error)

func (*EnvVar) MarshalTo added in v1.3.0

func (m *EnvVar) MarshalTo(data []byte) (int, error)

func (*EnvVar) ProtoMessage added in v1.3.0

func (*EnvVar) ProtoMessage()

func (*EnvVar) Reset added in v1.3.0

func (m *EnvVar) Reset()

func (*EnvVar) Size added in v1.3.0

func (m *EnvVar) Size() (n int)

func (*EnvVar) String added in v1.3.0

func (this *EnvVar) String() string

func (EnvVar) SwaggerDoc added in v1.1.0

func (EnvVar) SwaggerDoc() map[string]string

func (*EnvVar) Unmarshal added in v1.3.0

func (m *EnvVar) Unmarshal(data []byte) error

type EnvVarSource

type EnvVarSource struct {
	// Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations,
	// spec.nodeName, spec.serviceAccountName, status.podIP.
	// +optional
	FieldRef *ObjectFieldSelector `json:"fieldRef,omitempty" protobuf:"bytes,1,opt,name=fieldRef"`
	// Selects a resource of the container: only resources limits and requests
	// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.
	// +optional
	ResourceFieldRef *ResourceFieldSelector `json:"resourceFieldRef,omitempty" protobuf:"bytes,2,opt,name=resourceFieldRef"`
	// Selects a key of a ConfigMap.
	// +optional
	ConfigMapKeyRef *ConfigMapKeySelector `json:"configMapKeyRef,omitempty" protobuf:"bytes,3,opt,name=configMapKeyRef"`
	// Selects a key of a secret in the pod's namespace
	// +optional
	SecretKeyRef *SecretKeySelector `json:"secretKeyRef,omitempty" protobuf:"bytes,4,opt,name=secretKeyRef"`
}

EnvVarSource represents a source for the value of an EnvVar.

func (*EnvVarSource) CodecDecodeSelf added in v1.2.0

func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*EnvVarSource) CodecEncodeSelf added in v1.2.0

func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*EnvVarSource) Descriptor added in v1.4.0

func (*EnvVarSource) Descriptor() ([]byte, []int)

func (*EnvVarSource) Marshal added in v1.3.0

func (m *EnvVarSource) Marshal() (data []byte, err error)

func (*EnvVarSource) MarshalTo added in v1.3.0

func (m *EnvVarSource) MarshalTo(data []byte) (int, error)

func (*EnvVarSource) ProtoMessage added in v1.3.0

func (*EnvVarSource) ProtoMessage()

func (*EnvVarSource) Reset added in v1.3.0

func (m *EnvVarSource) Reset()

func (*EnvVarSource) Size added in v1.3.0

func (m *EnvVarSource) Size() (n int)

func (*EnvVarSource) String added in v1.3.0

func (this *EnvVarSource) String() string

func (EnvVarSource) SwaggerDoc added in v1.1.0

func (EnvVarSource) SwaggerDoc() map[string]string

func (*EnvVarSource) Unmarshal added in v1.3.0

func (m *EnvVarSource) Unmarshal(data []byte) error

type Event

type Event struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	ObjectMeta `json:"metadata" protobuf:"bytes,1,opt,name=metadata"`

	// The object that this event is about.
	InvolvedObject ObjectReference `json:"involvedObject" protobuf:"bytes,2,opt,name=involvedObject"`

	// This should be a short, machine understandable string that gives the reason
	// for the transition into the object's current status.
	// TODO: provide exact specification for format.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`

	// A human-readable description of the status of this operation.
	// TODO: decide on maximum length.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"`

	// The component reporting this event. Should be a short machine understandable string.
	// +optional
	Source EventSource `json:"source,omitempty" protobuf:"bytes,5,opt,name=source"`

	// The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
	// +optional
	FirstTimestamp unversioned.Time `json:"firstTimestamp,omitempty" protobuf:"bytes,6,opt,name=firstTimestamp"`

	// The time at which the most recent occurrence of this event was recorded.
	// +optional
	LastTimestamp unversioned.Time `json:"lastTimestamp,omitempty" protobuf:"bytes,7,opt,name=lastTimestamp"`

	// The number of times this event has occurred.
	// +optional
	Count int32 `json:"count,omitempty" protobuf:"varint,8,opt,name=count"`

	// Type of this event (Normal, Warning), new types could be added in the future
	// +optional
	Type string `json:"type,omitempty" protobuf:"bytes,9,opt,name=type"`
}

Event is a report of an event somewhere in the cluster. TODO: Decide whether to store these separately or with the object they apply to.

func (*Event) CodecDecodeSelf added in v1.2.0

func (x *Event) CodecDecodeSelf(d *codec1978.Decoder)

func (*Event) CodecEncodeSelf added in v1.2.0

func (x *Event) CodecEncodeSelf(e *codec1978.Encoder)

func (*Event) Descriptor added in v1.4.0

func (*Event) Descriptor() ([]byte, []int)

func (*Event) Marshal added in v1.3.0

func (m *Event) Marshal() (data []byte, err error)

func (*Event) MarshalTo added in v1.3.0

func (m *Event) MarshalTo(data []byte) (int, error)

func (*Event) ProtoMessage added in v1.3.0

func (*Event) ProtoMessage()

func (*Event) Reset added in v1.3.0

func (m *Event) Reset()

func (*Event) Size added in v1.3.0

func (m *Event) Size() (n int)

func (*Event) String added in v1.3.0

func (this *Event) String() string

func (Event) SwaggerDoc added in v1.1.0

func (Event) SwaggerDoc() map[string]string

func (*Event) Unmarshal added in v1.3.0

func (m *Event) Unmarshal(data []byte) error

type EventList

type EventList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of events
	Items []Event `json:"items" protobuf:"bytes,2,rep,name=items"`
}

EventList is a list of events.

func (*EventList) CodecDecodeSelf added in v1.2.0

func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder)

func (*EventList) CodecEncodeSelf added in v1.2.0

func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder)

func (*EventList) Descriptor added in v1.4.0

func (*EventList) Descriptor() ([]byte, []int)

func (*EventList) Marshal added in v1.3.0

func (m *EventList) Marshal() (data []byte, err error)

func (*EventList) MarshalTo added in v1.3.0

func (m *EventList) MarshalTo(data []byte) (int, error)

func (*EventList) ProtoMessage added in v1.3.0

func (*EventList) ProtoMessage()

func (*EventList) Reset added in v1.3.0

func (m *EventList) Reset()

func (*EventList) Size added in v1.3.0

func (m *EventList) Size() (n int)

func (*EventList) String added in v1.3.0

func (this *EventList) String() string

func (EventList) SwaggerDoc added in v1.1.0

func (EventList) SwaggerDoc() map[string]string

func (*EventList) Unmarshal added in v1.3.0

func (m *EventList) Unmarshal(data []byte) error

type EventSource

type EventSource struct {
	// Component from which the event is generated.
	// +optional
	Component string `json:"component,omitempty" protobuf:"bytes,1,opt,name=component"`
	// Node name on which the event is generated.
	// +optional
	Host string `json:"host,omitempty" protobuf:"bytes,2,opt,name=host"`
}

EventSource contains information for an event.

func (*EventSource) CodecDecodeSelf added in v1.2.0

func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*EventSource) CodecEncodeSelf added in v1.2.0

func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*EventSource) Descriptor added in v1.4.0

func (*EventSource) Descriptor() ([]byte, []int)

func (*EventSource) Marshal added in v1.3.0

func (m *EventSource) Marshal() (data []byte, err error)

func (*EventSource) MarshalTo added in v1.3.0

func (m *EventSource) MarshalTo(data []byte) (int, error)

func (*EventSource) ProtoMessage added in v1.3.0

func (*EventSource) ProtoMessage()

func (*EventSource) Reset added in v1.3.0

func (m *EventSource) Reset()

func (*EventSource) Size added in v1.3.0

func (m *EventSource) Size() (n int)

func (*EventSource) String added in v1.3.0

func (this *EventSource) String() string

func (EventSource) SwaggerDoc added in v1.1.0

func (EventSource) SwaggerDoc() map[string]string

func (*EventSource) Unmarshal added in v1.3.0

func (m *EventSource) Unmarshal(data []byte) error

type ExecAction

type ExecAction struct {
	// Command is the command line to execute inside the container, the working directory for the
	// command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
	// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use
	// a shell, you need to explicitly call out to that shell.
	// Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
	// +optional
	Command []string `json:"command,omitempty" protobuf:"bytes,1,rep,name=command"`
}

ExecAction describes a "run in container" action.

func (*ExecAction) CodecDecodeSelf added in v1.2.0

func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder)

func (*ExecAction) CodecEncodeSelf added in v1.2.0

func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder)

func (*ExecAction) Descriptor added in v1.4.0

func (*ExecAction) Descriptor() ([]byte, []int)

func (*ExecAction) Marshal added in v1.3.0

func (m *ExecAction) Marshal() (data []byte, err error)

func (*ExecAction) MarshalTo added in v1.3.0

func (m *ExecAction) MarshalTo(data []byte) (int, error)

func (*ExecAction) ProtoMessage added in v1.3.0

func (*ExecAction) ProtoMessage()

func (*ExecAction) Reset added in v1.3.0

func (m *ExecAction) Reset()

func (*ExecAction) Size added in v1.3.0

func (m *ExecAction) Size() (n int)

func (*ExecAction) String added in v1.3.0

func (this *ExecAction) String() string

func (ExecAction) SwaggerDoc added in v1.1.0

func (ExecAction) SwaggerDoc() map[string]string

func (*ExecAction) Unmarshal added in v1.3.0

func (m *ExecAction) Unmarshal(data []byte) error

type ExportOptions added in v1.2.0

type ExportOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Should this value be exported.  Export strips fields that a user can not specify.
	Export bool `json:"export" protobuf:"varint,1,opt,name=export"`
	// Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'
	Exact bool `json:"exact" protobuf:"varint,2,opt,name=exact"`
}

ExportOptions is the query options to the standard REST get call.

func (*ExportOptions) CodecDecodeSelf added in v1.2.0

func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*ExportOptions) CodecEncodeSelf added in v1.2.0

func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*ExportOptions) Descriptor added in v1.4.0

func (*ExportOptions) Descriptor() ([]byte, []int)

func (*ExportOptions) Marshal added in v1.3.0

func (m *ExportOptions) Marshal() (data []byte, err error)

func (*ExportOptions) MarshalTo added in v1.3.0

func (m *ExportOptions) MarshalTo(data []byte) (int, error)

func (*ExportOptions) ProtoMessage added in v1.3.0

func (*ExportOptions) ProtoMessage()

func (*ExportOptions) Reset added in v1.3.0

func (m *ExportOptions) Reset()

func (*ExportOptions) Size added in v1.3.0

func (m *ExportOptions) Size() (n int)

func (*ExportOptions) String added in v1.3.0

func (this *ExportOptions) String() string

func (ExportOptions) SwaggerDoc added in v1.2.0

func (ExportOptions) SwaggerDoc() map[string]string

func (*ExportOptions) Unmarshal added in v1.3.0

func (m *ExportOptions) Unmarshal(data []byte) error

type FCVolumeSource added in v1.1.0

type FCVolumeSource struct {
	// Required: FC target worldwide names (WWNs)
	TargetWWNs []string `json:"targetWWNs" protobuf:"bytes,1,rep,name=targetWWNs"`
	// Required: FC target lun number
	Lun *int32 `json:"lun" protobuf:"varint,2,opt,name=lun"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// TODO: how do we prevent errors in the filesystem from compromising the machine
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,3,opt,name=fsType"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,4,opt,name=readOnly"`
}

Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.

func (*FCVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*FCVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*FCVolumeSource) Descriptor added in v1.4.0

func (*FCVolumeSource) Descriptor() ([]byte, []int)

func (*FCVolumeSource) Marshal added in v1.3.0

func (m *FCVolumeSource) Marshal() (data []byte, err error)

func (*FCVolumeSource) MarshalTo added in v1.3.0

func (m *FCVolumeSource) MarshalTo(data []byte) (int, error)

func (*FCVolumeSource) ProtoMessage added in v1.3.0

func (*FCVolumeSource) ProtoMessage()

func (*FCVolumeSource) Reset added in v1.3.0

func (m *FCVolumeSource) Reset()

func (*FCVolumeSource) Size added in v1.3.0

func (m *FCVolumeSource) Size() (n int)

func (*FCVolumeSource) String added in v1.3.0

func (this *FCVolumeSource) String() string

func (FCVolumeSource) SwaggerDoc added in v1.1.0

func (FCVolumeSource) SwaggerDoc() map[string]string

func (*FCVolumeSource) Unmarshal added in v1.3.0

func (m *FCVolumeSource) Unmarshal(data []byte) error

type FinalizerName

type FinalizerName string

func (*FinalizerName) CodecDecodeSelf added in v1.2.0

func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder)

func (FinalizerName) CodecEncodeSelf added in v1.2.0

func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder)

type FlexVolumeSource added in v1.2.0

type FlexVolumeSource struct {
	// Driver is the name of the driver to use for this volume.
	Driver string `json:"driver" protobuf:"bytes,1,opt,name=driver"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
	// Optional: SecretRef is reference to the secret object containing
	// sensitive information to pass to the plugin scripts. This may be
	// empty if no secret object is specified. If the secret object
	// contains more than one secret, all secrets are passed to the plugin
	// scripts.
	// +optional
	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,3,opt,name=secretRef"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,4,opt,name=readOnly"`
	// Optional: Extra command options if any.
	// +optional
	Options map[string]string `json:"options,omitempty" protobuf:"bytes,5,rep,name=options"`
}

FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.

func (*FlexVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *FlexVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*FlexVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *FlexVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*FlexVolumeSource) Descriptor added in v1.4.0

func (*FlexVolumeSource) Descriptor() ([]byte, []int)

func (*FlexVolumeSource) Marshal added in v1.3.0

func (m *FlexVolumeSource) Marshal() (data []byte, err error)

func (*FlexVolumeSource) MarshalTo added in v1.3.0

func (m *FlexVolumeSource) MarshalTo(data []byte) (int, error)

func (*FlexVolumeSource) ProtoMessage added in v1.3.0

func (*FlexVolumeSource) ProtoMessage()

func (*FlexVolumeSource) Reset added in v1.3.0

func (m *FlexVolumeSource) Reset()

func (*FlexVolumeSource) Size added in v1.3.0

func (m *FlexVolumeSource) Size() (n int)

func (*FlexVolumeSource) String added in v1.3.0

func (this *FlexVolumeSource) String() string

func (FlexVolumeSource) SwaggerDoc added in v1.2.0

func (FlexVolumeSource) SwaggerDoc() map[string]string

func (*FlexVolumeSource) Unmarshal added in v1.3.0

func (m *FlexVolumeSource) Unmarshal(data []byte) error

type FlockerVolumeSource added in v1.1.1

type FlockerVolumeSource struct {
	// Name of the dataset stored as metadata -> name on the dataset for Flocker
	// should be considered as deprecated
	// +optional
	DatasetName string `json:"datasetName,omitempty" protobuf:"bytes,1,opt,name=datasetName"`
	// UUID of the dataset. This is unique identifier of a Flocker dataset
	// +optional
	DatasetUUID string `json:"datasetUUID,omitempty" protobuf:"bytes,2,opt,name=datasetUUID"`
}

Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.

func (*FlockerVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*FlockerVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*FlockerVolumeSource) Descriptor added in v1.4.0

func (*FlockerVolumeSource) Descriptor() ([]byte, []int)

func (*FlockerVolumeSource) Marshal added in v1.3.0

func (m *FlockerVolumeSource) Marshal() (data []byte, err error)

func (*FlockerVolumeSource) MarshalTo added in v1.3.0

func (m *FlockerVolumeSource) MarshalTo(data []byte) (int, error)

func (*FlockerVolumeSource) ProtoMessage added in v1.3.0

func (*FlockerVolumeSource) ProtoMessage()

func (*FlockerVolumeSource) Reset added in v1.3.0

func (m *FlockerVolumeSource) Reset()

func (*FlockerVolumeSource) Size added in v1.3.0

func (m *FlockerVolumeSource) Size() (n int)

func (*FlockerVolumeSource) String added in v1.3.0

func (this *FlockerVolumeSource) String() string

func (FlockerVolumeSource) SwaggerDoc added in v1.1.1

func (FlockerVolumeSource) SwaggerDoc() map[string]string

func (*FlockerVolumeSource) Unmarshal added in v1.3.0

func (m *FlockerVolumeSource) Unmarshal(data []byte) error

type GCEPersistentDiskVolumeSource

type GCEPersistentDiskVolumeSource struct {
	// Unique name of the PD resource in GCE. Used to identify the disk in GCE.
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	PDName string `json:"pdName" protobuf:"bytes,1,opt,name=pdName"`
	// Filesystem type of the volume that you want to mount.
	// Tip: Ensure that the filesystem type is supported by the host operating system.
	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	// TODO: how do we prevent errors in the filesystem from compromising the machine
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
	// The partition in the volume that you want to mount.
	// If omitted, the default is to mount by volume name.
	// Examples: For volume /dev/sda1, you specify the partition as "1".
	// Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	// +optional
	Partition int32 `json:"partition,omitempty" protobuf:"varint,3,opt,name=partition"`
	// ReadOnly here will force the ReadOnly setting in VolumeMounts.
	// Defaults to false.
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,4,opt,name=readOnly"`
}

Represents a Persistent Disk resource in Google Compute Engine.

A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

func (*GCEPersistentDiskVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *GCEPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*GCEPersistentDiskVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *GCEPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*GCEPersistentDiskVolumeSource) Descriptor added in v1.4.0

func (*GCEPersistentDiskVolumeSource) Descriptor() ([]byte, []int)

func (*GCEPersistentDiskVolumeSource) Marshal added in v1.3.0

func (m *GCEPersistentDiskVolumeSource) Marshal() (data []byte, err error)

func (*GCEPersistentDiskVolumeSource) MarshalTo added in v1.3.0

func (m *GCEPersistentDiskVolumeSource) MarshalTo(data []byte) (int, error)

func (*GCEPersistentDiskVolumeSource) ProtoMessage added in v1.3.0

func (*GCEPersistentDiskVolumeSource) ProtoMessage()

func (*GCEPersistentDiskVolumeSource) Reset added in v1.3.0

func (m *GCEPersistentDiskVolumeSource) Reset()

func (*GCEPersistentDiskVolumeSource) Size added in v1.3.0

func (m *GCEPersistentDiskVolumeSource) Size() (n int)

func (*GCEPersistentDiskVolumeSource) String added in v1.3.0

func (this *GCEPersistentDiskVolumeSource) String() string

func (GCEPersistentDiskVolumeSource) SwaggerDoc added in v1.1.0

func (GCEPersistentDiskVolumeSource) SwaggerDoc() map[string]string

func (*GCEPersistentDiskVolumeSource) Unmarshal added in v1.3.0

func (m *GCEPersistentDiskVolumeSource) Unmarshal(data []byte) error

type GitRepoVolumeSource

type GitRepoVolumeSource struct {
	// Repository URL
	Repository string `json:"repository" protobuf:"bytes,1,opt,name=repository"`
	// Commit hash for the specified revision.
	// +optional
	Revision string `json:"revision,omitempty" protobuf:"bytes,2,opt,name=revision"`
	// Target directory name.
	// Must not contain or start with '..'.  If '.' is supplied, the volume directory will be the
	// git repository.  Otherwise, if specified, the volume will contain the git repository in
	// the subdirectory with the given name.
	// +optional
	Directory string `json:"directory,omitempty" protobuf:"bytes,3,opt,name=directory"`
}

Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

func (*GitRepoVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*GitRepoVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*GitRepoVolumeSource) Descriptor added in v1.4.0

func (*GitRepoVolumeSource) Descriptor() ([]byte, []int)

func (*GitRepoVolumeSource) Marshal added in v1.3.0

func (m *GitRepoVolumeSource) Marshal() (data []byte, err error)

func (*GitRepoVolumeSource) MarshalTo added in v1.3.0

func (m *GitRepoVolumeSource) MarshalTo(data []byte) (int, error)

func (*GitRepoVolumeSource) ProtoMessage added in v1.3.0

func (*GitRepoVolumeSource) ProtoMessage()

func (*GitRepoVolumeSource) Reset added in v1.3.0

func (m *GitRepoVolumeSource) Reset()

func (*GitRepoVolumeSource) Size added in v1.3.0

func (m *GitRepoVolumeSource) Size() (n int)

func (*GitRepoVolumeSource) String added in v1.3.0

func (this *GitRepoVolumeSource) String() string

func (GitRepoVolumeSource) SwaggerDoc added in v1.1.0

func (GitRepoVolumeSource) SwaggerDoc() map[string]string

func (*GitRepoVolumeSource) Unmarshal added in v1.3.0

func (m *GitRepoVolumeSource) Unmarshal(data []byte) error

type GlusterfsVolumeSource

type GlusterfsVolumeSource struct {
	// EndpointsName is the endpoint name that details Glusterfs topology.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	EndpointsName string `json:"endpoints" protobuf:"bytes,1,opt,name=endpoints"`

	// Path is the Glusterfs volume path.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	Path string `json:"path" protobuf:"bytes,2,opt,name=path"`

	// ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions.
	// Defaults to false.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
}

Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

func (*GlusterfsVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*GlusterfsVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*GlusterfsVolumeSource) Descriptor added in v1.4.0

func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int)

func (*GlusterfsVolumeSource) Marshal added in v1.3.0

func (m *GlusterfsVolumeSource) Marshal() (data []byte, err error)

func (*GlusterfsVolumeSource) MarshalTo added in v1.3.0

func (m *GlusterfsVolumeSource) MarshalTo(data []byte) (int, error)

func (*GlusterfsVolumeSource) ProtoMessage added in v1.3.0

func (*GlusterfsVolumeSource) ProtoMessage()

func (*GlusterfsVolumeSource) Reset added in v1.3.0

func (m *GlusterfsVolumeSource) Reset()

func (*GlusterfsVolumeSource) Size added in v1.3.0

func (m *GlusterfsVolumeSource) Size() (n int)

func (*GlusterfsVolumeSource) String added in v1.3.0

func (this *GlusterfsVolumeSource) String() string

func (GlusterfsVolumeSource) SwaggerDoc added in v1.1.0

func (GlusterfsVolumeSource) SwaggerDoc() map[string]string

func (*GlusterfsVolumeSource) Unmarshal added in v1.3.0

func (m *GlusterfsVolumeSource) Unmarshal(data []byte) error

type HTTPGetAction

type HTTPGetAction struct {
	// Path to access on the HTTP server.
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
	// Name or number of the port to access on the container.
	// Number must be in the range 1 to 65535.
	// Name must be an IANA_SVC_NAME.
	Port intstr.IntOrString `json:"port" protobuf:"bytes,2,opt,name=port"`
	// Host name to connect to, defaults to the pod IP. You probably want to set
	// "Host" in httpHeaders instead.
	// +optional
	Host string `json:"host,omitempty" protobuf:"bytes,3,opt,name=host"`
	// Scheme to use for connecting to the host.
	// Defaults to HTTP.
	// +optional
	Scheme URIScheme `json:"scheme,omitempty" protobuf:"bytes,4,opt,name=scheme,casttype=URIScheme"`
	// Custom headers to set in the request. HTTP allows repeated headers.
	// +optional
	HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty" protobuf:"bytes,5,rep,name=httpHeaders"`
}

HTTPGetAction describes an action based on HTTP Get requests.

func (*HTTPGetAction) CodecDecodeSelf added in v1.2.0

func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder)

func (*HTTPGetAction) CodecEncodeSelf added in v1.2.0

func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder)

func (*HTTPGetAction) Descriptor added in v1.4.0

func (*HTTPGetAction) Descriptor() ([]byte, []int)

func (*HTTPGetAction) Marshal added in v1.3.0

func (m *HTTPGetAction) Marshal() (data []byte, err error)

func (*HTTPGetAction) MarshalTo added in v1.3.0

func (m *HTTPGetAction) MarshalTo(data []byte) (int, error)

func (*HTTPGetAction) ProtoMessage added in v1.3.0

func (*HTTPGetAction) ProtoMessage()

func (*HTTPGetAction) Reset added in v1.3.0

func (m *HTTPGetAction) Reset()

func (*HTTPGetAction) Size added in v1.3.0

func (m *HTTPGetAction) Size() (n int)

func (*HTTPGetAction) String added in v1.3.0

func (this *HTTPGetAction) String() string

func (HTTPGetAction) SwaggerDoc added in v1.1.0

func (HTTPGetAction) SwaggerDoc() map[string]string

func (*HTTPGetAction) Unmarshal added in v1.3.0

func (m *HTTPGetAction) Unmarshal(data []byte) error

type HTTPHeader added in v1.2.0

type HTTPHeader struct {
	// The header field name
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// The header field value
	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
}

HTTPHeader describes a custom header to be used in HTTP probes

func (*HTTPHeader) CodecDecodeSelf added in v1.2.0

func (x *HTTPHeader) CodecDecodeSelf(d *codec1978.Decoder)

func (*HTTPHeader) CodecEncodeSelf added in v1.2.0

func (x *HTTPHeader) CodecEncodeSelf(e *codec1978.Encoder)

func (*HTTPHeader) Descriptor added in v1.4.0

func (*HTTPHeader) Descriptor() ([]byte, []int)

func (*HTTPHeader) Marshal added in v1.3.0

func (m *HTTPHeader) Marshal() (data []byte, err error)

func (*HTTPHeader) MarshalTo added in v1.3.0

func (m *HTTPHeader) MarshalTo(data []byte) (int, error)

func (*HTTPHeader) ProtoMessage added in v1.3.0

func (*HTTPHeader) ProtoMessage()

func (*HTTPHeader) Reset added in v1.3.0

func (m *HTTPHeader) Reset()

func (*HTTPHeader) Size added in v1.3.0

func (m *HTTPHeader) Size() (n int)

func (*HTTPHeader) String added in v1.3.0

func (this *HTTPHeader) String() string

func (HTTPHeader) SwaggerDoc added in v1.2.0

func (HTTPHeader) SwaggerDoc() map[string]string

func (*HTTPHeader) Unmarshal added in v1.3.0

func (m *HTTPHeader) Unmarshal(data []byte) error

type Handler

type Handler struct {
	// One and only one of the following should be specified.
	// Exec specifies the action to take.
	// +optional
	Exec *ExecAction `json:"exec,omitempty" protobuf:"bytes,1,opt,name=exec"`
	// HTTPGet specifies the http request to perform.
	// +optional
	HTTPGet *HTTPGetAction `json:"httpGet,omitempty" protobuf:"bytes,2,opt,name=httpGet"`
	// TCPSocket specifies an action involving a TCP port.
	// TCP hooks not yet supported
	// TODO: implement a realistic TCP lifecycle hook
	// +optional
	TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" protobuf:"bytes,3,opt,name=tcpSocket"`
}

Handler defines a specific action that should be taken TODO: pass structured data to these actions, and document that data here.

func (*Handler) CodecDecodeSelf added in v1.2.0

func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder)

func (*Handler) CodecEncodeSelf added in v1.2.0

func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder)

func (*Handler) Descriptor added in v1.4.0

func (*Handler) Descriptor() ([]byte, []int)

func (*Handler) Marshal added in v1.3.0

func (m *Handler) Marshal() (data []byte, err error)

func (*Handler) MarshalTo added in v1.3.0

func (m *Handler) MarshalTo(data []byte) (int, error)

func (*Handler) ProtoMessage added in v1.3.0

func (*Handler) ProtoMessage()

func (*Handler) Reset added in v1.3.0

func (m *Handler) Reset()

func (*Handler) Size added in v1.3.0

func (m *Handler) Size() (n int)

func (*Handler) String added in v1.3.0

func (this *Handler) String() string

func (Handler) SwaggerDoc added in v1.1.0

func (Handler) SwaggerDoc() map[string]string

func (*Handler) Unmarshal added in v1.3.0

func (m *Handler) Unmarshal(data []byte) error

type HostPathVolumeSource

type HostPathVolumeSource struct {
	// Path of the directory on the host.
	// More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
	Path string `json:"path" protobuf:"bytes,1,opt,name=path"`
}

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

func (*HostPathVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *HostPathVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*HostPathVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *HostPathVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*HostPathVolumeSource) Descriptor added in v1.4.0

func (*HostPathVolumeSource) Descriptor() ([]byte, []int)

func (*HostPathVolumeSource) Marshal added in v1.3.0

func (m *HostPathVolumeSource) Marshal() (data []byte, err error)

func (*HostPathVolumeSource) MarshalTo added in v1.3.0

func (m *HostPathVolumeSource) MarshalTo(data []byte) (int, error)

func (*HostPathVolumeSource) ProtoMessage added in v1.3.0

func (*HostPathVolumeSource) ProtoMessage()

func (*HostPathVolumeSource) Reset added in v1.3.0

func (m *HostPathVolumeSource) Reset()

func (*HostPathVolumeSource) Size added in v1.3.0

func (m *HostPathVolumeSource) Size() (n int)

func (*HostPathVolumeSource) String added in v1.3.0

func (this *HostPathVolumeSource) String() string

func (HostPathVolumeSource) SwaggerDoc added in v1.1.0

func (HostPathVolumeSource) SwaggerDoc() map[string]string

func (*HostPathVolumeSource) Unmarshal added in v1.3.0

func (m *HostPathVolumeSource) Unmarshal(data []byte) error

type ISCSIVolumeSource

type ISCSIVolumeSource struct {
	// iSCSI target portal. The portal is either an IP or ip_addr:port if the port
	// is other than default (typically TCP ports 860 and 3260).
	TargetPortal string `json:"targetPortal" protobuf:"bytes,1,opt,name=targetPortal"`
	// Target iSCSI Qualified Name.
	IQN string `json:"iqn" protobuf:"bytes,2,opt,name=iqn"`
	// iSCSI target lun number.
	Lun int32 `json:"lun" protobuf:"varint,3,opt,name=lun"`
	// Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
	// +optional
	ISCSIInterface string `json:"iscsiInterface,omitempty" protobuf:"bytes,4,opt,name=iscsiInterface"`
	// Filesystem type of the volume that you want to mount.
	// Tip: Ensure that the filesystem type is supported by the host operating system.
	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// More info: http://kubernetes.io/docs/user-guide/volumes#iscsi
	// TODO: how do we prevent errors in the filesystem from compromising the machine
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,5,opt,name=fsType"`
	// ReadOnly here will force the ReadOnly setting in VolumeMounts.
	// Defaults to false.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,6,opt,name=readOnly"`
}

Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

func (*ISCSIVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*ISCSIVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*ISCSIVolumeSource) Descriptor added in v1.4.0

func (*ISCSIVolumeSource) Descriptor() ([]byte, []int)

func (*ISCSIVolumeSource) Marshal added in v1.3.0

func (m *ISCSIVolumeSource) Marshal() (data []byte, err error)

func (*ISCSIVolumeSource) MarshalTo added in v1.3.0

func (m *ISCSIVolumeSource) MarshalTo(data []byte) (int, error)

func (*ISCSIVolumeSource) ProtoMessage added in v1.3.0

func (*ISCSIVolumeSource) ProtoMessage()

func (*ISCSIVolumeSource) Reset added in v1.3.0

func (m *ISCSIVolumeSource) Reset()

func (*ISCSIVolumeSource) Size added in v1.3.0

func (m *ISCSIVolumeSource) Size() (n int)

func (*ISCSIVolumeSource) String added in v1.3.0

func (this *ISCSIVolumeSource) String() string

func (ISCSIVolumeSource) SwaggerDoc added in v1.1.0

func (ISCSIVolumeSource) SwaggerDoc() map[string]string

func (*ISCSIVolumeSource) Unmarshal added in v1.3.0

func (m *ISCSIVolumeSource) Unmarshal(data []byte) error

type KeyToPath added in v1.2.0

type KeyToPath struct {
	// The key to project.
	Key string `json:"key" protobuf:"bytes,1,opt,name=key"`

	// The relative path of the file to map the key to.
	// May not be an absolute path.
	// May not contain the path element '..'.
	// May not start with the string '..'.
	Path string `json:"path" protobuf:"bytes,2,opt,name=path"`
	// Optional: mode bits to use on this file, must be a value between 0
	// and 0777. If not specified, the volume defaultMode will be used.
	// This might be in conflict with other options that affect the file
	// mode, like fsGroup, and the result can be other mode bits set.
	// +optional
	Mode *int32 `json:"mode,omitempty" protobuf:"varint,3,opt,name=mode"`
}

Maps a string key to a path within a volume.

func (*KeyToPath) CodecDecodeSelf added in v1.2.0

func (x *KeyToPath) CodecDecodeSelf(d *codec1978.Decoder)

func (*KeyToPath) CodecEncodeSelf added in v1.2.0

func (x *KeyToPath) CodecEncodeSelf(e *codec1978.Encoder)

func (*KeyToPath) Descriptor added in v1.4.0

func (*KeyToPath) Descriptor() ([]byte, []int)

func (*KeyToPath) Marshal added in v1.3.0

func (m *KeyToPath) Marshal() (data []byte, err error)

func (*KeyToPath) MarshalTo added in v1.3.0

func (m *KeyToPath) MarshalTo(data []byte) (int, error)

func (*KeyToPath) ProtoMessage added in v1.3.0

func (*KeyToPath) ProtoMessage()

func (*KeyToPath) Reset added in v1.3.0

func (m *KeyToPath) Reset()

func (*KeyToPath) Size added in v1.3.0

func (m *KeyToPath) Size() (n int)

func (*KeyToPath) String added in v1.3.0

func (this *KeyToPath) String() string

func (KeyToPath) SwaggerDoc added in v1.2.0

func (KeyToPath) SwaggerDoc() map[string]string

func (*KeyToPath) Unmarshal added in v1.3.0

func (m *KeyToPath) Unmarshal(data []byte) error

type Lifecycle

type Lifecycle struct {
	// PostStart is called immediately after a container is created. If the handler fails,
	// the container is terminated and restarted according to its restart policy.
	// Other management of the container blocks until the hook completes.
	// More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
	// +optional
	PostStart *Handler `json:"postStart,omitempty" protobuf:"bytes,1,opt,name=postStart"`
	// PreStop is called immediately before a container is terminated.
	// The container is terminated after the handler completes.
	// The reason for termination is passed to the handler.
	// Regardless of the outcome of the handler, the container is eventually terminated.
	// Other management of the container blocks until the hook completes.
	// More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details
	// +optional
	PreStop *Handler `json:"preStop,omitempty" protobuf:"bytes,2,opt,name=preStop"`
}

Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

func (*Lifecycle) CodecDecodeSelf added in v1.2.0

func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder)

func (*Lifecycle) CodecEncodeSelf added in v1.2.0

func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder)

func (*Lifecycle) Descriptor added in v1.4.0

func (*Lifecycle) Descriptor() ([]byte, []int)

func (*Lifecycle) Marshal added in v1.3.0

func (m *Lifecycle) Marshal() (data []byte, err error)

func (*Lifecycle) MarshalTo added in v1.3.0

func (m *Lifecycle) MarshalTo(data []byte) (int, error)

func (*Lifecycle) ProtoMessage added in v1.3.0

func (*Lifecycle) ProtoMessage()

func (*Lifecycle) Reset added in v1.3.0

func (m *Lifecycle) Reset()

func (*Lifecycle) Size added in v1.3.0

func (m *Lifecycle) Size() (n int)

func (*Lifecycle) String added in v1.3.0

func (this *Lifecycle) String() string

func (Lifecycle) SwaggerDoc added in v1.1.0

func (Lifecycle) SwaggerDoc() map[string]string

func (*Lifecycle) Unmarshal added in v1.3.0

func (m *Lifecycle) Unmarshal(data []byte) error

type LimitRange

type LimitRange struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the limits enforced.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec LimitRangeSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
}

LimitRange sets resource usage limits for each kind of resource in a Namespace.

func (*LimitRange) CodecDecodeSelf added in v1.2.0

func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder)

func (*LimitRange) CodecEncodeSelf added in v1.2.0

func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder)

func (*LimitRange) Descriptor added in v1.4.0

func (*LimitRange) Descriptor() ([]byte, []int)

func (*LimitRange) Marshal added in v1.3.0

func (m *LimitRange) Marshal() (data []byte, err error)

func (*LimitRange) MarshalTo added in v1.3.0

func (m *LimitRange) MarshalTo(data []byte) (int, error)

func (*LimitRange) ProtoMessage added in v1.3.0

func (*LimitRange) ProtoMessage()

func (*LimitRange) Reset added in v1.3.0

func (m *LimitRange) Reset()

func (*LimitRange) Size added in v1.3.0

func (m *LimitRange) Size() (n int)

func (*LimitRange) String added in v1.3.0

func (this *LimitRange) String() string

func (LimitRange) SwaggerDoc added in v1.1.0

func (LimitRange) SwaggerDoc() map[string]string

func (*LimitRange) Unmarshal added in v1.3.0

func (m *LimitRange) Unmarshal(data []byte) error

type LimitRangeItem

type LimitRangeItem struct {
	// Type of resource that this limit applies to.
	// +optional
	Type LimitType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=LimitType"`
	// Max usage constraints on this kind by resource name.
	// +optional
	Max ResourceList `json:"max,omitempty" protobuf:"bytes,2,rep,name=max,casttype=ResourceList,castkey=ResourceName"`
	// Min usage constraints on this kind by resource name.
	// +optional
	Min ResourceList `json:"min,omitempty" protobuf:"bytes,3,rep,name=min,casttype=ResourceList,castkey=ResourceName"`
	// Default resource requirement limit value by resource name if resource limit is omitted.
	// +optional
	Default ResourceList `json:"default,omitempty" protobuf:"bytes,4,rep,name=default,casttype=ResourceList,castkey=ResourceName"`
	// DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
	// +optional
	DefaultRequest ResourceList `json:"defaultRequest,omitempty" protobuf:"bytes,5,rep,name=defaultRequest,casttype=ResourceList,castkey=ResourceName"`
	// MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
	// +optional
	MaxLimitRequestRatio ResourceList `` /* 129-byte string literal not displayed */
}

LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

func (*LimitRangeItem) CodecDecodeSelf added in v1.2.0

func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder)

func (*LimitRangeItem) CodecEncodeSelf added in v1.2.0

func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder)

func (*LimitRangeItem) Descriptor added in v1.4.0

func (*LimitRangeItem) Descriptor() ([]byte, []int)

func (*LimitRangeItem) Marshal added in v1.3.0

func (m *LimitRangeItem) Marshal() (data []byte, err error)

func (*LimitRangeItem) MarshalTo added in v1.3.0

func (m *LimitRangeItem) MarshalTo(data []byte) (int, error)

func (*LimitRangeItem) ProtoMessage added in v1.3.0

func (*LimitRangeItem) ProtoMessage()

func (*LimitRangeItem) Reset added in v1.3.0

func (m *LimitRangeItem) Reset()

func (*LimitRangeItem) Size added in v1.3.0

func (m *LimitRangeItem) Size() (n int)

func (*LimitRangeItem) String added in v1.3.0

func (this *LimitRangeItem) String() string

func (LimitRangeItem) SwaggerDoc added in v1.1.0

func (LimitRangeItem) SwaggerDoc() map[string]string

func (*LimitRangeItem) Unmarshal added in v1.3.0

func (m *LimitRangeItem) Unmarshal(data []byte) error

type LimitRangeList

type LimitRangeList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is a list of LimitRange objects.
	// More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md
	Items []LimitRange `json:"items" protobuf:"bytes,2,rep,name=items"`
}

LimitRangeList is a list of LimitRange items.

func (*LimitRangeList) CodecDecodeSelf added in v1.2.0

func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder)

func (*LimitRangeList) CodecEncodeSelf added in v1.2.0

func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder)

func (*LimitRangeList) Descriptor added in v1.4.0

func (*LimitRangeList) Descriptor() ([]byte, []int)

func (*LimitRangeList) Marshal added in v1.3.0

func (m *LimitRangeList) Marshal() (data []byte, err error)

func (*LimitRangeList) MarshalTo added in v1.3.0

func (m *LimitRangeList) MarshalTo(data []byte) (int, error)

func (*LimitRangeList) ProtoMessage added in v1.3.0

func (*LimitRangeList) ProtoMessage()

func (*LimitRangeList) Reset added in v1.3.0

func (m *LimitRangeList) Reset()

func (*LimitRangeList) Size added in v1.3.0

func (m *LimitRangeList) Size() (n int)

func (*LimitRangeList) String added in v1.3.0

func (this *LimitRangeList) String() string

func (LimitRangeList) SwaggerDoc added in v1.1.0

func (LimitRangeList) SwaggerDoc() map[string]string

func (*LimitRangeList) Unmarshal added in v1.3.0

func (m *LimitRangeList) Unmarshal(data []byte) error

type LimitRangeSpec

type LimitRangeSpec struct {
	// Limits is the list of LimitRangeItem objects that are enforced.
	Limits []LimitRangeItem `json:"limits" protobuf:"bytes,1,rep,name=limits"`
}

LimitRangeSpec defines a min/max usage limit for resources that match on kind.

func (*LimitRangeSpec) CodecDecodeSelf added in v1.2.0

func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*LimitRangeSpec) CodecEncodeSelf added in v1.2.0

func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*LimitRangeSpec) Descriptor added in v1.4.0

func (*LimitRangeSpec) Descriptor() ([]byte, []int)

func (*LimitRangeSpec) Marshal added in v1.3.0

func (m *LimitRangeSpec) Marshal() (data []byte, err error)

func (*LimitRangeSpec) MarshalTo added in v1.3.0

func (m *LimitRangeSpec) MarshalTo(data []byte) (int, error)

func (*LimitRangeSpec) ProtoMessage added in v1.3.0

func (*LimitRangeSpec) ProtoMessage()

func (*LimitRangeSpec) Reset added in v1.3.0

func (m *LimitRangeSpec) Reset()

func (*LimitRangeSpec) Size added in v1.3.0

func (m *LimitRangeSpec) Size() (n int)

func (*LimitRangeSpec) String added in v1.3.0

func (this *LimitRangeSpec) String() string

func (LimitRangeSpec) SwaggerDoc added in v1.1.0

func (LimitRangeSpec) SwaggerDoc() map[string]string

func (*LimitRangeSpec) Unmarshal added in v1.3.0

func (m *LimitRangeSpec) Unmarshal(data []byte) error

type LimitType

type LimitType string

LimitType is a type of object that is limited

const (
	// Limit that applies to all pods in a namespace
	LimitTypePod LimitType = "Pod"
	// Limit that applies to all containers in a namespace
	LimitTypeContainer LimitType = "Container"
	// Limit that applies to all persistent volume claims in a namespace
	LimitTypePersistentVolumeClaim LimitType = "PersistentVolumeClaim"
)

func (*LimitType) CodecDecodeSelf added in v1.2.0

func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder)

func (LimitType) CodecEncodeSelf added in v1.2.0

func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder)

type List

type List struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of objects
	Items []runtime.RawExtension `json:"items" protobuf:"bytes,2,rep,name=items"`
}

List holds a list of objects, which may not be known by the server.

func (*List) CodecDecodeSelf added in v1.2.0

func (x *List) CodecDecodeSelf(d *codec1978.Decoder)

func (*List) CodecEncodeSelf added in v1.2.0

func (x *List) CodecEncodeSelf(e *codec1978.Encoder)

func (*List) Descriptor added in v1.4.0

func (*List) Descriptor() ([]byte, []int)

func (*List) Marshal added in v1.3.0

func (m *List) Marshal() (data []byte, err error)

func (*List) MarshalTo added in v1.3.0

func (m *List) MarshalTo(data []byte) (int, error)

func (*List) ProtoMessage added in v1.3.0

func (*List) ProtoMessage()

func (*List) Reset added in v1.3.0

func (m *List) Reset()

func (*List) Size added in v1.3.0

func (m *List) Size() (n int)

func (*List) String added in v1.3.0

func (this *List) String() string

func (List) SwaggerDoc added in v1.1.0

func (List) SwaggerDoc() map[string]string

func (*List) Unmarshal added in v1.3.0

func (m *List) Unmarshal(data []byte) error

type ListOptions

type ListOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// A selector to restrict the list of returned objects by their labels.
	// Defaults to everything.
	// +optional
	LabelSelector string `json:"labelSelector,omitempty" protobuf:"bytes,1,opt,name=labelSelector"`
	// A selector to restrict the list of returned objects by their fields.
	// Defaults to everything.
	// +optional
	FieldSelector string `json:"fieldSelector,omitempty" protobuf:"bytes,2,opt,name=fieldSelector"`
	// Watch for changes to the described resources and return them as a stream of
	// add, update, and remove notifications. Specify resourceVersion.
	// +optional
	Watch bool `json:"watch,omitempty" protobuf:"varint,3,opt,name=watch"`
	// When specified with a watch call, shows changes that occur after that particular version of a resource.
	// Defaults to changes from the beginning of history.
	// +optional
	ResourceVersion string `json:"resourceVersion,omitempty" protobuf:"bytes,4,opt,name=resourceVersion"`
	// Timeout for the list/watch call.
	// +optional
	TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty" protobuf:"varint,5,opt,name=timeoutSeconds"`
}

ListOptions is the query options to a standard REST list call.

func (*ListOptions) CodecDecodeSelf added in v1.2.0

func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*ListOptions) CodecEncodeSelf added in v1.2.0

func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*ListOptions) Descriptor added in v1.4.0

func (*ListOptions) Descriptor() ([]byte, []int)

func (*ListOptions) Marshal added in v1.3.0

func (m *ListOptions) Marshal() (data []byte, err error)

func (*ListOptions) MarshalTo added in v1.3.0

func (m *ListOptions) MarshalTo(data []byte) (int, error)

func (*ListOptions) ProtoMessage added in v1.3.0

func (*ListOptions) ProtoMessage()

func (*ListOptions) Reset added in v1.3.0

func (m *ListOptions) Reset()

func (*ListOptions) Size added in v1.3.0

func (m *ListOptions) Size() (n int)

func (*ListOptions) String added in v1.3.0

func (this *ListOptions) String() string

func (ListOptions) SwaggerDoc added in v1.1.0

func (ListOptions) SwaggerDoc() map[string]string

func (*ListOptions) Unmarshal added in v1.3.0

func (m *ListOptions) Unmarshal(data []byte) error

type LoadBalancerIngress added in v0.18.0

type LoadBalancerIngress struct {
	// IP is set for load-balancer ingress points that are IP based
	// (typically GCE or OpenStack load-balancers)
	// +optional
	IP string `json:"ip,omitempty" protobuf:"bytes,1,opt,name=ip"`

	// Hostname is set for load-balancer ingress points that are DNS based
	// (typically AWS load-balancers)
	// +optional
	Hostname string `json:"hostname,omitempty" protobuf:"bytes,2,opt,name=hostname"`
}

LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

func (*LoadBalancerIngress) CodecDecodeSelf added in v1.2.0

func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder)

func (*LoadBalancerIngress) CodecEncodeSelf added in v1.2.0

func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder)

func (*LoadBalancerIngress) Descriptor added in v1.4.0

func (*LoadBalancerIngress) Descriptor() ([]byte, []int)

func (*LoadBalancerIngress) Marshal added in v1.3.0

func (m *LoadBalancerIngress) Marshal() (data []byte, err error)

func (*LoadBalancerIngress) MarshalTo added in v1.3.0

func (m *LoadBalancerIngress) MarshalTo(data []byte) (int, error)

func (*LoadBalancerIngress) ProtoMessage added in v1.3.0

func (*LoadBalancerIngress) ProtoMessage()

func (*LoadBalancerIngress) Reset added in v1.3.0

func (m *LoadBalancerIngress) Reset()

func (*LoadBalancerIngress) Size added in v1.3.0

func (m *LoadBalancerIngress) Size() (n int)

func (*LoadBalancerIngress) String added in v1.3.0

func (this *LoadBalancerIngress) String() string

func (LoadBalancerIngress) SwaggerDoc added in v1.1.0

func (LoadBalancerIngress) SwaggerDoc() map[string]string

func (*LoadBalancerIngress) Unmarshal added in v1.3.0

func (m *LoadBalancerIngress) Unmarshal(data []byte) error

type LoadBalancerStatus added in v0.18.0

type LoadBalancerStatus struct {
	// Ingress is a list containing ingress points for the load-balancer.
	// Traffic intended for the service should be sent to these ingress points.
	// +optional
	Ingress []LoadBalancerIngress `json:"ingress,omitempty" protobuf:"bytes,1,rep,name=ingress"`
}

LoadBalancerStatus represents the status of a load-balancer.

func (*LoadBalancerStatus) CodecDecodeSelf added in v1.2.0

func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*LoadBalancerStatus) CodecEncodeSelf added in v1.2.0

func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*LoadBalancerStatus) Descriptor added in v1.4.0

func (*LoadBalancerStatus) Descriptor() ([]byte, []int)

func (*LoadBalancerStatus) Marshal added in v1.3.0

func (m *LoadBalancerStatus) Marshal() (data []byte, err error)

func (*LoadBalancerStatus) MarshalTo added in v1.3.0

func (m *LoadBalancerStatus) MarshalTo(data []byte) (int, error)

func (*LoadBalancerStatus) ProtoMessage added in v1.3.0

func (*LoadBalancerStatus) ProtoMessage()

func (*LoadBalancerStatus) Reset added in v1.3.0

func (m *LoadBalancerStatus) Reset()

func (*LoadBalancerStatus) Size added in v1.3.0

func (m *LoadBalancerStatus) Size() (n int)

func (*LoadBalancerStatus) String added in v1.3.0

func (this *LoadBalancerStatus) String() string

func (LoadBalancerStatus) SwaggerDoc added in v1.1.0

func (LoadBalancerStatus) SwaggerDoc() map[string]string

func (*LoadBalancerStatus) Unmarshal added in v1.3.0

func (m *LoadBalancerStatus) Unmarshal(data []byte) error

type LocalObjectReference added in v0.18.0

type LocalObjectReference struct {
	// Name of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	// TODO: Add other useful fields. apiVersion, kind, uid?
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
}

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

func (*LocalObjectReference) CodecDecodeSelf added in v1.2.0

func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder)

func (*LocalObjectReference) CodecEncodeSelf added in v1.2.0

func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder)

func (*LocalObjectReference) Descriptor added in v1.4.0

func (*LocalObjectReference) Descriptor() ([]byte, []int)

func (*LocalObjectReference) Marshal added in v1.3.0

func (m *LocalObjectReference) Marshal() (data []byte, err error)

func (*LocalObjectReference) MarshalTo added in v1.3.0

func (m *LocalObjectReference) MarshalTo(data []byte) (int, error)

func (*LocalObjectReference) ProtoMessage added in v1.3.0

func (*LocalObjectReference) ProtoMessage()

func (*LocalObjectReference) Reset added in v1.3.0

func (m *LocalObjectReference) Reset()

func (*LocalObjectReference) Size added in v1.3.0

func (m *LocalObjectReference) Size() (n int)

func (*LocalObjectReference) String added in v1.3.0

func (this *LocalObjectReference) String() string

func (LocalObjectReference) SwaggerDoc added in v1.1.0

func (LocalObjectReference) SwaggerDoc() map[string]string

func (*LocalObjectReference) Unmarshal added in v1.3.0

func (m *LocalObjectReference) Unmarshal(data []byte) error

type NFSVolumeSource

type NFSVolumeSource struct {
	// Server is the hostname or IP address of the NFS server.
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	Server string `json:"server" protobuf:"bytes,1,opt,name=server"`

	// Path that is exported by the NFS server.
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	Path string `json:"path" protobuf:"bytes,2,opt,name=path"`

	// ReadOnly here will force
	// the NFS export to be mounted with read-only permissions.
	// Defaults to false.
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
}

Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

func (*NFSVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*NFSVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*NFSVolumeSource) Descriptor added in v1.4.0

func (*NFSVolumeSource) Descriptor() ([]byte, []int)

func (*NFSVolumeSource) Marshal added in v1.3.0

func (m *NFSVolumeSource) Marshal() (data []byte, err error)

func (*NFSVolumeSource) MarshalTo added in v1.3.0

func (m *NFSVolumeSource) MarshalTo(data []byte) (int, error)

func (*NFSVolumeSource) ProtoMessage added in v1.3.0

func (*NFSVolumeSource) ProtoMessage()

func (*NFSVolumeSource) Reset added in v1.3.0

func (m *NFSVolumeSource) Reset()

func (*NFSVolumeSource) Size added in v1.3.0

func (m *NFSVolumeSource) Size() (n int)

func (*NFSVolumeSource) String added in v1.3.0

func (this *NFSVolumeSource) String() string

func (NFSVolumeSource) SwaggerDoc added in v1.1.0

func (NFSVolumeSource) SwaggerDoc() map[string]string

func (*NFSVolumeSource) Unmarshal added in v1.3.0

func (m *NFSVolumeSource) Unmarshal(data []byte) error

type Namespace

type Namespace struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the behavior of the Namespace.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec NamespaceSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status describes the current status of a Namespace.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status NamespaceStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Namespace provides a scope for Names. Use of multiple namespaces is optional.

func (*Namespace) CodecDecodeSelf added in v1.2.0

func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder)

func (*Namespace) CodecEncodeSelf added in v1.2.0

func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder)

func (*Namespace) Descriptor added in v1.4.0

func (*Namespace) Descriptor() ([]byte, []int)

func (*Namespace) Marshal added in v1.3.0

func (m *Namespace) Marshal() (data []byte, err error)

func (*Namespace) MarshalTo added in v1.3.0

func (m *Namespace) MarshalTo(data []byte) (int, error)

func (*Namespace) ProtoMessage added in v1.3.0

func (*Namespace) ProtoMessage()

func (*Namespace) Reset added in v1.3.0

func (m *Namespace) Reset()

func (*Namespace) Size added in v1.3.0

func (m *Namespace) Size() (n int)

func (*Namespace) String added in v1.3.0

func (this *Namespace) String() string

func (Namespace) SwaggerDoc added in v1.1.0

func (Namespace) SwaggerDoc() map[string]string

func (*Namespace) Unmarshal added in v1.3.0

func (m *Namespace) Unmarshal(data []byte) error

type NamespaceList

type NamespaceList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is the list of Namespace objects in the list.
	// More info: http://kubernetes.io/docs/user-guide/namespaces
	Items []Namespace `json:"items" protobuf:"bytes,2,rep,name=items"`
}

NamespaceList is a list of Namespaces.

func (*NamespaceList) CodecDecodeSelf added in v1.2.0

func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder)

func (*NamespaceList) CodecEncodeSelf added in v1.2.0

func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder)

func (*NamespaceList) Descriptor added in v1.4.0

func (*NamespaceList) Descriptor() ([]byte, []int)

func (*NamespaceList) Marshal added in v1.3.0

func (m *NamespaceList) Marshal() (data []byte, err error)

func (*NamespaceList) MarshalTo added in v1.3.0

func (m *NamespaceList) MarshalTo(data []byte) (int, error)

func (*NamespaceList) ProtoMessage added in v1.3.0

func (*NamespaceList) ProtoMessage()

func (*NamespaceList) Reset added in v1.3.0

func (m *NamespaceList) Reset()

func (*NamespaceList) Size added in v1.3.0

func (m *NamespaceList) Size() (n int)

func (*NamespaceList) String added in v1.3.0

func (this *NamespaceList) String() string

func (NamespaceList) SwaggerDoc added in v1.1.0

func (NamespaceList) SwaggerDoc() map[string]string

func (*NamespaceList) Unmarshal added in v1.3.0

func (m *NamespaceList) Unmarshal(data []byte) error

type NamespacePhase

type NamespacePhase string
const (
	// NamespaceActive means the namespace is available for use in the system
	NamespaceActive NamespacePhase = "Active"
	// NamespaceTerminating means the namespace is undergoing graceful termination
	NamespaceTerminating NamespacePhase = "Terminating"
)

These are the valid phases of a namespace.

func (*NamespacePhase) CodecDecodeSelf added in v1.2.0

func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder)

func (NamespacePhase) CodecEncodeSelf added in v1.2.0

func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder)

type NamespaceSpec

type NamespaceSpec struct {
	// Finalizers is an opaque list of values that must be empty to permanently remove object from storage.
	// More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#finalizers
	// +optional
	Finalizers []FinalizerName `json:"finalizers,omitempty" protobuf:"bytes,1,rep,name=finalizers,casttype=FinalizerName"`
}

NamespaceSpec describes the attributes on a Namespace.

func (*NamespaceSpec) CodecDecodeSelf added in v1.2.0

func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*NamespaceSpec) CodecEncodeSelf added in v1.2.0

func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*NamespaceSpec) Descriptor added in v1.4.0

func (*NamespaceSpec) Descriptor() ([]byte, []int)

func (*NamespaceSpec) Marshal added in v1.3.0

func (m *NamespaceSpec) Marshal() (data []byte, err error)

func (*NamespaceSpec) MarshalTo added in v1.3.0

func (m *NamespaceSpec) MarshalTo(data []byte) (int, error)

func (*NamespaceSpec) ProtoMessage added in v1.3.0

func (*NamespaceSpec) ProtoMessage()

func (*NamespaceSpec) Reset added in v1.3.0

func (m *NamespaceSpec) Reset()

func (*NamespaceSpec) Size added in v1.3.0

func (m *NamespaceSpec) Size() (n int)

func (*NamespaceSpec) String added in v1.3.0

func (this *NamespaceSpec) String() string

func (NamespaceSpec) SwaggerDoc added in v1.1.0

func (NamespaceSpec) SwaggerDoc() map[string]string

func (*NamespaceSpec) Unmarshal added in v1.3.0

func (m *NamespaceSpec) Unmarshal(data []byte) error

type NamespaceStatus

type NamespaceStatus struct {
	// Phase is the current lifecycle phase of the namespace.
	// More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#phases
	// +optional
	Phase NamespacePhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=NamespacePhase"`
}

NamespaceStatus is information about the current status of a Namespace.

func (*NamespaceStatus) CodecDecodeSelf added in v1.2.0

func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*NamespaceStatus) CodecEncodeSelf added in v1.2.0

func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*NamespaceStatus) Descriptor added in v1.4.0

func (*NamespaceStatus) Descriptor() ([]byte, []int)

func (*NamespaceStatus) Marshal added in v1.3.0

func (m *NamespaceStatus) Marshal() (data []byte, err error)

func (*NamespaceStatus) MarshalTo added in v1.3.0

func (m *NamespaceStatus) MarshalTo(data []byte) (int, error)

func (*NamespaceStatus) ProtoMessage added in v1.3.0

func (*NamespaceStatus) ProtoMessage()

func (*NamespaceStatus) Reset added in v1.3.0

func (m *NamespaceStatus) Reset()

func (*NamespaceStatus) Size added in v1.3.0

func (m *NamespaceStatus) Size() (n int)

func (*NamespaceStatus) String added in v1.3.0

func (this *NamespaceStatus) String() string

func (NamespaceStatus) SwaggerDoc added in v1.1.0

func (NamespaceStatus) SwaggerDoc() map[string]string

func (*NamespaceStatus) Unmarshal added in v1.3.0

func (m *NamespaceStatus) Unmarshal(data []byte) error

type Node

type Node struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the behavior of a node.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec NodeSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Most recently observed status of the node.
	// Populated by the system.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status NodeStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

func (*Node) CodecDecodeSelf added in v1.2.0

func (x *Node) CodecDecodeSelf(d *codec1978.Decoder)

func (*Node) CodecEncodeSelf added in v1.2.0

func (x *Node) CodecEncodeSelf(e *codec1978.Encoder)

func (*Node) Descriptor added in v1.4.0

func (*Node) Descriptor() ([]byte, []int)

func (*Node) Marshal added in v1.3.0

func (m *Node) Marshal() (data []byte, err error)

func (*Node) MarshalTo added in v1.3.0

func (m *Node) MarshalTo(data []byte) (int, error)

func (*Node) ProtoMessage added in v1.3.0

func (*Node) ProtoMessage()

func (*Node) Reset added in v1.3.0

func (m *Node) Reset()

func (*Node) Size added in v1.3.0

func (m *Node) Size() (n int)

func (*Node) String added in v1.3.0

func (this *Node) String() string

func (Node) SwaggerDoc added in v1.1.0

func (Node) SwaggerDoc() map[string]string

func (*Node) Unmarshal added in v1.3.0

func (m *Node) Unmarshal(data []byte) error

type NodeAddress

type NodeAddress struct {
	// Node address type, one of Hostname, ExternalIP or InternalIP.
	Type NodeAddressType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=NodeAddressType"`
	// The node address.
	Address string `json:"address" protobuf:"bytes,2,opt,name=address"`
}

NodeAddress contains information for the node's address.

func (*NodeAddress) CodecDecodeSelf added in v1.2.0

func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeAddress) CodecEncodeSelf added in v1.2.0

func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeAddress) Descriptor added in v1.4.0

func (*NodeAddress) Descriptor() ([]byte, []int)

func (*NodeAddress) Marshal added in v1.3.0

func (m *NodeAddress) Marshal() (data []byte, err error)

func (*NodeAddress) MarshalTo added in v1.3.0

func (m *NodeAddress) MarshalTo(data []byte) (int, error)

func (*NodeAddress) ProtoMessage added in v1.3.0

func (*NodeAddress) ProtoMessage()

func (*NodeAddress) Reset added in v1.3.0

func (m *NodeAddress) Reset()

func (*NodeAddress) Size added in v1.3.0

func (m *NodeAddress) Size() (n int)

func (*NodeAddress) String added in v1.3.0

func (this *NodeAddress) String() string

func (NodeAddress) SwaggerDoc added in v1.1.0

func (NodeAddress) SwaggerDoc() map[string]string

func (*NodeAddress) Unmarshal added in v1.3.0

func (m *NodeAddress) Unmarshal(data []byte) error

type NodeAddressType

type NodeAddressType string
const (
	// Deprecated: NodeLegacyHostIP will be removed in 1.7.
	NodeLegacyHostIP NodeAddressType = "LegacyHostIP"
	NodeHostName     NodeAddressType = "Hostname"
	NodeExternalIP   NodeAddressType = "ExternalIP"
	NodeInternalIP   NodeAddressType = "InternalIP"
)

These are valid address type of node.

func (*NodeAddressType) CodecDecodeSelf added in v1.2.0

func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder)

func (NodeAddressType) CodecEncodeSelf added in v1.2.0

func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder)

type NodeAffinity added in v1.2.0

type NodeAffinity struct {

	// If the affinity requirements specified by this field are not met at
	// scheduling time, the pod will not be scheduled onto the node.
	// If the affinity requirements specified by this field cease to be met
	// at some point during pod execution (e.g. due to an update), the system
	// may or may not try to eventually evict the pod from its node.
	// +optional
	RequiredDuringSchedulingIgnoredDuringExecution *NodeSelector `` /* 138-byte string literal not displayed */
	// The scheduler will prefer to schedule pods to nodes that satisfy
	// the affinity expressions specified by this field, but it may choose
	// a node that violates one or more of the expressions. The node that is
	// most preferred is the one with the greatest sum of weights, i.e.
	// for each node that meets all of the scheduling requirements (resource
	// request, requiredDuringScheduling affinity expressions, etc.),
	// compute a sum by iterating through the elements of this field and adding
	// "weight" to the sum if the node matches the corresponding matchExpressions; the
	// node(s) with the highest sum are the most preferred.
	// +optional
	PreferredDuringSchedulingIgnoredDuringExecution []PreferredSchedulingTerm `` /* 140-byte string literal not displayed */
}

Node affinity is a group of node affinity scheduling rules.

func (*NodeAffinity) CodecDecodeSelf added in v1.2.0

func (x *NodeAffinity) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeAffinity) CodecEncodeSelf added in v1.2.0

func (x *NodeAffinity) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeAffinity) Descriptor added in v1.4.0

func (*NodeAffinity) Descriptor() ([]byte, []int)

func (*NodeAffinity) Marshal added in v1.3.0

func (m *NodeAffinity) Marshal() (data []byte, err error)

func (*NodeAffinity) MarshalTo added in v1.3.0

func (m *NodeAffinity) MarshalTo(data []byte) (int, error)

func (*NodeAffinity) ProtoMessage added in v1.3.0

func (*NodeAffinity) ProtoMessage()

func (*NodeAffinity) Reset added in v1.3.0

func (m *NodeAffinity) Reset()

func (*NodeAffinity) Size added in v1.3.0

func (m *NodeAffinity) Size() (n int)

func (*NodeAffinity) String added in v1.3.0

func (this *NodeAffinity) String() string

func (NodeAffinity) SwaggerDoc added in v1.2.0

func (NodeAffinity) SwaggerDoc() map[string]string

func (*NodeAffinity) Unmarshal added in v1.3.0

func (m *NodeAffinity) Unmarshal(data []byte) error

type NodeCondition

type NodeCondition struct {
	// Type of node condition.
	Type NodeConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=NodeConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
	// Last time we got an update on a given condition.
	// +optional
	LastHeartbeatTime unversioned.Time `json:"lastHeartbeatTime,omitempty" protobuf:"bytes,3,opt,name=lastHeartbeatTime"`
	// Last time the condition transit from one status to another.
	// +optional
	LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
	// (brief) reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
	// Human readable message indicating details about last transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
}

NodeCondition contains condition information for a node.

func (*NodeCondition) CodecDecodeSelf added in v1.2.0

func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeCondition) CodecEncodeSelf added in v1.2.0

func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeCondition) Descriptor added in v1.4.0

func (*NodeCondition) Descriptor() ([]byte, []int)

func (*NodeCondition) Marshal added in v1.3.0

func (m *NodeCondition) Marshal() (data []byte, err error)

func (*NodeCondition) MarshalTo added in v1.3.0

func (m *NodeCondition) MarshalTo(data []byte) (int, error)

func (*NodeCondition) ProtoMessage added in v1.3.0

func (*NodeCondition) ProtoMessage()

func (*NodeCondition) Reset added in v1.3.0

func (m *NodeCondition) Reset()

func (*NodeCondition) Size added in v1.3.0

func (m *NodeCondition) Size() (n int)

func (*NodeCondition) String added in v1.3.0

func (this *NodeCondition) String() string

func (NodeCondition) SwaggerDoc added in v1.1.0

func (NodeCondition) SwaggerDoc() map[string]string

func (*NodeCondition) Unmarshal added in v1.3.0

func (m *NodeCondition) Unmarshal(data []byte) error

type NodeConditionType

type NodeConditionType string
const (
	// NodeReady means kubelet is healthy and ready to accept pods.
	NodeReady NodeConditionType = "Ready"
	// NodeOutOfDisk means the kubelet will not accept new pods due to insufficient free disk
	// space on the node.
	NodeOutOfDisk NodeConditionType = "OutOfDisk"
	// NodeMemoryPressure means the kubelet is under pressure due to insufficient available memory.
	NodeMemoryPressure NodeConditionType = "MemoryPressure"
	// NodeDiskPressure means the kubelet is under pressure due to insufficient available disk.
	NodeDiskPressure NodeConditionType = "DiskPressure"
	// NodeNetworkUnavailable means that network for the node is not correctly configured.
	NodeNetworkUnavailable NodeConditionType = "NetworkUnavailable"
)

These are valid conditions of node. Currently, we don't have enough information to decide node condition. In the future, we will add more. The proposed set of conditions are: NodeReachable, NodeLive, NodeReady, NodeSchedulable, NodeRunnable.

func (*NodeConditionType) CodecDecodeSelf added in v1.2.0

func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder)

func (NodeConditionType) CodecEncodeSelf added in v1.2.0

func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder)

type NodeDaemonEndpoints added in v1.1.0

type NodeDaemonEndpoints struct {
	// Endpoint on which Kubelet is listening.
	// +optional
	KubeletEndpoint DaemonEndpoint `json:"kubeletEndpoint,omitempty" protobuf:"bytes,1,opt,name=kubeletEndpoint"`
}

NodeDaemonEndpoints lists ports opened by daemons running on the Node.

func (*NodeDaemonEndpoints) CodecDecodeSelf added in v1.2.0

func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeDaemonEndpoints) CodecEncodeSelf added in v1.2.0

func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeDaemonEndpoints) Descriptor added in v1.4.0

func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int)

func (*NodeDaemonEndpoints) Marshal added in v1.3.0

func (m *NodeDaemonEndpoints) Marshal() (data []byte, err error)

func (*NodeDaemonEndpoints) MarshalTo added in v1.3.0

func (m *NodeDaemonEndpoints) MarshalTo(data []byte) (int, error)

func (*NodeDaemonEndpoints) ProtoMessage added in v1.3.0

func (*NodeDaemonEndpoints) ProtoMessage()

func (*NodeDaemonEndpoints) Reset added in v1.3.0

func (m *NodeDaemonEndpoints) Reset()

func (*NodeDaemonEndpoints) Size added in v1.3.0

func (m *NodeDaemonEndpoints) Size() (n int)

func (*NodeDaemonEndpoints) String added in v1.3.0

func (this *NodeDaemonEndpoints) String() string

func (NodeDaemonEndpoints) SwaggerDoc added in v1.1.0

func (NodeDaemonEndpoints) SwaggerDoc() map[string]string

func (*NodeDaemonEndpoints) Unmarshal added in v1.3.0

func (m *NodeDaemonEndpoints) Unmarshal(data []byte) error

type NodeList

type NodeList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of nodes
	Items []Node `json:"items" protobuf:"bytes,2,rep,name=items"`
}

NodeList is the whole list of all Nodes which have been registered with master.

func (*NodeList) CodecDecodeSelf added in v1.2.0

func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeList) CodecEncodeSelf added in v1.2.0

func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeList) Descriptor added in v1.4.0

func (*NodeList) Descriptor() ([]byte, []int)

func (*NodeList) Marshal added in v1.3.0

func (m *NodeList) Marshal() (data []byte, err error)

func (*NodeList) MarshalTo added in v1.3.0

func (m *NodeList) MarshalTo(data []byte) (int, error)

func (*NodeList) ProtoMessage added in v1.3.0

func (*NodeList) ProtoMessage()

func (*NodeList) Reset added in v1.3.0

func (m *NodeList) Reset()

func (*NodeList) Size added in v1.3.0

func (m *NodeList) Size() (n int)

func (*NodeList) String added in v1.3.0

func (this *NodeList) String() string

func (NodeList) SwaggerDoc added in v1.1.0

func (NodeList) SwaggerDoc() map[string]string

func (*NodeList) Unmarshal added in v1.3.0

func (m *NodeList) Unmarshal(data []byte) error

type NodePhase

type NodePhase string
const (
	// NodePending means the node has been created/added by the system, but not configured.
	NodePending NodePhase = "Pending"
	// NodeRunning means the node has been configured and has Kubernetes components running.
	NodeRunning NodePhase = "Running"
	// NodeTerminated means the node has been removed from the cluster.
	NodeTerminated NodePhase = "Terminated"
)

These are the valid phases of node.

func (*NodePhase) CodecDecodeSelf added in v1.2.0

func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder)

func (NodePhase) CodecEncodeSelf added in v1.2.0

func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder)

type NodeProxyOptions added in v1.2.0

type NodeProxyOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Path is the URL path to use for the current proxy request to node.
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
}

NodeProxyOptions is the query options to a Node's proxy call.

func (*NodeProxyOptions) CodecDecodeSelf added in v1.2.0

func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeProxyOptions) CodecEncodeSelf added in v1.2.0

func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeProxyOptions) Descriptor added in v1.4.0

func (*NodeProxyOptions) Descriptor() ([]byte, []int)

func (*NodeProxyOptions) Marshal added in v1.3.0

func (m *NodeProxyOptions) Marshal() (data []byte, err error)

func (*NodeProxyOptions) MarshalTo added in v1.3.0

func (m *NodeProxyOptions) MarshalTo(data []byte) (int, error)

func (*NodeProxyOptions) ProtoMessage added in v1.3.0

func (*NodeProxyOptions) ProtoMessage()

func (*NodeProxyOptions) Reset added in v1.3.0

func (m *NodeProxyOptions) Reset()

func (*NodeProxyOptions) Size added in v1.3.0

func (m *NodeProxyOptions) Size() (n int)

func (*NodeProxyOptions) String added in v1.3.0

func (this *NodeProxyOptions) String() string

func (NodeProxyOptions) SwaggerDoc added in v1.2.0

func (NodeProxyOptions) SwaggerDoc() map[string]string

func (*NodeProxyOptions) Unmarshal added in v1.3.0

func (m *NodeProxyOptions) Unmarshal(data []byte) error

type NodeSelector added in v1.2.0

type NodeSelector struct {
	//Required. A list of node selector terms. The terms are ORed.
	NodeSelectorTerms []NodeSelectorTerm `json:"nodeSelectorTerms" protobuf:"bytes,1,rep,name=nodeSelectorTerms"`
}

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

func (*NodeSelector) CodecDecodeSelf added in v1.2.0

func (x *NodeSelector) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeSelector) CodecEncodeSelf added in v1.2.0

func (x *NodeSelector) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeSelector) Descriptor added in v1.4.0

func (*NodeSelector) Descriptor() ([]byte, []int)

func (*NodeSelector) Marshal added in v1.3.0

func (m *NodeSelector) Marshal() (data []byte, err error)

func (*NodeSelector) MarshalTo added in v1.3.0

func (m *NodeSelector) MarshalTo(data []byte) (int, error)

func (*NodeSelector) ProtoMessage added in v1.3.0

func (*NodeSelector) ProtoMessage()

func (*NodeSelector) Reset added in v1.3.0

func (m *NodeSelector) Reset()

func (*NodeSelector) Size added in v1.3.0

func (m *NodeSelector) Size() (n int)

func (*NodeSelector) String added in v1.3.0

func (this *NodeSelector) String() string

func (NodeSelector) SwaggerDoc added in v1.2.0

func (NodeSelector) SwaggerDoc() map[string]string

func (*NodeSelector) Unmarshal added in v1.3.0

func (m *NodeSelector) Unmarshal(data []byte) error

type NodeSelectorOperator added in v1.2.0

type NodeSelectorOperator string

A node selector operator is the set of operators that can be used in a node selector requirement.

const (
	NodeSelectorOpIn           NodeSelectorOperator = "In"
	NodeSelectorOpNotIn        NodeSelectorOperator = "NotIn"
	NodeSelectorOpExists       NodeSelectorOperator = "Exists"
	NodeSelectorOpDoesNotExist NodeSelectorOperator = "DoesNotExist"
	NodeSelectorOpGt           NodeSelectorOperator = "Gt"
	NodeSelectorOpLt           NodeSelectorOperator = "Lt"
)

func (*NodeSelectorOperator) CodecDecodeSelf added in v1.2.0

func (x *NodeSelectorOperator) CodecDecodeSelf(d *codec1978.Decoder)

func (NodeSelectorOperator) CodecEncodeSelf added in v1.2.0

func (x NodeSelectorOperator) CodecEncodeSelf(e *codec1978.Encoder)

type NodeSelectorRequirement added in v1.2.0

type NodeSelectorRequirement struct {
	// The label key that the selector applies to.
	Key string `json:"key" patchStrategy:"merge" patchMergeKey:"key" protobuf:"bytes,1,opt,name=key"`
	// Represents a key's relationship to a set of values.
	// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
	Operator NodeSelectorOperator `json:"operator" protobuf:"bytes,2,opt,name=operator,casttype=NodeSelectorOperator"`
	// An array of string values. If the operator is In or NotIn,
	// the values array must be non-empty. If the operator is Exists or DoesNotExist,
	// the values array must be empty. If the operator is Gt or Lt, the values
	// array must have a single element, which will be interpreted as an integer.
	// This array is replaced during a strategic merge patch.
	// +optional
	Values []string `json:"values,omitempty" protobuf:"bytes,3,rep,name=values"`
}

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

func (*NodeSelectorRequirement) CodecDecodeSelf added in v1.2.0

func (x *NodeSelectorRequirement) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeSelectorRequirement) CodecEncodeSelf added in v1.2.0

func (x *NodeSelectorRequirement) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeSelectorRequirement) Descriptor added in v1.4.0

func (*NodeSelectorRequirement) Descriptor() ([]byte, []int)

func (*NodeSelectorRequirement) Marshal added in v1.3.0

func (m *NodeSelectorRequirement) Marshal() (data []byte, err error)

func (*NodeSelectorRequirement) MarshalTo added in v1.3.0

func (m *NodeSelectorRequirement) MarshalTo(data []byte) (int, error)

func (*NodeSelectorRequirement) ProtoMessage added in v1.3.0

func (*NodeSelectorRequirement) ProtoMessage()

func (*NodeSelectorRequirement) Reset added in v1.3.0

func (m *NodeSelectorRequirement) Reset()

func (*NodeSelectorRequirement) Size added in v1.3.0

func (m *NodeSelectorRequirement) Size() (n int)

func (*NodeSelectorRequirement) String added in v1.3.0

func (this *NodeSelectorRequirement) String() string

func (NodeSelectorRequirement) SwaggerDoc added in v1.2.0

func (NodeSelectorRequirement) SwaggerDoc() map[string]string

func (*NodeSelectorRequirement) Unmarshal added in v1.3.0

func (m *NodeSelectorRequirement) Unmarshal(data []byte) error

type NodeSelectorTerm added in v1.2.0

type NodeSelectorTerm struct {
	//Required. A list of node selector requirements. The requirements are ANDed.
	MatchExpressions []NodeSelectorRequirement `json:"matchExpressions" protobuf:"bytes,1,rep,name=matchExpressions"`
}

A null or empty node selector term matches no objects.

func (*NodeSelectorTerm) CodecDecodeSelf added in v1.2.0

func (x *NodeSelectorTerm) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeSelectorTerm) CodecEncodeSelf added in v1.2.0

func (x *NodeSelectorTerm) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeSelectorTerm) Descriptor added in v1.4.0

func (*NodeSelectorTerm) Descriptor() ([]byte, []int)

func (*NodeSelectorTerm) Marshal added in v1.3.0

func (m *NodeSelectorTerm) Marshal() (data []byte, err error)

func (*NodeSelectorTerm) MarshalTo added in v1.3.0

func (m *NodeSelectorTerm) MarshalTo(data []byte) (int, error)

func (*NodeSelectorTerm) ProtoMessage added in v1.3.0

func (*NodeSelectorTerm) ProtoMessage()

func (*NodeSelectorTerm) Reset added in v1.3.0

func (m *NodeSelectorTerm) Reset()

func (*NodeSelectorTerm) Size added in v1.3.0

func (m *NodeSelectorTerm) Size() (n int)

func (*NodeSelectorTerm) String added in v1.3.0

func (this *NodeSelectorTerm) String() string

func (NodeSelectorTerm) SwaggerDoc added in v1.2.0

func (NodeSelectorTerm) SwaggerDoc() map[string]string

func (*NodeSelectorTerm) Unmarshal added in v1.3.0

func (m *NodeSelectorTerm) Unmarshal(data []byte) error

type NodeSpec

type NodeSpec struct {
	// PodCIDR represents the pod IP range assigned to the node.
	// +optional
	PodCIDR string `json:"podCIDR,omitempty" protobuf:"bytes,1,opt,name=podCIDR"`
	// External ID of the node assigned by some machine database (e.g. a cloud provider).
	// Deprecated.
	// +optional
	ExternalID string `json:"externalID,omitempty" protobuf:"bytes,2,opt,name=externalID"`
	// ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
	// +optional
	ProviderID string `json:"providerID,omitempty" protobuf:"bytes,3,opt,name=providerID"`
	// Unschedulable controls node schedulability of new pods. By default, node is schedulable.
	// More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration"
	// +optional
	Unschedulable bool `json:"unschedulable,omitempty" protobuf:"varint,4,opt,name=unschedulable"`
}

NodeSpec describes the attributes that a node is created with.

func (*NodeSpec) CodecDecodeSelf added in v1.2.0

func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeSpec) CodecEncodeSelf added in v1.2.0

func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeSpec) Descriptor added in v1.4.0

func (*NodeSpec) Descriptor() ([]byte, []int)

func (*NodeSpec) Marshal added in v1.3.0

func (m *NodeSpec) Marshal() (data []byte, err error)

func (*NodeSpec) MarshalTo added in v1.3.0

func (m *NodeSpec) MarshalTo(data []byte) (int, error)

func (*NodeSpec) ProtoMessage added in v1.3.0

func (*NodeSpec) ProtoMessage()

func (*NodeSpec) Reset added in v1.3.0

func (m *NodeSpec) Reset()

func (*NodeSpec) Size added in v1.3.0

func (m *NodeSpec) Size() (n int)

func (*NodeSpec) String added in v1.3.0

func (this *NodeSpec) String() string

func (NodeSpec) SwaggerDoc added in v1.1.0

func (NodeSpec) SwaggerDoc() map[string]string

func (*NodeSpec) Unmarshal added in v1.3.0

func (m *NodeSpec) Unmarshal(data []byte) error

type NodeStatus

type NodeStatus struct {
	// Capacity represents the total resources of a node.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity for more details.
	// +optional
	Capacity ResourceList `json:"capacity,omitempty" protobuf:"bytes,1,rep,name=capacity,casttype=ResourceList,castkey=ResourceName"`
	// Allocatable represents the resources of a node that are available for scheduling.
	// Defaults to Capacity.
	// +optional
	Allocatable ResourceList `json:"allocatable,omitempty" protobuf:"bytes,2,rep,name=allocatable,casttype=ResourceList,castkey=ResourceName"`
	// NodePhase is the recently observed lifecycle phase of the node.
	// More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-phase
	// The field is never populated, and now is deprecated.
	// +optional
	Phase NodePhase `json:"phase,omitempty" protobuf:"bytes,3,opt,name=phase,casttype=NodePhase"`
	// Conditions is an array of current observed node conditions.
	// More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-condition
	// +optional
	Conditions []NodeCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,4,rep,name=conditions"`
	// List of addresses reachable to the node.
	// Queried from cloud provider, if available.
	// More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-addresses
	// +optional
	Addresses []NodeAddress `json:"addresses,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,5,rep,name=addresses"`
	// Endpoints of daemons running on the Node.
	// +optional
	DaemonEndpoints NodeDaemonEndpoints `json:"daemonEndpoints,omitempty" protobuf:"bytes,6,opt,name=daemonEndpoints"`
	// Set of ids/uuids to uniquely identify the node.
	// More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-info
	// +optional
	NodeInfo NodeSystemInfo `json:"nodeInfo,omitempty" protobuf:"bytes,7,opt,name=nodeInfo"`
	// List of container images on this node
	// +optional
	Images []ContainerImage `json:"images,omitempty" protobuf:"bytes,8,rep,name=images"`
	// List of attachable volumes in use (mounted) by the node.
	// +optional
	VolumesInUse []UniqueVolumeName `json:"volumesInUse,omitempty" protobuf:"bytes,9,rep,name=volumesInUse"`
	// List of volumes that are attached to the node.
	// +optional
	VolumesAttached []AttachedVolume `json:"volumesAttached,omitempty" protobuf:"bytes,10,rep,name=volumesAttached"`
}

NodeStatus is information about the current status of a node.

func (*NodeStatus) CodecDecodeSelf added in v1.2.0

func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeStatus) CodecEncodeSelf added in v1.2.0

func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeStatus) Descriptor added in v1.4.0

func (*NodeStatus) Descriptor() ([]byte, []int)

func (*NodeStatus) Marshal added in v1.3.0

func (m *NodeStatus) Marshal() (data []byte, err error)

func (*NodeStatus) MarshalTo added in v1.3.0

func (m *NodeStatus) MarshalTo(data []byte) (int, error)

func (*NodeStatus) ProtoMessage added in v1.3.0

func (*NodeStatus) ProtoMessage()

func (*NodeStatus) Reset added in v1.3.0

func (m *NodeStatus) Reset()

func (*NodeStatus) Size added in v1.3.0

func (m *NodeStatus) Size() (n int)

func (*NodeStatus) String added in v1.3.0

func (this *NodeStatus) String() string

func (NodeStatus) SwaggerDoc added in v1.1.0

func (NodeStatus) SwaggerDoc() map[string]string

func (*NodeStatus) Unmarshal added in v1.3.0

func (m *NodeStatus) Unmarshal(data []byte) error

type NodeSystemInfo

type NodeSystemInfo struct {
	// MachineID reported by the node. For unique machine identification
	// in the cluster this field is prefered. Learn more from man(5)
	// machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html
	MachineID string `json:"machineID" protobuf:"bytes,1,opt,name=machineID"`
	// SystemUUID reported by the node. For unique machine identification
	// MachineID is prefered. This field is specific to Red Hat hosts
	// https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html
	SystemUUID string `json:"systemUUID" protobuf:"bytes,2,opt,name=systemUUID"`
	// Boot ID reported by the node.
	BootID string `json:"bootID" protobuf:"bytes,3,opt,name=bootID"`
	// Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
	KernelVersion string `json:"kernelVersion" protobuf:"bytes,4,opt,name=kernelVersion"`
	// OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
	OSImage string `json:"osImage" protobuf:"bytes,5,opt,name=osImage"`
	// ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).
	ContainerRuntimeVersion string `json:"containerRuntimeVersion" protobuf:"bytes,6,opt,name=containerRuntimeVersion"`
	// Kubelet Version reported by the node.
	KubeletVersion string `json:"kubeletVersion" protobuf:"bytes,7,opt,name=kubeletVersion"`
	// KubeProxy Version reported by the node.
	KubeProxyVersion string `json:"kubeProxyVersion" protobuf:"bytes,8,opt,name=kubeProxyVersion"`
	// The Operating System reported by the node
	OperatingSystem string `json:"operatingSystem" protobuf:"bytes,9,opt,name=operatingSystem"`
	// The Architecture reported by the node
	Architecture string `json:"architecture" protobuf:"bytes,10,opt,name=architecture"`
}

NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

func (*NodeSystemInfo) CodecDecodeSelf added in v1.2.0

func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder)

func (*NodeSystemInfo) CodecEncodeSelf added in v1.2.0

func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder)

func (*NodeSystemInfo) Descriptor added in v1.4.0

func (*NodeSystemInfo) Descriptor() ([]byte, []int)

func (*NodeSystemInfo) Marshal added in v1.3.0

func (m *NodeSystemInfo) Marshal() (data []byte, err error)

func (*NodeSystemInfo) MarshalTo added in v1.3.0

func (m *NodeSystemInfo) MarshalTo(data []byte) (int, error)

func (*NodeSystemInfo) ProtoMessage added in v1.3.0

func (*NodeSystemInfo) ProtoMessage()

func (*NodeSystemInfo) Reset added in v1.3.0

func (m *NodeSystemInfo) Reset()

func (*NodeSystemInfo) Size added in v1.3.0

func (m *NodeSystemInfo) Size() (n int)

func (*NodeSystemInfo) String added in v1.3.0

func (this *NodeSystemInfo) String() string

func (NodeSystemInfo) SwaggerDoc added in v1.1.0

func (NodeSystemInfo) SwaggerDoc() map[string]string

func (*NodeSystemInfo) Unmarshal added in v1.3.0

func (m *NodeSystemInfo) Unmarshal(data []byte) error

type ObjectFieldSelector

type ObjectFieldSelector struct {
	// Version of the schema the FieldPath is written in terms of, defaults to "v1".
	// +optional
	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,1,opt,name=apiVersion"`
	// Path of the field to select in the specified API version.
	FieldPath string `json:"fieldPath" protobuf:"bytes,2,opt,name=fieldPath"`
}

ObjectFieldSelector selects an APIVersioned field of an object.

func (*ObjectFieldSelector) CodecDecodeSelf added in v1.2.0

func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder)

func (*ObjectFieldSelector) CodecEncodeSelf added in v1.2.0

func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder)

func (*ObjectFieldSelector) Descriptor added in v1.4.0

func (*ObjectFieldSelector) Descriptor() ([]byte, []int)

func (*ObjectFieldSelector) Marshal added in v1.3.0

func (m *ObjectFieldSelector) Marshal() (data []byte, err error)

func (*ObjectFieldSelector) MarshalTo added in v1.3.0

func (m *ObjectFieldSelector) MarshalTo(data []byte) (int, error)

func (*ObjectFieldSelector) ProtoMessage added in v1.3.0

func (*ObjectFieldSelector) ProtoMessage()

func (*ObjectFieldSelector) Reset added in v1.3.0

func (m *ObjectFieldSelector) Reset()

func (*ObjectFieldSelector) Size added in v1.3.0

func (m *ObjectFieldSelector) Size() (n int)

func (*ObjectFieldSelector) String added in v1.3.0

func (this *ObjectFieldSelector) String() string

func (ObjectFieldSelector) SwaggerDoc added in v1.1.0

func (ObjectFieldSelector) SwaggerDoc() map[string]string

func (*ObjectFieldSelector) Unmarshal added in v1.3.0

func (m *ObjectFieldSelector) Unmarshal(data []byte) error

type ObjectMeta

type ObjectMeta struct {
	// Name must be unique within a namespace. Is required when creating resources, although
	// some resources may allow a client to request the generation of an appropriate name
	// automatically. Name is primarily intended for creation idempotence and configuration
	// definition.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`

	// GenerateName is an optional prefix, used by the server, to generate a unique
	// name ONLY IF the Name field has not been provided.
	// If this field is used, the name returned to the client will be different
	// than the name passed. This value will also be combined with a unique suffix.
	// The provided value has the same validation rules as the Name field,
	// and may be truncated by the length of the suffix required to make the value
	// unique on the server.
	//
	// If this field is specified and the generated name exists, the server will
	// NOT return a 409 - instead, it will either return 201 Created or 500 with Reason
	// ServerTimeout indicating a unique name could not be found in the time allotted, and the client
	// should retry (optionally after the time indicated in the Retry-After header).
	//
	// Applied only if Name is not specified.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#idempotency
	// +optional
	GenerateName string `json:"generateName,omitempty" protobuf:"bytes,2,opt,name=generateName"`

	// Namespace defines the space within each name must be unique. An empty namespace is
	// equivalent to the "default" namespace, but "default" is the canonical representation.
	// Not all objects are required to be scoped to a namespace - the value of this field for
	// those objects will be empty.
	//
	// Must be a DNS_LABEL.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/namespaces
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,3,opt,name=namespace"`

	// SelfLink is a URL representing this object.
	// Populated by the system.
	// Read-only.
	// +optional
	SelfLink string `json:"selfLink,omitempty" protobuf:"bytes,4,opt,name=selfLink"`

	// UID is the unique in time and space value for this object. It is typically generated by
	// the server on successful creation of a resource and is not allowed to change on PUT
	// operations.
	//
	// Populated by the system.
	// Read-only.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	// +optional
	UID types.UID `json:"uid,omitempty" protobuf:"bytes,5,opt,name=uid,casttype=k8s.io/kubernetes/pkg/types.UID"`

	// An opaque value that represents the internal version of this object that can
	// be used by clients to determine when objects have changed. May be used for optimistic
	// concurrency, change detection, and the watch operation on a resource or set of resources.
	// Clients must treat these values as opaque and passed unmodified back to the server.
	// They may only be valid for a particular resource or set of resources.
	//
	// Populated by the system.
	// Read-only.
	// Value must be treated as opaque by clients and .
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency
	// +optional
	ResourceVersion string `json:"resourceVersion,omitempty" protobuf:"bytes,6,opt,name=resourceVersion"`

	// A sequence number representing a specific generation of the desired state.
	// Populated by the system. Read-only.
	// +optional
	Generation int64 `json:"generation,omitempty" protobuf:"varint,7,opt,name=generation"`

	// CreationTimestamp is a timestamp representing the server time when this object was
	// created. It is not guaranteed to be set in happens-before order across separate operations.
	// Clients may not set this value. It is represented in RFC3339 form and is in UTC.
	//
	// Populated by the system.
	// Read-only.
	// Null for lists.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	CreationTimestamp unversioned.Time `json:"creationTimestamp,omitempty" protobuf:"bytes,8,opt,name=creationTimestamp"`

	// DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This
	// field is set by the server when a graceful deletion is requested by the user, and is not
	// directly settable by a client. The resource is expected to be deleted (no longer visible
	// from resource lists, and not reachable by name) after the time in this field. Once set,
	// this value may not be unset or be set further into the future, although it may be shortened
	// or the resource may be deleted prior to this time. For example, a user may request that
	// a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination
	// signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard
	// termination signal (SIGKILL) to the container and after cleanup, remove the pod from the
	// API. In the presence of network partitions, this object may still exist after this
	// timestamp, until an administrator or automated process can determine the resource is
	// fully terminated.
	// If not set, graceful deletion of the object has not been requested.
	//
	// Populated by the system when a graceful deletion is requested.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	DeletionTimestamp *unversioned.Time `json:"deletionTimestamp,omitempty" protobuf:"bytes,9,opt,name=deletionTimestamp"`

	// Number of seconds allowed for this object to gracefully terminate before
	// it will be removed from the system. Only set when deletionTimestamp is also set.
	// May only be shortened.
	// Read-only.
	// +optional
	DeletionGracePeriodSeconds *int64 `json:"deletionGracePeriodSeconds,omitempty" protobuf:"varint,10,opt,name=deletionGracePeriodSeconds"`

	// Map of string keys and values that can be used to organize and categorize
	// (scope and select) objects. May match selectors of replication controllers
	// and services.
	// More info: http://kubernetes.io/docs/user-guide/labels
	// +optional
	Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,11,rep,name=labels"`

	// Annotations is an unstructured key value map stored with a resource that may be
	// set by external tools to store and retrieve arbitrary metadata. They are not
	// queryable and should be preserved when modifying objects.
	// More info: http://kubernetes.io/docs/user-guide/annotations
	// +optional
	Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,12,rep,name=annotations"`

	// List of objects depended by this object. If ALL objects in the list have
	// been deleted, this object will be garbage collected. If this object is managed by a controller,
	// then an entry in this list will point to this controller, with the controller field set to true.
	// There cannot be more than one managing controller.
	// +optional
	OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" patchStrategy:"merge" patchMergeKey:"uid" protobuf:"bytes,13,rep,name=ownerReferences"`

	// Must be empty before the object is deleted from the registry. Each entry
	// is an identifier for the responsible component that will remove the entry
	// from the list. If the deletionTimestamp of the object is non-nil, entries
	// in this list can only be removed.
	// +optional
	Finalizers []string `json:"finalizers,omitempty" patchStrategy:"merge" protobuf:"bytes,14,rep,name=finalizers"`

	// The name of the cluster which the object belongs to.
	// This is used to distinguish resources with same name and namespace in different clusters.
	// This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
	// +optional
	ClusterName string `json:"clusterName,omitempty" protobuf:"bytes,15,opt,name=clusterName"`
}

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

func (*ObjectMeta) CodecDecodeSelf added in v1.2.0

func (x *ObjectMeta) CodecDecodeSelf(d *codec1978.Decoder)

func (*ObjectMeta) CodecEncodeSelf added in v1.2.0

func (x *ObjectMeta) CodecEncodeSelf(e *codec1978.Encoder)

func (*ObjectMeta) Descriptor added in v1.4.0

func (*ObjectMeta) Descriptor() ([]byte, []int)

func (*ObjectMeta) GetAnnotations added in v1.3.0

func (meta *ObjectMeta) GetAnnotations() map[string]string

func (*ObjectMeta) GetClusterName added in v1.4.0

func (meta *ObjectMeta) GetClusterName() string

func (*ObjectMeta) GetCreationTimestamp added in v1.3.0

func (meta *ObjectMeta) GetCreationTimestamp() unversioned.Time

func (*ObjectMeta) GetDeletionTimestamp added in v1.3.0

func (meta *ObjectMeta) GetDeletionTimestamp() *unversioned.Time

func (*ObjectMeta) GetFinalizers added in v1.3.0

func (meta *ObjectMeta) GetFinalizers() []string

func (*ObjectMeta) GetGenerateName added in v1.3.0

func (meta *ObjectMeta) GetGenerateName() string

func (*ObjectMeta) GetLabels added in v1.3.0

func (meta *ObjectMeta) GetLabels() map[string]string

func (*ObjectMeta) GetName added in v1.3.0

func (meta *ObjectMeta) GetName() string

func (*ObjectMeta) GetNamespace added in v1.3.0

func (meta *ObjectMeta) GetNamespace() string

Namespace implements meta.Object for any object with an ObjectMeta typed field. Allows fast, direct access to metadata fields for API objects.

func (*ObjectMeta) GetObjectMeta added in v1.3.0

func (obj *ObjectMeta) GetObjectMeta() meta.Object

func (*ObjectMeta) GetOwnerReferences added in v1.3.0

func (meta *ObjectMeta) GetOwnerReferences() []metatypes.OwnerReference

func (*ObjectMeta) GetResourceVersion added in v1.3.0

func (meta *ObjectMeta) GetResourceVersion() string
func (meta *ObjectMeta) GetSelfLink() string

func (*ObjectMeta) GetUID added in v1.3.0

func (meta *ObjectMeta) GetUID() types.UID

func (*ObjectMeta) Marshal added in v1.3.0

func (m *ObjectMeta) Marshal() (data []byte, err error)

func (*ObjectMeta) MarshalTo added in v1.3.0

func (m *ObjectMeta) MarshalTo(data []byte) (int, error)

func (*ObjectMeta) ProtoMessage added in v1.3.0

func (*ObjectMeta) ProtoMessage()

func (*ObjectMeta) Reset added in v1.3.0

func (m *ObjectMeta) Reset()

func (*ObjectMeta) SetAnnotations added in v1.3.0

func (meta *ObjectMeta) SetAnnotations(annotations map[string]string)

func (*ObjectMeta) SetClusterName added in v1.4.0

func (meta *ObjectMeta) SetClusterName(clusterName string)

func (*ObjectMeta) SetCreationTimestamp added in v1.3.0

func (meta *ObjectMeta) SetCreationTimestamp(creationTimestamp unversioned.Time)

func (*ObjectMeta) SetDeletionTimestamp added in v1.3.0

func (meta *ObjectMeta) SetDeletionTimestamp(deletionTimestamp *unversioned.Time)

func (*ObjectMeta) SetFinalizers added in v1.3.0

func (meta *ObjectMeta) SetFinalizers(finalizers []string)

func (*ObjectMeta) SetGenerateName added in v1.3.0

func (meta *ObjectMeta) SetGenerateName(generateName string)

func (*ObjectMeta) SetLabels added in v1.3.0

func (meta *ObjectMeta) SetLabels(labels map[string]string)

func (*ObjectMeta) SetName added in v1.3.0

func (meta *ObjectMeta) SetName(name string)

func (*ObjectMeta) SetNamespace added in v1.3.0

func (meta *ObjectMeta) SetNamespace(namespace string)

func (*ObjectMeta) SetOwnerReferences added in v1.3.0

func (meta *ObjectMeta) SetOwnerReferences(references []metatypes.OwnerReference)

func (*ObjectMeta) SetResourceVersion added in v1.3.0

func (meta *ObjectMeta) SetResourceVersion(version string)
func (meta *ObjectMeta) SetSelfLink(selfLink string)

func (*ObjectMeta) SetUID added in v1.3.0

func (meta *ObjectMeta) SetUID(uid types.UID)

func (*ObjectMeta) Size added in v1.3.0

func (m *ObjectMeta) Size() (n int)

func (*ObjectMeta) String added in v1.3.0

func (this *ObjectMeta) String() string

func (ObjectMeta) SwaggerDoc added in v1.1.0

func (ObjectMeta) SwaggerDoc() map[string]string

func (*ObjectMeta) Unmarshal added in v1.3.0

func (m *ObjectMeta) Unmarshal(data []byte) error

type ObjectReference

type ObjectReference struct {
	// Kind of the referent.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"`
	// Namespace of the referent.
	// More info: http://kubernetes.io/docs/user-guide/namespaces
	// +optional
	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`
	// Name of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"`
	// UID of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	// +optional
	UID types.UID `json:"uid,omitempty" protobuf:"bytes,4,opt,name=uid,casttype=k8s.io/kubernetes/pkg/types.UID"`
	// API version of the referent.
	// +optional
	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,5,opt,name=apiVersion"`
	// Specific resourceVersion to which this reference is made, if any.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency
	// +optional
	ResourceVersion string `json:"resourceVersion,omitempty" protobuf:"bytes,6,opt,name=resourceVersion"`

	// If referring to a piece of an object instead of an entire object, this string
	// should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].
	// For example, if the object reference is to a container within a pod, this would take on a value like:
	// "spec.containers{name}" (where "name" refers to the name of the container that triggered
	// the event) or if no container name is specified "spec.containers[2]" (container with
	// index 2 in this pod). This syntax is chosen only to have some well-defined way of
	// referencing a part of an object.
	// TODO: this design is not final and this field is subject to change in the future.
	// +optional
	FieldPath string `json:"fieldPath,omitempty" protobuf:"bytes,7,opt,name=fieldPath"`
}

ObjectReference contains enough information to let you inspect or modify the referred object.

func (*ObjectReference) CodecDecodeSelf added in v1.2.0

func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder)

func (*ObjectReference) CodecEncodeSelf added in v1.2.0

func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder)

func (*ObjectReference) Descriptor added in v1.4.0

func (*ObjectReference) Descriptor() ([]byte, []int)

func (*ObjectReference) Marshal added in v1.3.0

func (m *ObjectReference) Marshal() (data []byte, err error)

func (*ObjectReference) MarshalTo added in v1.3.0

func (m *ObjectReference) MarshalTo(data []byte) (int, error)

func (*ObjectReference) ProtoMessage added in v1.3.0

func (*ObjectReference) ProtoMessage()

func (*ObjectReference) Reset added in v1.3.0

func (m *ObjectReference) Reset()

func (*ObjectReference) Size added in v1.3.0

func (m *ObjectReference) Size() (n int)

func (*ObjectReference) String added in v1.3.0

func (this *ObjectReference) String() string

func (ObjectReference) SwaggerDoc added in v1.1.0

func (ObjectReference) SwaggerDoc() map[string]string

func (*ObjectReference) Unmarshal added in v1.3.0

func (m *ObjectReference) Unmarshal(data []byte) error

type OwnerReference added in v1.3.0

type OwnerReference struct {
	// API version of the referent.
	APIVersion string `json:"apiVersion" protobuf:"bytes,5,opt,name=apiVersion"`
	// Kind of the referent.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	Kind string `json:"kind" protobuf:"bytes,1,opt,name=kind"`
	// Name of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
	// UID of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	UID types.UID `json:"uid" protobuf:"bytes,4,opt,name=uid,casttype=k8s.io/kubernetes/pkg/types.UID"`
	// If true, this reference points to the managing controller.
	// +optional
	Controller *bool `json:"controller,omitempty" protobuf:"varint,6,opt,name=controller"`
}

OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.

func (*OwnerReference) CodecDecodeSelf added in v1.3.0

func (x *OwnerReference) CodecDecodeSelf(d *codec1978.Decoder)

func (*OwnerReference) CodecEncodeSelf added in v1.3.0

func (x *OwnerReference) CodecEncodeSelf(e *codec1978.Encoder)

func (*OwnerReference) Descriptor added in v1.4.0

func (*OwnerReference) Descriptor() ([]byte, []int)

func (*OwnerReference) Marshal added in v1.3.0

func (m *OwnerReference) Marshal() (data []byte, err error)

func (*OwnerReference) MarshalTo added in v1.3.0

func (m *OwnerReference) MarshalTo(data []byte) (int, error)

func (*OwnerReference) ProtoMessage added in v1.3.0

func (*OwnerReference) ProtoMessage()

func (*OwnerReference) Reset added in v1.3.0

func (m *OwnerReference) Reset()

func (*OwnerReference) Size added in v1.3.0

func (m *OwnerReference) Size() (n int)

func (*OwnerReference) String added in v1.3.0

func (this *OwnerReference) String() string

func (OwnerReference) SwaggerDoc added in v1.3.0

func (OwnerReference) SwaggerDoc() map[string]string

func (*OwnerReference) Unmarshal added in v1.3.0

func (m *OwnerReference) Unmarshal(data []byte) error

type PersistentVolume

type PersistentVolume struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines a specification of a persistent volume owned by the cluster.
	// Provisioned by an administrator.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes
	// +optional
	Spec PersistentVolumeSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status represents the current information/status for the persistent volume.
	// Populated by the system.
	// Read-only.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes
	// +optional
	Status PersistentVolumeStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: http://kubernetes.io/docs/user-guide/persistent-volumes

func (*PersistentVolume) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolume) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolume) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolume) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolume) Descriptor added in v1.4.0

func (*PersistentVolume) Descriptor() ([]byte, []int)

func (*PersistentVolume) Marshal added in v1.3.0

func (m *PersistentVolume) Marshal() (data []byte, err error)

func (*PersistentVolume) MarshalTo added in v1.3.0

func (m *PersistentVolume) MarshalTo(data []byte) (int, error)

func (*PersistentVolume) ProtoMessage added in v1.3.0

func (*PersistentVolume) ProtoMessage()

func (*PersistentVolume) Reset added in v1.3.0

func (m *PersistentVolume) Reset()

func (*PersistentVolume) Size added in v1.3.0

func (m *PersistentVolume) Size() (n int)

func (*PersistentVolume) String added in v1.3.0

func (this *PersistentVolume) String() string

func (PersistentVolume) SwaggerDoc added in v1.1.0

func (PersistentVolume) SwaggerDoc() map[string]string

func (*PersistentVolume) Unmarshal added in v1.3.0

func (m *PersistentVolume) Unmarshal(data []byte) error

type PersistentVolumeAccessMode added in v0.18.0

type PersistentVolumeAccessMode string
const (
	// can be mounted read/write mode to exactly 1 host
	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
	// can be mounted in read-only mode to many hosts
	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
	// can be mounted in read/write mode to many hosts
	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
)

func (*PersistentVolumeAccessMode) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeAccessMode) CodecDecodeSelf(d *codec1978.Decoder)

func (PersistentVolumeAccessMode) CodecEncodeSelf added in v1.2.0

func (x PersistentVolumeAccessMode) CodecEncodeSelf(e *codec1978.Encoder)

type PersistentVolumeClaim

type PersistentVolumeClaim struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the desired characteristics of a volume requested by a pod author.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	// +optional
	Spec PersistentVolumeClaimSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status represents the current information/status of a persistent volume claim.
	// Read-only.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	// +optional
	Status PersistentVolumeClaimStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

PersistentVolumeClaim is a user's request for and claim to a persistent volume

func (*PersistentVolumeClaim) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaim) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeClaim) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeClaim) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeClaim) Descriptor added in v1.4.0

func (*PersistentVolumeClaim) Descriptor() ([]byte, []int)

func (*PersistentVolumeClaim) Marshal added in v1.3.0

func (m *PersistentVolumeClaim) Marshal() (data []byte, err error)

func (*PersistentVolumeClaim) MarshalTo added in v1.3.0

func (m *PersistentVolumeClaim) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeClaim) ProtoMessage added in v1.3.0

func (*PersistentVolumeClaim) ProtoMessage()

func (*PersistentVolumeClaim) Reset added in v1.3.0

func (m *PersistentVolumeClaim) Reset()

func (*PersistentVolumeClaim) Size added in v1.3.0

func (m *PersistentVolumeClaim) Size() (n int)

func (*PersistentVolumeClaim) String added in v1.3.0

func (this *PersistentVolumeClaim) String() string

func (PersistentVolumeClaim) SwaggerDoc added in v1.1.0

func (PersistentVolumeClaim) SwaggerDoc() map[string]string

func (*PersistentVolumeClaim) Unmarshal added in v1.3.0

func (m *PersistentVolumeClaim) Unmarshal(data []byte) error

type PersistentVolumeClaimList

type PersistentVolumeClaimList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// A list of persistent volume claims.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	Items []PersistentVolumeClaim `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

func (*PersistentVolumeClaimList) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaimList) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeClaimList) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeClaimList) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeClaimList) Descriptor added in v1.4.0

func (*PersistentVolumeClaimList) Descriptor() ([]byte, []int)

func (*PersistentVolumeClaimList) Marshal added in v1.3.0

func (m *PersistentVolumeClaimList) Marshal() (data []byte, err error)

func (*PersistentVolumeClaimList) MarshalTo added in v1.3.0

func (m *PersistentVolumeClaimList) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeClaimList) ProtoMessage added in v1.3.0

func (*PersistentVolumeClaimList) ProtoMessage()

func (*PersistentVolumeClaimList) Reset added in v1.3.0

func (m *PersistentVolumeClaimList) Reset()

func (*PersistentVolumeClaimList) Size added in v1.3.0

func (m *PersistentVolumeClaimList) Size() (n int)

func (*PersistentVolumeClaimList) String added in v1.3.0

func (this *PersistentVolumeClaimList) String() string

func (PersistentVolumeClaimList) SwaggerDoc added in v1.1.0

func (PersistentVolumeClaimList) SwaggerDoc() map[string]string

func (*PersistentVolumeClaimList) Unmarshal added in v1.3.0

func (m *PersistentVolumeClaimList) Unmarshal(data []byte) error

type PersistentVolumeClaimPhase

type PersistentVolumeClaimPhase string
const (
	// used for PersistentVolumeClaims that are not yet bound
	ClaimPending PersistentVolumeClaimPhase = "Pending"
	// used for PersistentVolumeClaims that are bound
	ClaimBound PersistentVolumeClaimPhase = "Bound"
	// used for PersistentVolumeClaims that lost their underlying
	// PersistentVolume. The claim was bound to a PersistentVolume and this
	// volume does not exist any longer and all data on it was lost.
	ClaimLost PersistentVolumeClaimPhase = "Lost"
)

func (*PersistentVolumeClaimPhase) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaimPhase) CodecDecodeSelf(d *codec1978.Decoder)

func (PersistentVolumeClaimPhase) CodecEncodeSelf added in v1.2.0

func (x PersistentVolumeClaimPhase) CodecEncodeSelf(e *codec1978.Encoder)

type PersistentVolumeClaimSpec

type PersistentVolumeClaimSpec struct {
	// AccessModes contains the desired access modes the volume should have.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1
	// +optional
	AccessModes []PersistentVolumeAccessMode `json:"accessModes,omitempty" protobuf:"bytes,1,rep,name=accessModes,casttype=PersistentVolumeAccessMode"`
	// A label query over volumes to consider for binding.
	// +optional
	Selector *unversioned.LabelSelector `json:"selector,omitempty" protobuf:"bytes,4,opt,name=selector"`
	// Resources represents the minimum resources the volume should have.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources
	// +optional
	Resources ResourceRequirements `json:"resources,omitempty" protobuf:"bytes,2,opt,name=resources"`
	// VolumeName is the binding reference to the PersistentVolume backing this claim.
	// +optional
	VolumeName string `json:"volumeName,omitempty" protobuf:"bytes,3,opt,name=volumeName"`
}

PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

func (*PersistentVolumeClaimSpec) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaimSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeClaimSpec) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeClaimSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeClaimSpec) Descriptor added in v1.4.0

func (*PersistentVolumeClaimSpec) Descriptor() ([]byte, []int)

func (*PersistentVolumeClaimSpec) Marshal added in v1.3.0

func (m *PersistentVolumeClaimSpec) Marshal() (data []byte, err error)

func (*PersistentVolumeClaimSpec) MarshalTo added in v1.3.0

func (m *PersistentVolumeClaimSpec) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeClaimSpec) ProtoMessage added in v1.3.0

func (*PersistentVolumeClaimSpec) ProtoMessage()

func (*PersistentVolumeClaimSpec) Reset added in v1.3.0

func (m *PersistentVolumeClaimSpec) Reset()

func (*PersistentVolumeClaimSpec) Size added in v1.3.0

func (m *PersistentVolumeClaimSpec) Size() (n int)

func (*PersistentVolumeClaimSpec) String added in v1.3.0

func (this *PersistentVolumeClaimSpec) String() string

func (PersistentVolumeClaimSpec) SwaggerDoc added in v1.1.0

func (PersistentVolumeClaimSpec) SwaggerDoc() map[string]string

func (*PersistentVolumeClaimSpec) Unmarshal added in v1.3.0

func (m *PersistentVolumeClaimSpec) Unmarshal(data []byte) error

type PersistentVolumeClaimStatus

type PersistentVolumeClaimStatus struct {
	// Phase represents the current phase of PersistentVolumeClaim.
	// +optional
	Phase PersistentVolumeClaimPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PersistentVolumeClaimPhase"`
	// AccessModes contains the actual access modes the volume backing the PVC has.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1
	// +optional
	AccessModes []PersistentVolumeAccessMode `json:"accessModes,omitempty" protobuf:"bytes,2,rep,name=accessModes,casttype=PersistentVolumeAccessMode"`
	// Represents the actual resources of the underlying volume.
	// +optional
	Capacity ResourceList `json:"capacity,omitempty" protobuf:"bytes,3,rep,name=capacity,casttype=ResourceList,castkey=ResourceName"`
}

PersistentVolumeClaimStatus is the current status of a persistent volume claim.

func (*PersistentVolumeClaimStatus) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaimStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeClaimStatus) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeClaimStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeClaimStatus) Descriptor added in v1.4.0

func (*PersistentVolumeClaimStatus) Descriptor() ([]byte, []int)

func (*PersistentVolumeClaimStatus) Marshal added in v1.3.0

func (m *PersistentVolumeClaimStatus) Marshal() (data []byte, err error)

func (*PersistentVolumeClaimStatus) MarshalTo added in v1.3.0

func (m *PersistentVolumeClaimStatus) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeClaimStatus) ProtoMessage added in v1.3.0

func (*PersistentVolumeClaimStatus) ProtoMessage()

func (*PersistentVolumeClaimStatus) Reset added in v1.3.0

func (m *PersistentVolumeClaimStatus) Reset()

func (*PersistentVolumeClaimStatus) Size added in v1.3.0

func (m *PersistentVolumeClaimStatus) Size() (n int)

func (*PersistentVolumeClaimStatus) String added in v1.3.0

func (this *PersistentVolumeClaimStatus) String() string

func (PersistentVolumeClaimStatus) SwaggerDoc added in v1.1.0

func (PersistentVolumeClaimStatus) SwaggerDoc() map[string]string

func (*PersistentVolumeClaimStatus) Unmarshal added in v1.3.0

func (m *PersistentVolumeClaimStatus) Unmarshal(data []byte) error

type PersistentVolumeClaimVolumeSource

type PersistentVolumeClaimVolumeSource struct {
	// ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	ClaimName string `json:"claimName" protobuf:"bytes,1,opt,name=claimName"`
	// Will force the ReadOnly setting in VolumeMounts.
	// Default false.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,2,opt,name=readOnly"`
}

PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).

func (*PersistentVolumeClaimVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeClaimVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeClaimVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeClaimVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeClaimVolumeSource) Descriptor added in v1.4.0

func (*PersistentVolumeClaimVolumeSource) Descriptor() ([]byte, []int)

func (*PersistentVolumeClaimVolumeSource) Marshal added in v1.3.0

func (m *PersistentVolumeClaimVolumeSource) Marshal() (data []byte, err error)

func (*PersistentVolumeClaimVolumeSource) MarshalTo added in v1.3.0

func (m *PersistentVolumeClaimVolumeSource) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeClaimVolumeSource) ProtoMessage added in v1.3.0

func (*PersistentVolumeClaimVolumeSource) ProtoMessage()

func (*PersistentVolumeClaimVolumeSource) Reset added in v1.3.0

func (*PersistentVolumeClaimVolumeSource) Size added in v1.3.0

func (m *PersistentVolumeClaimVolumeSource) Size() (n int)

func (*PersistentVolumeClaimVolumeSource) String added in v1.3.0

func (PersistentVolumeClaimVolumeSource) SwaggerDoc added in v1.1.0

func (*PersistentVolumeClaimVolumeSource) Unmarshal added in v1.3.0

func (m *PersistentVolumeClaimVolumeSource) Unmarshal(data []byte) error

type PersistentVolumeList

type PersistentVolumeList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// List of persistent volumes.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes
	Items []PersistentVolume `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PersistentVolumeList is a list of PersistentVolume items.

func (*PersistentVolumeList) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeList) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeList) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeList) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeList) Descriptor added in v1.4.0

func (*PersistentVolumeList) Descriptor() ([]byte, []int)

func (*PersistentVolumeList) Marshal added in v1.3.0

func (m *PersistentVolumeList) Marshal() (data []byte, err error)

func (*PersistentVolumeList) MarshalTo added in v1.3.0

func (m *PersistentVolumeList) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeList) ProtoMessage added in v1.3.0

func (*PersistentVolumeList) ProtoMessage()

func (*PersistentVolumeList) Reset added in v1.3.0

func (m *PersistentVolumeList) Reset()

func (*PersistentVolumeList) Size added in v1.3.0

func (m *PersistentVolumeList) Size() (n int)

func (*PersistentVolumeList) String added in v1.3.0

func (this *PersistentVolumeList) String() string

func (PersistentVolumeList) SwaggerDoc added in v1.1.0

func (PersistentVolumeList) SwaggerDoc() map[string]string

func (*PersistentVolumeList) Unmarshal added in v1.3.0

func (m *PersistentVolumeList) Unmarshal(data []byte) error

type PersistentVolumePhase

type PersistentVolumePhase string
const (
	// used for PersistentVolumes that are not available
	VolumePending PersistentVolumePhase = "Pending"
	// used for PersistentVolumes that are not yet bound
	// Available volumes are held by the binder and matched to PersistentVolumeClaims
	VolumeAvailable PersistentVolumePhase = "Available"
	// used for PersistentVolumes that are bound
	VolumeBound PersistentVolumePhase = "Bound"
	// used for PersistentVolumes where the bound PersistentVolumeClaim was deleted
	// released volumes must be recycled before becoming available again
	// this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource
	VolumeReleased PersistentVolumePhase = "Released"
	// used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim
	VolumeFailed PersistentVolumePhase = "Failed"
)

func (*PersistentVolumePhase) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumePhase) CodecDecodeSelf(d *codec1978.Decoder)

func (PersistentVolumePhase) CodecEncodeSelf added in v1.2.0

func (x PersistentVolumePhase) CodecEncodeSelf(e *codec1978.Encoder)

type PersistentVolumeReclaimPolicy added in v0.19.0

type PersistentVolumeReclaimPolicy string

PersistentVolumeReclaimPolicy describes a policy for end-of-life maintenance of persistent volumes.

const (
	// PersistentVolumeReclaimRecycle means the volume will be recycled back into the pool of unbound persistent volumes on release from its claim.
	// The volume plugin must support Recycling.
	PersistentVolumeReclaimRecycle PersistentVolumeReclaimPolicy = "Recycle"
	// PersistentVolumeReclaimDelete means the volume will be deleted from Kubernetes on release from its claim.
	// The volume plugin must support Deletion.
	PersistentVolumeReclaimDelete PersistentVolumeReclaimPolicy = "Delete"
	// PersistentVolumeReclaimRetain means the volume will be left in its current phase (Released) for manual reclamation by the administrator.
	// The default policy is Retain.
	PersistentVolumeReclaimRetain PersistentVolumeReclaimPolicy = "Retain"
)

func (*PersistentVolumeReclaimPolicy) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeReclaimPolicy) CodecDecodeSelf(d *codec1978.Decoder)

func (PersistentVolumeReclaimPolicy) CodecEncodeSelf added in v1.2.0

func (x PersistentVolumeReclaimPolicy) CodecEncodeSelf(e *codec1978.Encoder)

type PersistentVolumeSource

type PersistentVolumeSource struct {
	// GCEPersistentDisk represents a GCE Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	// +optional
	GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" protobuf:"bytes,1,opt,name=gcePersistentDisk"`
	// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod.
	// More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
	// +optional
	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty" protobuf:"bytes,2,opt,name=awsElasticBlockStore"`
	// HostPath represents a directory on the host.
	// Provisioned by a developer or tester.
	// This is useful for single-node development and testing only!
	// On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
	// More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
	// +optional
	HostPath *HostPathVolumeSource `json:"hostPath,omitempty" protobuf:"bytes,3,opt,name=hostPath"`
	// Glusterfs represents a Glusterfs volume that is attached to a host and
	// exposed to the pod. Provisioned by an admin.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
	// +optional
	Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" protobuf:"bytes,4,opt,name=glusterfs"`
	// NFS represents an NFS mount on the host. Provisioned by an admin.
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	// +optional
	NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,5,opt,name=nfs"`
	// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
	// +optional
	RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,6,opt,name=rbd"`
	// ISCSI represents an ISCSI Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
	// +optional
	ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,7,opt,name=iscsi"`
	// Cinder represents a cinder volume attached and mounted on kubelets host machine
	// More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// +optional
	Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,8,opt,name=cinder"`
	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	// +optional
	CephFS *CephFSVolumeSource `json:"cephfs,omitempty" protobuf:"bytes,9,opt,name=cephfs"`
	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	// +optional
	FC *FCVolumeSource `json:"fc,omitempty" protobuf:"bytes,10,opt,name=fc"`
	// Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running
	// +optional
	Flocker *FlockerVolumeSource `json:"flocker,omitempty" protobuf:"bytes,11,opt,name=flocker"`
	// FlexVolume represents a generic volume resource that is
	// provisioned/attached using an exec based plugin. This is an
	// alpha feature and may change in future.
	// +optional
	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	// +optional
	AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,13,opt,name=azureFile"`
	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	// +optional
	VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,14,opt,name=vsphereVolume"`
	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	// +optional
	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,15,opt,name=quobyte"`
	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	// +optional
	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,16,opt,name=azureDisk"`
	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" protobuf:"bytes,17,opt,name=photonPersistentDisk"`
}

PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs. Exactly one of its members must be set.

func (*PersistentVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeSource) Descriptor added in v1.4.0

func (*PersistentVolumeSource) Descriptor() ([]byte, []int)

func (*PersistentVolumeSource) Marshal added in v1.3.0

func (m *PersistentVolumeSource) Marshal() (data []byte, err error)

func (*PersistentVolumeSource) MarshalTo added in v1.3.0

func (m *PersistentVolumeSource) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeSource) ProtoMessage added in v1.3.0

func (*PersistentVolumeSource) ProtoMessage()

func (*PersistentVolumeSource) Reset added in v1.3.0

func (m *PersistentVolumeSource) Reset()

func (*PersistentVolumeSource) Size added in v1.3.0

func (m *PersistentVolumeSource) Size() (n int)

func (*PersistentVolumeSource) String added in v1.3.0

func (this *PersistentVolumeSource) String() string

func (PersistentVolumeSource) SwaggerDoc added in v1.1.0

func (PersistentVolumeSource) SwaggerDoc() map[string]string

func (*PersistentVolumeSource) Unmarshal added in v1.3.0

func (m *PersistentVolumeSource) Unmarshal(data []byte) error

type PersistentVolumeSpec

type PersistentVolumeSpec struct {
	// A description of the persistent volume's resources and capacity.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity
	// +optional
	Capacity ResourceList `json:"capacity,omitempty" protobuf:"bytes,1,rep,name=capacity,casttype=ResourceList,castkey=ResourceName"`
	// The actual volume backing the persistent volume.
	PersistentVolumeSource `json:",inline" protobuf:"bytes,2,opt,name=persistentVolumeSource"`
	// AccessModes contains all ways the volume can be mounted.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes
	// +optional
	AccessModes []PersistentVolumeAccessMode `json:"accessModes,omitempty" protobuf:"bytes,3,rep,name=accessModes,casttype=PersistentVolumeAccessMode"`
	// ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
	// Expected to be non-nil when bound.
	// claim.VolumeName is the authoritative bind between PV and PVC.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#binding
	// +optional
	ClaimRef *ObjectReference `json:"claimRef,omitempty" protobuf:"bytes,4,opt,name=claimRef"`
	// What happens to a persistent volume when released from its claim.
	// Valid options are Retain (default) and Recycle.
	// Recycling must be supported by the volume plugin underlying this persistent volume.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy
	// +optional
	PersistentVolumeReclaimPolicy PersistentVolumeReclaimPolicy `` /* 143-byte string literal not displayed */
}

PersistentVolumeSpec is the specification of a persistent volume.

func (*PersistentVolumeSpec) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeSpec) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeSpec) Descriptor added in v1.4.0

func (*PersistentVolumeSpec) Descriptor() ([]byte, []int)

func (*PersistentVolumeSpec) Marshal added in v1.3.0

func (m *PersistentVolumeSpec) Marshal() (data []byte, err error)

func (*PersistentVolumeSpec) MarshalTo added in v1.3.0

func (m *PersistentVolumeSpec) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeSpec) ProtoMessage added in v1.3.0

func (*PersistentVolumeSpec) ProtoMessage()

func (*PersistentVolumeSpec) Reset added in v1.3.0

func (m *PersistentVolumeSpec) Reset()

func (*PersistentVolumeSpec) Size added in v1.3.0

func (m *PersistentVolumeSpec) Size() (n int)

func (*PersistentVolumeSpec) String added in v1.3.0

func (this *PersistentVolumeSpec) String() string

func (PersistentVolumeSpec) SwaggerDoc added in v1.1.0

func (PersistentVolumeSpec) SwaggerDoc() map[string]string

func (*PersistentVolumeSpec) Unmarshal added in v1.3.0

func (m *PersistentVolumeSpec) Unmarshal(data []byte) error

type PersistentVolumeStatus

type PersistentVolumeStatus struct {
	// Phase indicates if a volume is available, bound to a claim, or released by a claim.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#phase
	// +optional
	Phase PersistentVolumePhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PersistentVolumePhase"`
	// A human-readable message indicating details about why the volume is in this state.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
	// Reason is a brief CamelCase string that describes any failure and is meant
	// for machine parsing and tidy display in the CLI.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
}

PersistentVolumeStatus is the current status of a persistent volume.

func (*PersistentVolumeStatus) CodecDecodeSelf added in v1.2.0

func (x *PersistentVolumeStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*PersistentVolumeStatus) CodecEncodeSelf added in v1.2.0

func (x *PersistentVolumeStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*PersistentVolumeStatus) Descriptor added in v1.4.0

func (*PersistentVolumeStatus) Descriptor() ([]byte, []int)

func (*PersistentVolumeStatus) Marshal added in v1.3.0

func (m *PersistentVolumeStatus) Marshal() (data []byte, err error)

func (*PersistentVolumeStatus) MarshalTo added in v1.3.0

func (m *PersistentVolumeStatus) MarshalTo(data []byte) (int, error)

func (*PersistentVolumeStatus) ProtoMessage added in v1.3.0

func (*PersistentVolumeStatus) ProtoMessage()

func (*PersistentVolumeStatus) Reset added in v1.3.0

func (m *PersistentVolumeStatus) Reset()

func (*PersistentVolumeStatus) Size added in v1.3.0

func (m *PersistentVolumeStatus) Size() (n int)

func (*PersistentVolumeStatus) String added in v1.3.0

func (this *PersistentVolumeStatus) String() string

func (PersistentVolumeStatus) SwaggerDoc added in v1.1.0

func (PersistentVolumeStatus) SwaggerDoc() map[string]string

func (*PersistentVolumeStatus) Unmarshal added in v1.3.0

func (m *PersistentVolumeStatus) Unmarshal(data []byte) error

type PhotonPersistentDiskVolumeSource added in v1.5.0

type PhotonPersistentDiskVolumeSource struct {
	// ID that identifies Photon Controller persistent disk
	PdID string `json:"pdID" protobuf:"bytes,1,opt,name=pdID"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
}

Represents a Photon Controller persistent disk resource.

func (*PhotonPersistentDiskVolumeSource) CodecDecodeSelf added in v1.5.0

func (x *PhotonPersistentDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*PhotonPersistentDiskVolumeSource) CodecEncodeSelf added in v1.5.0

func (x *PhotonPersistentDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*PhotonPersistentDiskVolumeSource) Descriptor added in v1.5.0

func (*PhotonPersistentDiskVolumeSource) Descriptor() ([]byte, []int)

func (*PhotonPersistentDiskVolumeSource) Marshal added in v1.5.0

func (m *PhotonPersistentDiskVolumeSource) Marshal() (data []byte, err error)

func (*PhotonPersistentDiskVolumeSource) MarshalTo added in v1.5.0

func (m *PhotonPersistentDiskVolumeSource) MarshalTo(data []byte) (int, error)

func (*PhotonPersistentDiskVolumeSource) ProtoMessage added in v1.5.0

func (*PhotonPersistentDiskVolumeSource) ProtoMessage()

func (*PhotonPersistentDiskVolumeSource) Reset added in v1.5.0

func (*PhotonPersistentDiskVolumeSource) Size added in v1.5.0

func (m *PhotonPersistentDiskVolumeSource) Size() (n int)

func (*PhotonPersistentDiskVolumeSource) String added in v1.5.0

func (PhotonPersistentDiskVolumeSource) SwaggerDoc added in v1.5.0

func (*PhotonPersistentDiskVolumeSource) Unmarshal added in v1.5.0

func (m *PhotonPersistentDiskVolumeSource) Unmarshal(data []byte) error

type Pod

type Pod struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Specification of the desired behavior of the pod.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec PodSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Most recently observed status of the pod.
	// This data may not be up to date.
	// Populated by the system.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status PodStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

func (*Pod) CodecDecodeSelf added in v1.2.0

func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder)

func (*Pod) CodecEncodeSelf added in v1.2.0

func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder)

func (*Pod) Descriptor added in v1.4.0

func (*Pod) Descriptor() ([]byte, []int)

func (*Pod) Marshal added in v1.3.0

func (m *Pod) Marshal() (data []byte, err error)

func (*Pod) MarshalTo added in v1.3.0

func (m *Pod) MarshalTo(data []byte) (int, error)

func (*Pod) ProtoMessage added in v1.3.0

func (*Pod) ProtoMessage()

func (*Pod) Reset added in v1.3.0

func (m *Pod) Reset()

func (*Pod) Size added in v1.3.0

func (m *Pod) Size() (n int)

func (*Pod) String added in v1.3.0

func (this *Pod) String() string

func (Pod) SwaggerDoc added in v1.1.0

func (Pod) SwaggerDoc() map[string]string

func (*Pod) Unmarshal added in v1.3.0

func (m *Pod) Unmarshal(data []byte) error

type PodAffinity added in v1.3.0

type PodAffinity struct {
	// NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented.
	// If the affinity requirements specified by this field are not met at
	// scheduling time, the pod will not be scheduled onto the node.
	// If the affinity requirements specified by this field cease to be met
	// at some point during pod execution (e.g. due to a pod label update), the
	// system will try to eventually evict the pod from its node.
	// When there are multiple elements, the lists of nodes corresponding to each
	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
	// +optional
	// RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm  `json:"requiredDuringSchedulingRequiredDuringExecution,omitempty"`
	// If the affinity requirements specified by this field are not met at
	// scheduling time, the pod will not be scheduled onto the node.
	// If the affinity requirements specified by this field cease to be met
	// at some point during pod execution (e.g. due to a pod label update), the
	// system may or may not try to eventually evict the pod from its node.
	// When there are multiple elements, the lists of nodes corresponding to each
	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
	// +optional
	RequiredDuringSchedulingIgnoredDuringExecution []PodAffinityTerm `` /* 138-byte string literal not displayed */
	// The scheduler will prefer to schedule pods to nodes that satisfy
	// the affinity expressions specified by this field, but it may choose
	// a node that violates one or more of the expressions. The node that is
	// most preferred is the one with the greatest sum of weights, i.e.
	// for each node that meets all of the scheduling requirements (resource
	// request, requiredDuringScheduling affinity expressions, etc.),
	// compute a sum by iterating through the elements of this field and adding
	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
	// node(s) with the highest sum are the most preferred.
	// +optional
	PreferredDuringSchedulingIgnoredDuringExecution []WeightedPodAffinityTerm `` /* 140-byte string literal not displayed */
}

Pod affinity is a group of inter pod affinity scheduling rules.

func (*PodAffinity) CodecDecodeSelf added in v1.3.0

func (x *PodAffinity) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodAffinity) CodecEncodeSelf added in v1.3.0

func (x *PodAffinity) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodAffinity) Descriptor added in v1.4.0

func (*PodAffinity) Descriptor() ([]byte, []int)

func (*PodAffinity) Marshal added in v1.3.0

func (m *PodAffinity) Marshal() (data []byte, err error)

func (*PodAffinity) MarshalTo added in v1.3.0

func (m *PodAffinity) MarshalTo(data []byte) (int, error)

func (*PodAffinity) ProtoMessage added in v1.3.0

func (*PodAffinity) ProtoMessage()

func (*PodAffinity) Reset added in v1.3.0

func (m *PodAffinity) Reset()

func (*PodAffinity) Size added in v1.3.0

func (m *PodAffinity) Size() (n int)

func (*PodAffinity) String added in v1.3.0

func (this *PodAffinity) String() string

func (PodAffinity) SwaggerDoc added in v1.3.0

func (PodAffinity) SwaggerDoc() map[string]string

func (*PodAffinity) Unmarshal added in v1.3.0

func (m *PodAffinity) Unmarshal(data []byte) error

type PodAffinityTerm added in v1.3.0

type PodAffinityTerm struct {
	// A label query over a set of resources, in this case pods.
	// +optional
	LabelSelector *unversioned.LabelSelector `json:"labelSelector,omitempty" protobuf:"bytes,1,opt,name=labelSelector"`
	// namespaces specifies which namespaces the labelSelector applies to (matches against);
	// nil list means "this pod's namespace," empty list means "all namespaces"
	// The json tag here is not "omitempty" since we need to distinguish nil and empty.
	// See https://golang.org/pkg/encoding/json/#Marshal for more details.
	Namespaces []string `json:"namespaces" protobuf:"bytes,2,rep,name=namespaces"`
	// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching
	// the labelSelector in the specified namespaces, where co-located is defined as running on a node
	// whose value of the label with key topologyKey matches that of any node on which any of the
	// selected pods is running.
	// For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies"
	// ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains);
	// for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.
	// +optional
	TopologyKey string `json:"topologyKey,omitempty" protobuf:"bytes,3,opt,name=topologyKey"`
}

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

func (*PodAffinityTerm) CodecDecodeSelf added in v1.3.0

func (x *PodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodAffinityTerm) CodecEncodeSelf added in v1.3.0

func (x *PodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodAffinityTerm) Descriptor added in v1.4.0

func (*PodAffinityTerm) Descriptor() ([]byte, []int)

func (*PodAffinityTerm) Marshal added in v1.3.0

func (m *PodAffinityTerm) Marshal() (data []byte, err error)

func (*PodAffinityTerm) MarshalTo added in v1.3.0

func (m *PodAffinityTerm) MarshalTo(data []byte) (int, error)

func (*PodAffinityTerm) ProtoMessage added in v1.3.0

func (*PodAffinityTerm) ProtoMessage()

func (*PodAffinityTerm) Reset added in v1.3.0

func (m *PodAffinityTerm) Reset()

func (*PodAffinityTerm) Size added in v1.3.0

func (m *PodAffinityTerm) Size() (n int)

func (*PodAffinityTerm) String added in v1.3.0

func (this *PodAffinityTerm) String() string

func (PodAffinityTerm) SwaggerDoc added in v1.3.0

func (PodAffinityTerm) SwaggerDoc() map[string]string

func (*PodAffinityTerm) Unmarshal added in v1.3.0

func (m *PodAffinityTerm) Unmarshal(data []byte) error

type PodAntiAffinity added in v1.3.0

type PodAntiAffinity struct {
	// NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented.
	// If the anti-affinity requirements specified by this field are not met at
	// scheduling time, the pod will not be scheduled onto the node.
	// If the anti-affinity requirements specified by this field cease to be met
	// at some point during pod execution (e.g. due to a pod label update), the
	// system will try to eventually evict the pod from its node.
	// When there are multiple elements, the lists of nodes corresponding to each
	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
	// +optional
	// RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm  `json:"requiredDuringSchedulingRequiredDuringExecution,omitempty"`
	// If the anti-affinity requirements specified by this field are not met at
	// scheduling time, the pod will not be scheduled onto the node.
	// If the anti-affinity requirements specified by this field cease to be met
	// at some point during pod execution (e.g. due to a pod label update), the
	// system may or may not try to eventually evict the pod from its node.
	// When there are multiple elements, the lists of nodes corresponding to each
	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
	// +optional
	RequiredDuringSchedulingIgnoredDuringExecution []PodAffinityTerm `` /* 138-byte string literal not displayed */
	// The scheduler will prefer to schedule pods to nodes that satisfy
	// the anti-affinity expressions specified by this field, but it may choose
	// a node that violates one or more of the expressions. The node that is
	// most preferred is the one with the greatest sum of weights, i.e.
	// for each node that meets all of the scheduling requirements (resource
	// request, requiredDuringScheduling anti-affinity expressions, etc.),
	// compute a sum by iterating through the elements of this field and adding
	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
	// node(s) with the highest sum are the most preferred.
	// +optional
	PreferredDuringSchedulingIgnoredDuringExecution []WeightedPodAffinityTerm `` /* 140-byte string literal not displayed */
}

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

func (*PodAntiAffinity) CodecDecodeSelf added in v1.3.0

func (x *PodAntiAffinity) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodAntiAffinity) CodecEncodeSelf added in v1.3.0

func (x *PodAntiAffinity) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodAntiAffinity) Descriptor added in v1.4.0

func (*PodAntiAffinity) Descriptor() ([]byte, []int)

func (*PodAntiAffinity) Marshal added in v1.3.0

func (m *PodAntiAffinity) Marshal() (data []byte, err error)

func (*PodAntiAffinity) MarshalTo added in v1.3.0

func (m *PodAntiAffinity) MarshalTo(data []byte) (int, error)

func (*PodAntiAffinity) ProtoMessage added in v1.3.0

func (*PodAntiAffinity) ProtoMessage()

func (*PodAntiAffinity) Reset added in v1.3.0

func (m *PodAntiAffinity) Reset()

func (*PodAntiAffinity) Size added in v1.3.0

func (m *PodAntiAffinity) Size() (n int)

func (*PodAntiAffinity) String added in v1.3.0

func (this *PodAntiAffinity) String() string

func (PodAntiAffinity) SwaggerDoc added in v1.3.0

func (PodAntiAffinity) SwaggerDoc() map[string]string

func (*PodAntiAffinity) Unmarshal added in v1.3.0

func (m *PodAntiAffinity) Unmarshal(data []byte) error

type PodAttachOptions added in v1.1.0

type PodAttachOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Stdin if true, redirects the standard input stream of the pod for this call.
	// Defaults to false.
	// +optional
	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`

	// Stdout if true indicates that stdout is to be redirected for the attach call.
	// Defaults to true.
	// +optional
	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`

	// Stderr if true indicates that stderr is to be redirected for the attach call.
	// Defaults to true.
	// +optional
	Stderr bool `json:"stderr,omitempty" protobuf:"varint,3,opt,name=stderr"`

	// TTY if true indicates that a tty will be allocated for the attach call.
	// This is passed through the container runtime so the tty
	// is allocated on the worker node by the container runtime.
	// Defaults to false.
	// +optional
	TTY bool `json:"tty,omitempty" protobuf:"varint,4,opt,name=tty"`

	// The container in which to execute the command.
	// Defaults to only container if there is only one container in the pod.
	// +optional
	Container string `json:"container,omitempty" protobuf:"bytes,5,opt,name=container"`
}

PodAttachOptions is the query options to a Pod's remote attach call. --- TODO: merge w/ PodExecOptions below for stdin, stdout, etc and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY

func (*PodAttachOptions) CodecDecodeSelf added in v1.2.0

func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodAttachOptions) CodecEncodeSelf added in v1.2.0

func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodAttachOptions) Descriptor added in v1.4.0

func (*PodAttachOptions) Descriptor() ([]byte, []int)

func (*PodAttachOptions) Marshal added in v1.3.0

func (m *PodAttachOptions) Marshal() (data []byte, err error)

func (*PodAttachOptions) MarshalTo added in v1.3.0

func (m *PodAttachOptions) MarshalTo(data []byte) (int, error)

func (*PodAttachOptions) ProtoMessage added in v1.3.0

func (*PodAttachOptions) ProtoMessage()

func (*PodAttachOptions) Reset added in v1.3.0

func (m *PodAttachOptions) Reset()

func (*PodAttachOptions) Size added in v1.3.0

func (m *PodAttachOptions) Size() (n int)

func (*PodAttachOptions) String added in v1.3.0

func (this *PodAttachOptions) String() string

func (PodAttachOptions) SwaggerDoc added in v1.1.0

func (PodAttachOptions) SwaggerDoc() map[string]string

func (*PodAttachOptions) Unmarshal added in v1.3.0

func (m *PodAttachOptions) Unmarshal(data []byte) error

type PodCondition

type PodCondition struct {
	// Type is the type of the condition.
	// Currently only Ready.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
	Type PodConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PodConditionType"`
	// Status is the status of the condition.
	// Can be True, False, Unknown.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
	// Last time we probed the condition.
	// +optional
	LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
	// Last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
	// Unique, one-word, CamelCase reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
	// Human-readable message indicating details about last transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
}

PodCondition contains details for the current condition of this pod.

func (*PodCondition) CodecDecodeSelf added in v1.2.0

func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodCondition) CodecEncodeSelf added in v1.2.0

func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodCondition) Descriptor added in v1.4.0

func (*PodCondition) Descriptor() ([]byte, []int)

func (*PodCondition) Marshal added in v1.3.0

func (m *PodCondition) Marshal() (data []byte, err error)

func (*PodCondition) MarshalTo added in v1.3.0

func (m *PodCondition) MarshalTo(data []byte) (int, error)

func (*PodCondition) ProtoMessage added in v1.3.0

func (*PodCondition) ProtoMessage()

func (*PodCondition) Reset added in v1.3.0

func (m *PodCondition) Reset()

func (*PodCondition) Size added in v1.3.0

func (m *PodCondition) Size() (n int)

func (*PodCondition) String added in v1.3.0

func (this *PodCondition) String() string

func (PodCondition) SwaggerDoc added in v1.1.0

func (PodCondition) SwaggerDoc() map[string]string

func (*PodCondition) Unmarshal added in v1.3.0

func (m *PodCondition) Unmarshal(data []byte) error

type PodConditionType

type PodConditionType string

PodConditionType is a valid value for PodCondition.Type

const (
	// PodScheduled represents status of the scheduling process for this pod.
	PodScheduled PodConditionType = "PodScheduled"
	// PodReady means the pod is able to service requests and should be added to the
	// load balancing pools of all matching services.
	PodReady PodConditionType = "Ready"
	// PodInitialized means that all init containers in the pod have started successfully.
	PodInitialized PodConditionType = "Initialized"
	// PodReasonUnschedulable reason in PodScheduled PodCondition means that the scheduler
	// can't schedule the pod right now, for example due to insufficient resources in the cluster.
	PodReasonUnschedulable = "Unschedulable"
)

These are valid conditions of pod.

func (*PodConditionType) CodecDecodeSelf added in v1.2.0

func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder)

func (PodConditionType) CodecEncodeSelf added in v1.2.0

func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder)

type PodExecOptions

type PodExecOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Redirect the standard input stream of the pod for this call.
	// Defaults to false.
	// +optional
	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`

	// Redirect the standard output stream of the pod for this call.
	// Defaults to true.
	// +optional
	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`

	// Redirect the standard error stream of the pod for this call.
	// Defaults to true.
	// +optional
	Stderr bool `json:"stderr,omitempty" protobuf:"varint,3,opt,name=stderr"`

	// TTY if true indicates that a tty will be allocated for the exec call.
	// Defaults to false.
	// +optional
	TTY bool `json:"tty,omitempty" protobuf:"varint,4,opt,name=tty"`

	// Container in which to execute the command.
	// Defaults to only container if there is only one container in the pod.
	// +optional
	Container string `json:"container,omitempty" protobuf:"bytes,5,opt,name=container"`

	// Command is the remote command to execute. argv array. Not executed within a shell.
	Command []string `json:"command" protobuf:"bytes,6,rep,name=command"`
}

PodExecOptions is the query options to a Pod's remote exec call. --- TODO: This is largely identical to PodAttachOptions above, make sure they stay in sync and see about merging and also when we cut V2, we should export a "StreamOptions" or somesuch that contains Stdin, Stdout, Stder and TTY

func (*PodExecOptions) CodecDecodeSelf added in v1.2.0

func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodExecOptions) CodecEncodeSelf added in v1.2.0

func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodExecOptions) Descriptor added in v1.4.0

func (*PodExecOptions) Descriptor() ([]byte, []int)

func (*PodExecOptions) Marshal added in v1.3.0

func (m *PodExecOptions) Marshal() (data []byte, err error)

func (*PodExecOptions) MarshalTo added in v1.3.0

func (m *PodExecOptions) MarshalTo(data []byte) (int, error)

func (*PodExecOptions) ProtoMessage added in v1.3.0

func (*PodExecOptions) ProtoMessage()

func (*PodExecOptions) Reset added in v1.3.0

func (m *PodExecOptions) Reset()

func (*PodExecOptions) Size added in v1.3.0

func (m *PodExecOptions) Size() (n int)

func (*PodExecOptions) String added in v1.3.0

func (this *PodExecOptions) String() string

func (PodExecOptions) SwaggerDoc added in v1.1.0

func (PodExecOptions) SwaggerDoc() map[string]string

func (*PodExecOptions) Unmarshal added in v1.3.0

func (m *PodExecOptions) Unmarshal(data []byte) error

type PodList

type PodList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of pods.
	// More info: http://kubernetes.io/docs/user-guide/pods
	Items []Pod `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PodList is a list of Pods.

func (*PodList) CodecDecodeSelf added in v1.2.0

func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodList) CodecEncodeSelf added in v1.2.0

func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodList) Descriptor added in v1.4.0

func (*PodList) Descriptor() ([]byte, []int)

func (*PodList) Marshal added in v1.3.0

func (m *PodList) Marshal() (data []byte, err error)

func (*PodList) MarshalTo added in v1.3.0

func (m *PodList) MarshalTo(data []byte) (int, error)

func (*PodList) ProtoMessage added in v1.3.0

func (*PodList) ProtoMessage()

func (*PodList) Reset added in v1.3.0

func (m *PodList) Reset()

func (*PodList) Size added in v1.3.0

func (m *PodList) Size() (n int)

func (*PodList) String added in v1.3.0

func (this *PodList) String() string

func (PodList) SwaggerDoc added in v1.1.0

func (PodList) SwaggerDoc() map[string]string

func (*PodList) Unmarshal added in v1.3.0

func (m *PodList) Unmarshal(data []byte) error

type PodLogOptions

type PodLogOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// The container for which to stream logs. Defaults to only container if there is one container in the pod.
	// +optional
	Container string `json:"container,omitempty" protobuf:"bytes,1,opt,name=container"`
	// Follow the log stream of the pod. Defaults to false.
	// +optional
	Follow bool `json:"follow,omitempty" protobuf:"varint,2,opt,name=follow"`
	// Return previous terminated container logs. Defaults to false.
	// +optional
	Previous bool `json:"previous,omitempty" protobuf:"varint,3,opt,name=previous"`
	// A relative time in seconds before the current time from which to show logs. If this value
	// precedes the time a pod was started, only logs since the pod start will be returned.
	// If this value is in the future, no logs will be returned.
	// Only one of sinceSeconds or sinceTime may be specified.
	// +optional
	SinceSeconds *int64 `json:"sinceSeconds,omitempty" protobuf:"varint,4,opt,name=sinceSeconds"`
	// An RFC3339 timestamp from which to show logs. If this value
	// precedes the time a pod was started, only logs since the pod start will be returned.
	// If this value is in the future, no logs will be returned.
	// Only one of sinceSeconds or sinceTime may be specified.
	// +optional
	SinceTime *unversioned.Time `json:"sinceTime,omitempty" protobuf:"bytes,5,opt,name=sinceTime"`
	// If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
	// of log output. Defaults to false.
	// +optional
	Timestamps bool `json:"timestamps,omitempty" protobuf:"varint,6,opt,name=timestamps"`
	// If set, the number of lines from the end of the logs to show. If not specified,
	// logs are shown from the creation of the container or sinceSeconds or sinceTime
	// +optional
	TailLines *int64 `json:"tailLines,omitempty" protobuf:"varint,7,opt,name=tailLines"`
	// If set, the number of bytes to read from the server before terminating the
	// log output. This may not display a complete final line of logging, and may return
	// slightly more or slightly less than the specified limit.
	// +optional
	LimitBytes *int64 `json:"limitBytes,omitempty" protobuf:"varint,8,opt,name=limitBytes"`
}

PodLogOptions is the query options for a Pod's logs REST call.

func (*PodLogOptions) CodecDecodeSelf added in v1.2.0

func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodLogOptions) CodecEncodeSelf added in v1.2.0

func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodLogOptions) Descriptor added in v1.4.0

func (*PodLogOptions) Descriptor() ([]byte, []int)

func (*PodLogOptions) Marshal added in v1.3.0

func (m *PodLogOptions) Marshal() (data []byte, err error)

func (*PodLogOptions) MarshalTo added in v1.3.0

func (m *PodLogOptions) MarshalTo(data []byte) (int, error)

func (*PodLogOptions) ProtoMessage added in v1.3.0

func (*PodLogOptions) ProtoMessage()

func (*PodLogOptions) Reset added in v1.3.0

func (m *PodLogOptions) Reset()

func (*PodLogOptions) Size added in v1.3.0

func (m *PodLogOptions) Size() (n int)

func (*PodLogOptions) String added in v1.3.0

func (this *PodLogOptions) String() string

func (PodLogOptions) SwaggerDoc added in v1.1.0

func (PodLogOptions) SwaggerDoc() map[string]string

func (*PodLogOptions) Unmarshal added in v1.3.0

func (m *PodLogOptions) Unmarshal(data []byte) error

type PodPhase

type PodPhase string

PodPhase is a label for the condition of a pod at the current time.

const (
	// PodPending means the pod has been accepted by the system, but one or more of the containers
	// has not been started. This includes time before being bound to a node, as well as time spent
	// pulling images onto the host.
	PodPending PodPhase = "Pending"
	// PodRunning means the pod has been bound to a node and all of the containers have been started.
	// At least one container is still running or is in the process of being restarted.
	PodRunning PodPhase = "Running"
	// PodSucceeded means that all containers in the pod have voluntarily terminated
	// with a container exit code of 0, and the system is not going to restart any of these containers.
	PodSucceeded PodPhase = "Succeeded"
	// PodFailed means that all containers in the pod have terminated, and at least one container has
	// terminated in a failure (exited with a non-zero exit code or was stopped by the system).
	PodFailed PodPhase = "Failed"
	// PodUnknown means that for some reason the state of the pod could not be obtained, typically due
	// to an error in communicating with the host of the pod.
	PodUnknown PodPhase = "Unknown"
)

These are the valid statuses of pods.

func (*PodPhase) CodecDecodeSelf added in v1.2.0

func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder)

func (PodPhase) CodecEncodeSelf added in v1.2.0

func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder)

type PodProxyOptions

type PodProxyOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Path is the URL path to use for the current proxy request to pod.
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
}

PodProxyOptions is the query options to a Pod's proxy call.

func (*PodProxyOptions) CodecDecodeSelf added in v1.2.0

func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodProxyOptions) CodecEncodeSelf added in v1.2.0

func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodProxyOptions) Descriptor added in v1.4.0

func (*PodProxyOptions) Descriptor() ([]byte, []int)

func (*PodProxyOptions) Marshal added in v1.3.0

func (m *PodProxyOptions) Marshal() (data []byte, err error)

func (*PodProxyOptions) MarshalTo added in v1.3.0

func (m *PodProxyOptions) MarshalTo(data []byte) (int, error)

func (*PodProxyOptions) ProtoMessage added in v1.3.0

func (*PodProxyOptions) ProtoMessage()

func (*PodProxyOptions) Reset added in v1.3.0

func (m *PodProxyOptions) Reset()

func (*PodProxyOptions) Size added in v1.3.0

func (m *PodProxyOptions) Size() (n int)

func (*PodProxyOptions) String added in v1.3.0

func (this *PodProxyOptions) String() string

func (PodProxyOptions) SwaggerDoc added in v1.1.0

func (PodProxyOptions) SwaggerDoc() map[string]string

func (*PodProxyOptions) Unmarshal added in v1.3.0

func (m *PodProxyOptions) Unmarshal(data []byte) error

type PodSecurityContext added in v1.2.0

type PodSecurityContext struct {
	// The SELinux context to be applied to all containers.
	// If unspecified, the container runtime will allocate a random SELinux context for each
	// container.  May also be set in SecurityContext.  If set in
	// both SecurityContext and PodSecurityContext, the value specified in SecurityContext
	// takes precedence for that container.
	// +optional
	SELinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty" protobuf:"bytes,1,opt,name=seLinuxOptions"`
	// The UID to run the entrypoint of the container process.
	// Defaults to user specified in image metadata if unspecified.
	// May also be set in SecurityContext.  If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes precedence
	// for that container.
	// +optional
	RunAsUser *int64 `json:"runAsUser,omitempty" protobuf:"varint,2,opt,name=runAsUser"`
	// Indicates that the container must run as a non-root user.
	// If true, the Kubelet will validate the image at runtime to ensure that it
	// does not run as UID 0 (root) and fail to start the container if it does.
	// If unset or false, no such validation will be performed.
	// May also be set in SecurityContext.  If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes precedence.
	// +optional
	RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" protobuf:"varint,3,opt,name=runAsNonRoot"`
	// A list of groups applied to the first process run in each container, in addition
	// to the container's primary GID.  If unspecified, no groups will be added to
	// any container.
	// +optional
	SupplementalGroups []int64 `json:"supplementalGroups,omitempty" protobuf:"varint,4,rep,name=supplementalGroups"`
	// A special supplemental group that applies to all containers in a pod.
	// Some volume types allow the Kubelet to change the ownership of that volume
	// to be owned by the pod:
	//
	// 1. The owning GID will be the FSGroup
	// 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)
	// 3. The permission bits are OR'd with rw-rw----
	//
	// If unset, the Kubelet will not modify the ownership and permissions of any volume.
	// +optional
	FSGroup *int64 `json:"fsGroup,omitempty" protobuf:"varint,5,opt,name=fsGroup"`
}

PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

func (*PodSecurityContext) CodecDecodeSelf added in v1.2.0

func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodSecurityContext) CodecEncodeSelf added in v1.2.0

func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodSecurityContext) Descriptor added in v1.4.0

func (*PodSecurityContext) Descriptor() ([]byte, []int)

func (*PodSecurityContext) Marshal added in v1.3.0

func (m *PodSecurityContext) Marshal() (data []byte, err error)

func (*PodSecurityContext) MarshalTo added in v1.3.0

func (m *PodSecurityContext) MarshalTo(data []byte) (int, error)

func (*PodSecurityContext) ProtoMessage added in v1.3.0

func (*PodSecurityContext) ProtoMessage()

func (*PodSecurityContext) Reset added in v1.3.0

func (m *PodSecurityContext) Reset()

func (*PodSecurityContext) Size added in v1.3.0

func (m *PodSecurityContext) Size() (n int)

func (*PodSecurityContext) String added in v1.3.0

func (this *PodSecurityContext) String() string

func (PodSecurityContext) SwaggerDoc added in v1.2.0

func (PodSecurityContext) SwaggerDoc() map[string]string

func (*PodSecurityContext) Unmarshal added in v1.3.0

func (m *PodSecurityContext) Unmarshal(data []byte) error

type PodSignature added in v1.4.0

type PodSignature struct {
	// Reference to controller whose pods should avoid this node.
	// +optional
	PodController *OwnerReference `json:"podController,omitempty" protobuf:"bytes,1,opt,name=podController"`
}

Describes the class of pods that should avoid this node. Exactly one field should be set.

func (*PodSignature) CodecDecodeSelf added in v1.4.0

func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodSignature) CodecEncodeSelf added in v1.4.0

func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodSignature) Descriptor added in v1.4.0

func (*PodSignature) Descriptor() ([]byte, []int)

func (*PodSignature) Marshal added in v1.4.0

func (m *PodSignature) Marshal() (data []byte, err error)

func (*PodSignature) MarshalTo added in v1.4.0

func (m *PodSignature) MarshalTo(data []byte) (int, error)

func (*PodSignature) ProtoMessage added in v1.4.0

func (*PodSignature) ProtoMessage()

func (*PodSignature) Reset added in v1.4.0

func (m *PodSignature) Reset()

func (*PodSignature) Size added in v1.4.0

func (m *PodSignature) Size() (n int)

func (*PodSignature) String added in v1.4.0

func (this *PodSignature) String() string

func (PodSignature) SwaggerDoc added in v1.4.0

func (PodSignature) SwaggerDoc() map[string]string

func (*PodSignature) Unmarshal added in v1.4.0

func (m *PodSignature) Unmarshal(data []byte) error

type PodSpec

type PodSpec struct {
	// List of volumes that can be mounted by containers belonging to the pod.
	// More info: http://kubernetes.io/docs/user-guide/volumes
	// +optional
	Volumes []Volume `json:"volumes,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,1,rep,name=volumes"`
	// List of initialization containers belonging to the pod.
	// Init containers are executed in order prior to containers being started. If any
	// init container fails, the pod is considered to have failed and is handled according
	// to its restartPolicy. The name for an init container or normal container must be
	// unique among all containers.
	// Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes.
	// The resourceRequirements of an init container are taken into account during scheduling
	// by finding the highest request/limit for each resource type, and then using the max of
	// of that value or the sum of the normal containers. Limits are applied to init containers
	// in a similar fashion.
	// Init containers cannot currently be added or removed.
	// Init containers are in alpha state and may change without notice.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/containers
	InitContainers []Container `json:"-"  patchStrategy:"merge" patchMergeKey:"name"`
	// List of containers belonging to the pod.
	// Containers cannot currently be added or removed.
	// There must be at least one container in a Pod.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/containers
	Containers []Container `json:"containers" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,2,rep,name=containers"`
	// Restart policy for all containers within the pod.
	// One of Always, OnFailure, Never.
	// Default to Always.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy
	// +optional
	RestartPolicy RestartPolicy `json:"restartPolicy,omitempty" protobuf:"bytes,3,opt,name=restartPolicy,casttype=RestartPolicy"`
	// Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request.
	// Value must be non-negative integer. The value zero indicates delete immediately.
	// If this value is nil, the default grace period will be used instead.
	// The grace period is the duration in seconds after the processes running in the pod are sent
	// a termination signal and the time when the processes are forcibly halted with a kill signal.
	// Set this value longer than the expected cleanup time for your process.
	// Defaults to 30 seconds.
	// +optional
	TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" protobuf:"varint,4,opt,name=terminationGracePeriodSeconds"`
	// Optional duration in seconds the pod may be active on the node relative to
	// StartTime before the system will actively try to mark it failed and kill associated containers.
	// Value must be a positive integer.
	// +optional
	ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" protobuf:"varint,5,opt,name=activeDeadlineSeconds"`
	// Set DNS policy for containers within the pod.
	// One of 'ClusterFirst' or 'Default'.
	// Defaults to "ClusterFirst".
	// +optional
	DNSPolicy DNSPolicy `json:"dnsPolicy,omitempty" protobuf:"bytes,6,opt,name=dnsPolicy,casttype=DNSPolicy"`
	// NodeSelector is a selector which must be true for the pod to fit on a node.
	// Selector which must match a node's labels for the pod to be scheduled on that node.
	// More info: http://kubernetes.io/docs/user-guide/node-selection/README
	// +optional
	NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,7,rep,name=nodeSelector"`

	// ServiceAccountName is the name of the ServiceAccount to use to run this pod.
	// More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md
	// +optional
	ServiceAccountName string `json:"serviceAccountName,omitempty" protobuf:"bytes,8,opt,name=serviceAccountName"`
	// DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
	// Deprecated: Use serviceAccountName instead.
	// +k8s:conversion-gen=false
	// +optional
	DeprecatedServiceAccount string `json:"serviceAccount,omitempty" protobuf:"bytes,9,opt,name=serviceAccount"`

	// NodeName is a request to schedule this pod onto a specific node. If it is non-empty,
	// the scheduler simply schedules this pod onto that node, assuming that it fits resource
	// requirements.
	// +optional
	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
	// Host networking requested for this pod. Use the host's network namespace.
	// If this option is set, the ports that will be used must be specified.
	// Default to false.
	// +k8s:conversion-gen=false
	// +optional
	HostNetwork bool `json:"hostNetwork,omitempty" protobuf:"varint,11,opt,name=hostNetwork"`
	// Use the host's pid namespace.
	// Optional: Default to false.
	// +k8s:conversion-gen=false
	// +optional
	HostPID bool `json:"hostPID,omitempty" protobuf:"varint,12,opt,name=hostPID"`
	// Use the host's ipc namespace.
	// Optional: Default to false.
	// +k8s:conversion-gen=false
	// +optional
	HostIPC bool `json:"hostIPC,omitempty" protobuf:"varint,13,opt,name=hostIPC"`
	// SecurityContext holds pod-level security attributes and common container settings.
	// Optional: Defaults to empty.  See type description for default values of each field.
	// +optional
	SecurityContext *PodSecurityContext `json:"securityContext,omitempty" protobuf:"bytes,14,opt,name=securityContext"`
	// ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec.
	// If specified, these secrets will be passed to individual puller implementations for them to use. For example,
	// in the case of docker, only DockerConfig type secrets are honored.
	// More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod
	// +optional
	ImagePullSecrets []LocalObjectReference `json:"imagePullSecrets,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,15,rep,name=imagePullSecrets"`
	// Specifies the hostname of the Pod
	// If not specified, the pod's hostname will be set to a system-defined value.
	// +optional
	Hostname string `json:"hostname,omitempty" protobuf:"bytes,16,opt,name=hostname"`
	// If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
	// If not specified, the pod will not have a domainname at all.
	// +optional
	Subdomain string `json:"subdomain,omitempty" protobuf:"bytes,17,opt,name=subdomain"`
}

PodSpec is a description of a pod.

func (*PodSpec) CodecDecodeSelf added in v1.2.0

func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodSpec) CodecEncodeSelf added in v1.2.0

func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodSpec) Descriptor added in v1.4.0

func (*PodSpec) Descriptor() ([]byte, []int)

func (*PodSpec) Marshal added in v1.3.0

func (m *PodSpec) Marshal() (data []byte, err error)

func (*PodSpec) MarshalTo added in v1.3.0

func (m *PodSpec) MarshalTo(data []byte) (int, error)

func (*PodSpec) ProtoMessage added in v1.3.0

func (*PodSpec) ProtoMessage()

func (*PodSpec) Reset added in v1.3.0

func (m *PodSpec) Reset()

func (*PodSpec) Size added in v1.3.0

func (m *PodSpec) Size() (n int)

func (*PodSpec) String added in v1.3.0

func (this *PodSpec) String() string

func (PodSpec) SwaggerDoc added in v1.1.0

func (PodSpec) SwaggerDoc() map[string]string

func (*PodSpec) Unmarshal added in v1.3.0

func (m *PodSpec) Unmarshal(data []byte) error

type PodStatus

type PodStatus struct {
	// Current condition of the pod.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
	// +optional
	Phase PodPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PodPhase"`
	// Current service state of pod.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
	// +optional
	Conditions []PodCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,2,rep,name=conditions"`
	// A human readable message indicating details about why the pod is in this condition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
	// A brief CamelCase message indicating details about why the pod is in this state.
	// e.g. 'OutOfDisk'
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`

	// IP address of the host to which the pod is assigned. Empty if not yet scheduled.
	// +optional
	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
	// IP address allocated to the pod. Routable at least within the cluster.
	// Empty if not yet allocated.
	// +optional
	PodIP string `json:"podIP,omitempty" protobuf:"bytes,6,opt,name=podIP"`

	// RFC 3339 date and time at which the object was acknowledged by the Kubelet.
	// This is before the Kubelet pulled the container image(s) for the pod.
	// +optional
	StartTime *unversioned.Time `json:"startTime,omitempty" protobuf:"bytes,7,opt,name=startTime"`

	// The list has one entry per init container in the manifest. The most recent successful
	// init container will have ready = true, the most recently started container will have
	// startTime set.
	// Init containers are in alpha state and may change without notice.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-statuses
	InitContainerStatuses []ContainerStatus `json:"-"`
	// The list has one entry per container in the manifest. Each entry is currently the output
	// of `docker inspect`.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-statuses
	// +optional
	ContainerStatuses []ContainerStatus `json:"containerStatuses,omitempty" protobuf:"bytes,8,rep,name=containerStatuses"`
}

PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

func (*PodStatus) CodecDecodeSelf added in v1.2.0

func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodStatus) CodecEncodeSelf added in v1.2.0

func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodStatus) Descriptor added in v1.4.0

func (*PodStatus) Descriptor() ([]byte, []int)

func (*PodStatus) Marshal added in v1.3.0

func (m *PodStatus) Marshal() (data []byte, err error)

func (*PodStatus) MarshalTo added in v1.3.0

func (m *PodStatus) MarshalTo(data []byte) (int, error)

func (*PodStatus) ProtoMessage added in v1.3.0

func (*PodStatus) ProtoMessage()

func (*PodStatus) Reset added in v1.3.0

func (m *PodStatus) Reset()

func (*PodStatus) Size added in v1.3.0

func (m *PodStatus) Size() (n int)

func (*PodStatus) String added in v1.3.0

func (this *PodStatus) String() string

func (PodStatus) SwaggerDoc added in v1.1.0

func (PodStatus) SwaggerDoc() map[string]string

func (*PodStatus) Unmarshal added in v1.3.0

func (m *PodStatus) Unmarshal(data []byte) error

type PodStatusResult

type PodStatusResult struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
	// Most recently observed status of the pod.
	// This data may not be up to date.
	// Populated by the system.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status PodStatus `json:"status,omitempty" protobuf:"bytes,2,opt,name=status"`
}

PodStatusResult is a wrapper for PodStatus returned by kubelet that can be encode/decoded

func (*PodStatusResult) CodecDecodeSelf added in v1.2.0

func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodStatusResult) CodecEncodeSelf added in v1.2.0

func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodStatusResult) Descriptor added in v1.4.0

func (*PodStatusResult) Descriptor() ([]byte, []int)

func (*PodStatusResult) Marshal added in v1.3.0

func (m *PodStatusResult) Marshal() (data []byte, err error)

func (*PodStatusResult) MarshalTo added in v1.3.0

func (m *PodStatusResult) MarshalTo(data []byte) (int, error)

func (*PodStatusResult) ProtoMessage added in v1.3.0

func (*PodStatusResult) ProtoMessage()

func (*PodStatusResult) Reset added in v1.3.0

func (m *PodStatusResult) Reset()

func (*PodStatusResult) Size added in v1.3.0

func (m *PodStatusResult) Size() (n int)

func (*PodStatusResult) String added in v1.3.0

func (this *PodStatusResult) String() string

func (PodStatusResult) SwaggerDoc added in v1.1.0

func (PodStatusResult) SwaggerDoc() map[string]string

func (*PodStatusResult) Unmarshal added in v1.3.0

func (m *PodStatusResult) Unmarshal(data []byte) error

type PodTemplate

type PodTemplate struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Template defines the pods that will be created from this pod template.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Template PodTemplateSpec `json:"template,omitempty" protobuf:"bytes,2,opt,name=template"`
}

PodTemplate describes a template for creating copies of a predefined pod.

func (*PodTemplate) CodecDecodeSelf added in v1.2.0

func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodTemplate) CodecEncodeSelf added in v1.2.0

func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodTemplate) Descriptor added in v1.4.0

func (*PodTemplate) Descriptor() ([]byte, []int)

func (*PodTemplate) Marshal added in v1.3.0

func (m *PodTemplate) Marshal() (data []byte, err error)

func (*PodTemplate) MarshalTo added in v1.3.0

func (m *PodTemplate) MarshalTo(data []byte) (int, error)

func (*PodTemplate) ProtoMessage added in v1.3.0

func (*PodTemplate) ProtoMessage()

func (*PodTemplate) Reset added in v1.3.0

func (m *PodTemplate) Reset()

func (*PodTemplate) Size added in v1.3.0

func (m *PodTemplate) Size() (n int)

func (*PodTemplate) String added in v1.3.0

func (this *PodTemplate) String() string

func (PodTemplate) SwaggerDoc added in v1.1.0

func (PodTemplate) SwaggerDoc() map[string]string

func (*PodTemplate) Unmarshal added in v1.3.0

func (m *PodTemplate) Unmarshal(data []byte) error

type PodTemplateList

type PodTemplateList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of pod templates
	Items []PodTemplate `json:"items" protobuf:"bytes,2,rep,name=items"`
}

PodTemplateList is a list of PodTemplates.

func (*PodTemplateList) CodecDecodeSelf added in v1.2.0

func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodTemplateList) CodecEncodeSelf added in v1.2.0

func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodTemplateList) Descriptor added in v1.4.0

func (*PodTemplateList) Descriptor() ([]byte, []int)

func (*PodTemplateList) Marshal added in v1.3.0

func (m *PodTemplateList) Marshal() (data []byte, err error)

func (*PodTemplateList) MarshalTo added in v1.3.0

func (m *PodTemplateList) MarshalTo(data []byte) (int, error)

func (*PodTemplateList) ProtoMessage added in v1.3.0

func (*PodTemplateList) ProtoMessage()

func (*PodTemplateList) Reset added in v1.3.0

func (m *PodTemplateList) Reset()

func (*PodTemplateList) Size added in v1.3.0

func (m *PodTemplateList) Size() (n int)

func (*PodTemplateList) String added in v1.3.0

func (this *PodTemplateList) String() string

func (PodTemplateList) SwaggerDoc added in v1.1.0

func (PodTemplateList) SwaggerDoc() map[string]string

func (*PodTemplateList) Unmarshal added in v1.3.0

func (m *PodTemplateList) Unmarshal(data []byte) error

type PodTemplateSpec

type PodTemplateSpec struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Specification of the desired behavior of the pod.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec PodSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
}

PodTemplateSpec describes the data a pod should have when created from a template

func (*PodTemplateSpec) CodecDecodeSelf added in v1.2.0

func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*PodTemplateSpec) CodecEncodeSelf added in v1.2.0

func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*PodTemplateSpec) Descriptor added in v1.4.0

func (*PodTemplateSpec) Descriptor() ([]byte, []int)

func (*PodTemplateSpec) Marshal added in v1.3.0

func (m *PodTemplateSpec) Marshal() (data []byte, err error)

func (*PodTemplateSpec) MarshalTo added in v1.3.0

func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error)

func (*PodTemplateSpec) ProtoMessage added in v1.3.0

func (*PodTemplateSpec) ProtoMessage()

func (*PodTemplateSpec) Reset added in v1.3.0

func (m *PodTemplateSpec) Reset()

func (*PodTemplateSpec) Size added in v1.3.0

func (m *PodTemplateSpec) Size() (n int)

func (*PodTemplateSpec) String added in v1.3.0

func (this *PodTemplateSpec) String() string

func (PodTemplateSpec) SwaggerDoc added in v1.1.0

func (PodTemplateSpec) SwaggerDoc() map[string]string

func (*PodTemplateSpec) Unmarshal added in v1.3.0

func (m *PodTemplateSpec) Unmarshal(data []byte) error

type Preconditions added in v1.3.0

type Preconditions struct {
	// Specifies the target UID.
	// +optional
	UID *types.UID `json:"uid,omitempty" protobuf:"bytes,1,opt,name=uid,casttype=k8s.io/kubernetes/pkg/types.UID"`
}

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

func NewUIDPreconditions added in v1.5.0

func NewUIDPreconditions(uid string) *Preconditions

NewUIDPreconditions returns a Preconditions with UID set.

func (*Preconditions) CodecDecodeSelf added in v1.3.0

func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder)

func (*Preconditions) CodecEncodeSelf added in v1.3.0

func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder)

func (*Preconditions) Descriptor added in v1.4.0

func (*Preconditions) Descriptor() ([]byte, []int)

func (*Preconditions) Marshal added in v1.3.0

func (m *Preconditions) Marshal() (data []byte, err error)

func (*Preconditions) MarshalTo added in v1.3.0

func (m *Preconditions) MarshalTo(data []byte) (int, error)

func (*Preconditions) ProtoMessage added in v1.3.0

func (*Preconditions) ProtoMessage()

func (*Preconditions) Reset added in v1.3.0

func (m *Preconditions) Reset()

func (*Preconditions) Size added in v1.3.0

func (m *Preconditions) Size() (n int)

func (*Preconditions) String added in v1.3.0

func (this *Preconditions) String() string

func (Preconditions) SwaggerDoc added in v1.3.0

func (Preconditions) SwaggerDoc() map[string]string

func (*Preconditions) Unmarshal added in v1.3.0

func (m *Preconditions) Unmarshal(data []byte) error

type PreferAvoidPodsEntry added in v1.4.0

type PreferAvoidPodsEntry struct {
	// The class of pods.
	PodSignature PodSignature `json:"podSignature" protobuf:"bytes,1,opt,name=podSignature"`
	// Time at which this entry was added to the list.
	// +optional
	EvictionTime unversioned.Time `json:"evictionTime,omitempty" protobuf:"bytes,2,opt,name=evictionTime"`
	// (brief) reason why this entry was added to the list.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
	// Human readable message indicating why this entry was added to the list.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"`
}

Describes a class of pods that should avoid this node.

func (*PreferAvoidPodsEntry) CodecDecodeSelf added in v1.4.0

func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder)

func (*PreferAvoidPodsEntry) CodecEncodeSelf added in v1.4.0

func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder)

func (*PreferAvoidPodsEntry) Descriptor added in v1.4.0

func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int)

func (*PreferAvoidPodsEntry) Marshal added in v1.4.0

func (m *PreferAvoidPodsEntry) Marshal() (data []byte, err error)

func (*PreferAvoidPodsEntry) MarshalTo added in v1.4.0

func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error)

func (*PreferAvoidPodsEntry) ProtoMessage added in v1.4.0

func (*PreferAvoidPodsEntry) ProtoMessage()

func (*PreferAvoidPodsEntry) Reset added in v1.4.0

func (m *PreferAvoidPodsEntry) Reset()

func (*PreferAvoidPodsEntry) Size added in v1.4.0

func (m *PreferAvoidPodsEntry) Size() (n int)

func (*PreferAvoidPodsEntry) String added in v1.4.0

func (this *PreferAvoidPodsEntry) String() string

func (PreferAvoidPodsEntry) SwaggerDoc added in v1.4.0

func (PreferAvoidPodsEntry) SwaggerDoc() map[string]string

func (*PreferAvoidPodsEntry) Unmarshal added in v1.4.0

func (m *PreferAvoidPodsEntry) Unmarshal(data []byte) error

type PreferredSchedulingTerm added in v1.2.0

type PreferredSchedulingTerm struct {
	// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
	Weight int32 `json:"weight" protobuf:"varint,1,opt,name=weight"`
	// A node selector term, associated with the corresponding weight.
	Preference NodeSelectorTerm `json:"preference" protobuf:"bytes,2,opt,name=preference"`
}

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

func (*PreferredSchedulingTerm) CodecDecodeSelf added in v1.2.0

func (x *PreferredSchedulingTerm) CodecDecodeSelf(d *codec1978.Decoder)

func (*PreferredSchedulingTerm) CodecEncodeSelf added in v1.2.0

func (x *PreferredSchedulingTerm) CodecEncodeSelf(e *codec1978.Encoder)

func (*PreferredSchedulingTerm) Descriptor added in v1.4.0

func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int)

func (*PreferredSchedulingTerm) Marshal added in v1.3.0

func (m *PreferredSchedulingTerm) Marshal() (data []byte, err error)

func (*PreferredSchedulingTerm) MarshalTo added in v1.3.0

func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error)

func (*PreferredSchedulingTerm) ProtoMessage added in v1.3.0

func (*PreferredSchedulingTerm) ProtoMessage()

func (*PreferredSchedulingTerm) Reset added in v1.3.0

func (m *PreferredSchedulingTerm) Reset()

func (*PreferredSchedulingTerm) Size added in v1.3.0

func (m *PreferredSchedulingTerm) Size() (n int)

func (*PreferredSchedulingTerm) String added in v1.3.0

func (this *PreferredSchedulingTerm) String() string

func (PreferredSchedulingTerm) SwaggerDoc added in v1.2.0

func (PreferredSchedulingTerm) SwaggerDoc() map[string]string

func (*PreferredSchedulingTerm) Unmarshal added in v1.3.0

func (m *PreferredSchedulingTerm) Unmarshal(data []byte) error

type Probe

type Probe struct {
	// The action taken to determine the health of a container
	Handler `json:",inline" protobuf:"bytes,1,opt,name=handler"`
	// Number of seconds after the container has started before liveness probes are initiated.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
	// +optional
	InitialDelaySeconds int32 `json:"initialDelaySeconds,omitempty" protobuf:"varint,2,opt,name=initialDelaySeconds"`
	// Number of seconds after which the probe times out.
	// Defaults to 1 second. Minimum value is 1.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes
	// +optional
	TimeoutSeconds int32 `json:"timeoutSeconds,omitempty" protobuf:"varint,3,opt,name=timeoutSeconds"`
	// How often (in seconds) to perform the probe.
	// Default to 10 seconds. Minimum value is 1.
	// +optional
	PeriodSeconds int32 `json:"periodSeconds,omitempty" protobuf:"varint,4,opt,name=periodSeconds"`
	// Minimum consecutive successes for the probe to be considered successful after having failed.
	// Defaults to 1. Must be 1 for liveness. Minimum value is 1.
	// +optional
	SuccessThreshold int32 `json:"successThreshold,omitempty" protobuf:"varint,5,opt,name=successThreshold"`
	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
	// Defaults to 3. Minimum value is 1.
	// +optional
	FailureThreshold int32 `json:"failureThreshold,omitempty" protobuf:"varint,6,opt,name=failureThreshold"`
}

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

func (*Probe) CodecDecodeSelf added in v1.2.0

func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder)

func (*Probe) CodecEncodeSelf added in v1.2.0

func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder)

func (*Probe) Descriptor added in v1.4.0

func (*Probe) Descriptor() ([]byte, []int)

func (*Probe) Marshal added in v1.3.0

func (m *Probe) Marshal() (data []byte, err error)

func (*Probe) MarshalTo added in v1.3.0

func (m *Probe) MarshalTo(data []byte) (int, error)

func (*Probe) ProtoMessage added in v1.3.0

func (*Probe) ProtoMessage()

func (*Probe) Reset added in v1.3.0

func (m *Probe) Reset()

func (*Probe) Size added in v1.3.0

func (m *Probe) Size() (n int)

func (*Probe) String added in v1.3.0

func (this *Probe) String() string

func (Probe) SwaggerDoc added in v1.1.0

func (Probe) SwaggerDoc() map[string]string

func (*Probe) Unmarshal added in v1.3.0

func (m *Probe) Unmarshal(data []byte) error

type Protocol

type Protocol string

Protocol defines network protocols supported for things like container ports.

const (
	// ProtocolTCP is the TCP protocol.
	ProtocolTCP Protocol = "TCP"
	// ProtocolUDP is the UDP protocol.
	ProtocolUDP Protocol = "UDP"
)

func (*Protocol) CodecDecodeSelf added in v1.2.0

func (x *Protocol) CodecDecodeSelf(d *codec1978.Decoder)

func (Protocol) CodecEncodeSelf added in v1.2.0

func (x Protocol) CodecEncodeSelf(e *codec1978.Encoder)

type PullPolicy

type PullPolicy string

PullPolicy describes a policy for if/when to pull a container image

const (
	// PullAlways means that kubelet always attempts to pull the latest image. Container will fail If the pull fails.
	PullAlways PullPolicy = "Always"
	// PullNever means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn't present
	PullNever PullPolicy = "Never"
	// PullIfNotPresent means that kubelet pulls if the image isn't present on disk. Container will fail if the image isn't present and the pull fails.
	PullIfNotPresent PullPolicy = "IfNotPresent"
)

func (*PullPolicy) CodecDecodeSelf added in v1.2.0

func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder)

func (PullPolicy) CodecEncodeSelf added in v1.2.0

func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder)

type QuobyteVolumeSource added in v1.4.0

type QuobyteVolumeSource struct {
	// Registry represents a single or multiple Quobyte Registry services
	// specified as a string as host:port pair (multiple entries are separated with commas)
	// which acts as the central registry for volumes
	Registry string `json:"registry" protobuf:"bytes,1,opt,name=registry"`

	// Volume is a string that references an already created Quobyte volume by name.
	Volume string `json:"volume" protobuf:"bytes,2,opt,name=volume"`

	// ReadOnly here will force the Quobyte volume to be mounted with read-only permissions.
	// Defaults to false.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`

	// User to map volume access to
	// Defaults to serivceaccount user
	// +optional
	User string `json:"user,omitempty" protobuf:"bytes,4,opt,name=user"`

	// Group to map volume access to
	// Default is no group
	// +optional
	Group string `json:"group,omitempty" protobuf:"bytes,5,opt,name=group"`
}

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

func (*QuobyteVolumeSource) CodecDecodeSelf added in v1.4.0

func (x *QuobyteVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*QuobyteVolumeSource) CodecEncodeSelf added in v1.4.0

func (x *QuobyteVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*QuobyteVolumeSource) Descriptor added in v1.4.0

func (*QuobyteVolumeSource) Descriptor() ([]byte, []int)

func (*QuobyteVolumeSource) Marshal added in v1.4.0

func (m *QuobyteVolumeSource) Marshal() (data []byte, err error)

func (*QuobyteVolumeSource) MarshalTo added in v1.4.0

func (m *QuobyteVolumeSource) MarshalTo(data []byte) (int, error)

func (*QuobyteVolumeSource) ProtoMessage added in v1.4.0

func (*QuobyteVolumeSource) ProtoMessage()

func (*QuobyteVolumeSource) Reset added in v1.4.0

func (m *QuobyteVolumeSource) Reset()

func (*QuobyteVolumeSource) Size added in v1.4.0

func (m *QuobyteVolumeSource) Size() (n int)

func (*QuobyteVolumeSource) String added in v1.4.0

func (this *QuobyteVolumeSource) String() string

func (QuobyteVolumeSource) SwaggerDoc added in v1.4.0

func (QuobyteVolumeSource) SwaggerDoc() map[string]string

func (*QuobyteVolumeSource) Unmarshal added in v1.4.0

func (m *QuobyteVolumeSource) Unmarshal(data []byte) error

type RBDVolumeSource added in v0.18.0

type RBDVolumeSource struct {
	// A collection of Ceph monitors.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	CephMonitors []string `json:"monitors" protobuf:"bytes,1,rep,name=monitors"`
	// The rados image name.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	RBDImage string `json:"image" protobuf:"bytes,2,opt,name=image"`
	// Filesystem type of the volume that you want to mount.
	// Tip: Ensure that the filesystem type is supported by the host operating system.
	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// More info: http://kubernetes.io/docs/user-guide/volumes#rbd
	// TODO: how do we prevent errors in the filesystem from compromising the machine
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,3,opt,name=fsType"`
	// The rados pool name.
	// Default is rbd.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.
	// +optional
	RBDPool string `json:"pool,omitempty" protobuf:"bytes,4,opt,name=pool"`
	// The rados user name.
	// Default is admin.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// +optional
	RadosUser string `json:"user,omitempty" protobuf:"bytes,5,opt,name=user"`
	// Keyring is the path to key ring for RBDUser.
	// Default is /etc/ceph/keyring.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// +optional
	Keyring string `json:"keyring,omitempty" protobuf:"bytes,6,opt,name=keyring"`
	// SecretRef is name of the authentication secret for RBDUser. If provided
	// overrides keyring.
	// Default is nil.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// +optional
	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,7,opt,name=secretRef"`
	// ReadOnly here will force the ReadOnly setting in VolumeMounts.
	// Defaults to false.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,8,opt,name=readOnly"`
}

Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

func (*RBDVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*RBDVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*RBDVolumeSource) Descriptor added in v1.4.0

func (*RBDVolumeSource) Descriptor() ([]byte, []int)

func (*RBDVolumeSource) Marshal added in v1.3.0

func (m *RBDVolumeSource) Marshal() (data []byte, err error)

func (*RBDVolumeSource) MarshalTo added in v1.3.0

func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error)

func (*RBDVolumeSource) ProtoMessage added in v1.3.0

func (*RBDVolumeSource) ProtoMessage()

func (*RBDVolumeSource) Reset added in v1.3.0

func (m *RBDVolumeSource) Reset()

func (*RBDVolumeSource) Size added in v1.3.0

func (m *RBDVolumeSource) Size() (n int)

func (*RBDVolumeSource) String added in v1.3.0

func (this *RBDVolumeSource) String() string

func (RBDVolumeSource) SwaggerDoc added in v1.1.0

func (RBDVolumeSource) SwaggerDoc() map[string]string

func (*RBDVolumeSource) Unmarshal added in v1.3.0

func (m *RBDVolumeSource) Unmarshal(data []byte) error

type RangeAllocation added in v0.17.0

type RangeAllocation struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Range is string that identifies the range represented by 'data'.
	Range string `json:"range" protobuf:"bytes,2,opt,name=range"`
	// Data is a bit array containing all allocated addresses in the previous segment.
	Data []byte `json:"data" protobuf:"bytes,3,opt,name=data"`
}

RangeAllocation is not a public type.

func (*RangeAllocation) CodecDecodeSelf added in v1.2.0

func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder)

func (*RangeAllocation) CodecEncodeSelf added in v1.2.0

func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder)

func (*RangeAllocation) Descriptor added in v1.4.0

func (*RangeAllocation) Descriptor() ([]byte, []int)

func (*RangeAllocation) Marshal added in v1.3.0

func (m *RangeAllocation) Marshal() (data []byte, err error)

func (*RangeAllocation) MarshalTo added in v1.3.0

func (m *RangeAllocation) MarshalTo(data []byte) (int, error)

func (*RangeAllocation) ProtoMessage added in v1.3.0

func (*RangeAllocation) ProtoMessage()

func (*RangeAllocation) Reset added in v1.3.0

func (m *RangeAllocation) Reset()

func (*RangeAllocation) Size added in v1.3.0

func (m *RangeAllocation) Size() (n int)

func (*RangeAllocation) String added in v1.3.0

func (this *RangeAllocation) String() string

func (RangeAllocation) SwaggerDoc added in v1.1.0

func (RangeAllocation) SwaggerDoc() map[string]string

func (*RangeAllocation) Unmarshal added in v1.3.0

func (m *RangeAllocation) Unmarshal(data []byte) error

type ReplicationController

type ReplicationController struct {
	unversioned.TypeMeta `json:",inline"`

	// If the Labels of a ReplicationController are empty, they are defaulted to
	// be the same as the Pod(s) that the replication controller manages.
	// Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the specification of the desired behavior of the replication controller.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec ReplicationControllerSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status is the most recently observed status of the replication controller.
	// This data may be out of date by some window of time.
	// Populated by the system.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status ReplicationControllerStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ReplicationController represents the configuration of a replication controller.

func (*ReplicationController) CodecDecodeSelf added in v1.2.0

func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder)

func (*ReplicationController) CodecEncodeSelf added in v1.2.0

func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder)

func (*ReplicationController) Descriptor added in v1.4.0

func (*ReplicationController) Descriptor() ([]byte, []int)

func (*ReplicationController) Marshal added in v1.3.0

func (m *ReplicationController) Marshal() (data []byte, err error)

func (*ReplicationController) MarshalTo added in v1.3.0

func (m *ReplicationController) MarshalTo(data []byte) (int, error)

func (*ReplicationController) ProtoMessage added in v1.3.0

func (*ReplicationController) ProtoMessage()

func (*ReplicationController) Reset added in v1.3.0

func (m *ReplicationController) Reset()

func (*ReplicationController) Size added in v1.3.0

func (m *ReplicationController) Size() (n int)

func (*ReplicationController) String added in v1.3.0

func (this *ReplicationController) String() string

func (ReplicationController) SwaggerDoc added in v1.1.0

func (ReplicationController) SwaggerDoc() map[string]string

func (*ReplicationController) Unmarshal added in v1.3.0

func (m *ReplicationController) Unmarshal(data []byte) error

type ReplicationControllerCondition added in v1.5.0

type ReplicationControllerCondition struct {
	// Type of replication controller condition.
	Type ReplicationControllerConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=ReplicationControllerConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
	// The last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
	// The reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// A human readable message indicating details about the transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

ReplicationControllerCondition describes the state of a replication controller at a certain point.

func (*ReplicationControllerCondition) CodecDecodeSelf added in v1.5.0

func (x *ReplicationControllerCondition) CodecDecodeSelf(d *codec1978.Decoder)

func (*ReplicationControllerCondition) CodecEncodeSelf added in v1.5.0

func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder)

func (*ReplicationControllerCondition) Descriptor added in v1.5.0

func (*ReplicationControllerCondition) Descriptor() ([]byte, []int)

func (*ReplicationControllerCondition) Marshal added in v1.5.0

func (m *ReplicationControllerCondition) Marshal() (data []byte, err error)

func (*ReplicationControllerCondition) MarshalTo added in v1.5.0

func (m *ReplicationControllerCondition) MarshalTo(data []byte) (int, error)

func (*ReplicationControllerCondition) ProtoMessage added in v1.5.0

func (*ReplicationControllerCondition) ProtoMessage()

func (*ReplicationControllerCondition) Reset added in v1.5.0

func (m *ReplicationControllerCondition) Reset()

func (*ReplicationControllerCondition) Size added in v1.5.0

func (m *ReplicationControllerCondition) Size() (n int)

func (*ReplicationControllerCondition) String added in v1.5.0

func (this *ReplicationControllerCondition) String() string

func (ReplicationControllerCondition) SwaggerDoc added in v1.5.0

func (ReplicationControllerCondition) SwaggerDoc() map[string]string

func (*ReplicationControllerCondition) Unmarshal added in v1.5.0

func (m *ReplicationControllerCondition) Unmarshal(data []byte) error

type ReplicationControllerConditionType added in v1.5.0

type ReplicationControllerConditionType string
const (
	// ReplicationControllerReplicaFailure is added in a replication controller when one of its pods
	// fails to be created due to insufficient quota, limit ranges, pod security policy, node selectors,
	// etc. or deleted due to kubelet being down or finalizers are failing.
	ReplicationControllerReplicaFailure ReplicationControllerConditionType = "ReplicaFailure"
)

These are valid conditions of a replication controller.

func (*ReplicationControllerConditionType) CodecDecodeSelf added in v1.5.0

func (x *ReplicationControllerConditionType) CodecDecodeSelf(d *codec1978.Decoder)

func (ReplicationControllerConditionType) CodecEncodeSelf added in v1.5.0

type ReplicationControllerList

type ReplicationControllerList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of replication controllers.
	// More info: http://kubernetes.io/docs/user-guide/replication-controller
	Items []ReplicationController `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ReplicationControllerList is a collection of replication controllers.

func (*ReplicationControllerList) CodecDecodeSelf added in v1.2.0

func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ReplicationControllerList) CodecEncodeSelf added in v1.2.0

func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ReplicationControllerList) Descriptor added in v1.4.0

func (*ReplicationControllerList) Descriptor() ([]byte, []int)

func (*ReplicationControllerList) Marshal added in v1.3.0

func (m *ReplicationControllerList) Marshal() (data []byte, err error)

func (*ReplicationControllerList) MarshalTo added in v1.3.0

func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error)

func (*ReplicationControllerList) ProtoMessage added in v1.3.0

func (*ReplicationControllerList) ProtoMessage()

func (*ReplicationControllerList) Reset added in v1.3.0

func (m *ReplicationControllerList) Reset()

func (*ReplicationControllerList) Size added in v1.3.0

func (m *ReplicationControllerList) Size() (n int)

func (*ReplicationControllerList) String added in v1.3.0

func (this *ReplicationControllerList) String() string

func (ReplicationControllerList) SwaggerDoc added in v1.1.0

func (ReplicationControllerList) SwaggerDoc() map[string]string

func (*ReplicationControllerList) Unmarshal added in v1.3.0

func (m *ReplicationControllerList) Unmarshal(data []byte) error

type ReplicationControllerSpec

type ReplicationControllerSpec struct {
	// Replicas is the number of desired replicas.
	// This is a pointer to distinguish between explicit zero and unspecified.
	// Defaults to 1.
	// More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller
	// +optional
	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`

	// Minimum number of seconds for which a newly created pod should be ready
	// without any of its container crashing, for it to be considered available.
	// Defaults to 0 (pod will be considered available as soon as it is ready)
	// +optional
	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,4,opt,name=minReadySeconds"`

	// Selector is a label query over pods that should match the Replicas count.
	// If Selector is empty, it is defaulted to the labels present on the Pod template.
	// Label keys and values that must match in order to be controlled by this replication
	// controller, if empty defaulted to labels on Pod template.
	// More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
	// +optional
	Selector map[string]string `json:"selector,omitempty" protobuf:"bytes,2,rep,name=selector"`

	// Template is the object that describes the pod that will be created if
	// insufficient replicas are detected. This takes precedence over a TemplateRef.
	// More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template
	// +optional
	Template *PodTemplateSpec `json:"template,omitempty" protobuf:"bytes,3,opt,name=template"`
}

ReplicationControllerSpec is the specification of a replication controller.

func (*ReplicationControllerSpec) CodecDecodeSelf added in v1.2.0

func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*ReplicationControllerSpec) CodecEncodeSelf added in v1.2.0

func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*ReplicationControllerSpec) Descriptor added in v1.4.0

func (*ReplicationControllerSpec) Descriptor() ([]byte, []int)

func (*ReplicationControllerSpec) Marshal added in v1.3.0

func (m *ReplicationControllerSpec) Marshal() (data []byte, err error)

func (*ReplicationControllerSpec) MarshalTo added in v1.3.0

func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error)

func (*ReplicationControllerSpec) ProtoMessage added in v1.3.0

func (*ReplicationControllerSpec) ProtoMessage()

func (*ReplicationControllerSpec) Reset added in v1.3.0

func (m *ReplicationControllerSpec) Reset()

func (*ReplicationControllerSpec) Size added in v1.3.0

func (m *ReplicationControllerSpec) Size() (n int)

func (*ReplicationControllerSpec) String added in v1.3.0

func (this *ReplicationControllerSpec) String() string

func (ReplicationControllerSpec) SwaggerDoc added in v1.1.0

func (ReplicationControllerSpec) SwaggerDoc() map[string]string

func (*ReplicationControllerSpec) Unmarshal added in v1.3.0

func (m *ReplicationControllerSpec) Unmarshal(data []byte) error

type ReplicationControllerStatus

type ReplicationControllerStatus struct {
	// Replicas is the most recently oberved number of replicas.
	// More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller
	Replicas int32 `json:"replicas" protobuf:"varint,1,opt,name=replicas"`

	// The number of pods that have labels matching the labels of the pod template of the replication controller.
	// +optional
	FullyLabeledReplicas int32 `json:"fullyLabeledReplicas,omitempty" protobuf:"varint,2,opt,name=fullyLabeledReplicas"`

	// The number of ready replicas for this replication controller.
	// +optional
	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,4,opt,name=readyReplicas"`

	// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
	// +optional
	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,5,opt,name=availableReplicas"`

	// ObservedGeneration reflects the generation of the most recently observed replication controller.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"`

	// Represents the latest available observations of a replication controller's current state.
	// +optional
	Conditions []ReplicationControllerCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,6,rep,name=conditions"`
}

ReplicationControllerStatus represents the current status of a replication controller.

func (*ReplicationControllerStatus) CodecDecodeSelf added in v1.2.0

func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*ReplicationControllerStatus) CodecEncodeSelf added in v1.2.0

func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*ReplicationControllerStatus) Descriptor added in v1.4.0

func (*ReplicationControllerStatus) Descriptor() ([]byte, []int)

func (*ReplicationControllerStatus) Marshal added in v1.3.0

func (m *ReplicationControllerStatus) Marshal() (data []byte, err error)

func (*ReplicationControllerStatus) MarshalTo added in v1.3.0

func (m *ReplicationControllerStatus) MarshalTo(data []byte) (int, error)

func (*ReplicationControllerStatus) ProtoMessage added in v1.3.0

func (*ReplicationControllerStatus) ProtoMessage()

func (*ReplicationControllerStatus) Reset added in v1.3.0

func (m *ReplicationControllerStatus) Reset()

func (*ReplicationControllerStatus) Size added in v1.3.0

func (m *ReplicationControllerStatus) Size() (n int)

func (*ReplicationControllerStatus) String added in v1.3.0

func (this *ReplicationControllerStatus) String() string

func (ReplicationControllerStatus) SwaggerDoc added in v1.1.0

func (ReplicationControllerStatus) SwaggerDoc() map[string]string

func (*ReplicationControllerStatus) Unmarshal added in v1.3.0

func (m *ReplicationControllerStatus) Unmarshal(data []byte) error

type ResourceFieldSelector added in v1.3.0

type ResourceFieldSelector struct {
	// Container name: required for volumes, optional for env vars
	// +optional
	ContainerName string `json:"containerName,omitempty" protobuf:"bytes,1,opt,name=containerName"`
	// Required: resource to select
	Resource string `json:"resource" protobuf:"bytes,2,opt,name=resource"`
	// Specifies the output format of the exposed resources, defaults to "1"
	// +optional
	Divisor resource.Quantity `json:"divisor,omitempty" protobuf:"bytes,3,opt,name=divisor"`
}

ResourceFieldSelector represents container resources (cpu, memory) and their output format

func (*ResourceFieldSelector) CodecDecodeSelf added in v1.3.0

func (x *ResourceFieldSelector) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceFieldSelector) CodecEncodeSelf added in v1.3.0

func (x *ResourceFieldSelector) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceFieldSelector) Descriptor added in v1.4.0

func (*ResourceFieldSelector) Descriptor() ([]byte, []int)

func (*ResourceFieldSelector) Marshal added in v1.3.0

func (m *ResourceFieldSelector) Marshal() (data []byte, err error)

func (*ResourceFieldSelector) MarshalTo added in v1.3.0

func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error)

func (*ResourceFieldSelector) ProtoMessage added in v1.3.0

func (*ResourceFieldSelector) ProtoMessage()

func (*ResourceFieldSelector) Reset added in v1.3.0

func (m *ResourceFieldSelector) Reset()

func (*ResourceFieldSelector) Size added in v1.3.0

func (m *ResourceFieldSelector) Size() (n int)

func (*ResourceFieldSelector) String added in v1.3.0

func (this *ResourceFieldSelector) String() string

func (ResourceFieldSelector) SwaggerDoc added in v1.3.0

func (ResourceFieldSelector) SwaggerDoc() map[string]string

func (*ResourceFieldSelector) Unmarshal added in v1.3.0

func (m *ResourceFieldSelector) Unmarshal(data []byte) error

type ResourceList

type ResourceList map[ResourceName]resource.Quantity

ResourceList is a set of (resource name, quantity) pairs.

func (*ResourceList) CodecDecodeSelf added in v1.2.0

func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder)

func (ResourceList) CodecEncodeSelf added in v1.2.0

func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder)

type ResourceName

type ResourceName string

ResourceName is the name identifying various resources in a ResourceList.

const (
	// CPU, in cores. (500m = .5 cores)
	ResourceCPU ResourceName = "cpu"
	// Memory, in bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024)
	ResourceMemory ResourceName = "memory"
	// Volume size, in bytes (e,g. 5Gi = 5GiB = 5 * 1024 * 1024 * 1024)
	ResourceStorage ResourceName = "storage"
	// NVIDIA GPU, in devices. Alpha, might change: although fractional and allowing values >1, only one whole device per node is assigned.
	ResourceNvidiaGPU ResourceName = "alpha.kubernetes.io/nvidia-gpu"
)

Resource names must be not more than 63 characters, consisting of upper- or lower-case alphanumeric characters, with the -, _, and . characters allowed anywhere, except the first or last character. The default convention, matching that for annotations, is to use lower-case names, with dashes, rather than camel case, separating compound words. Fully-qualified resource typenames are constructed from a DNS-style subdomain, followed by a slash `/` and a name.

const (
	// Pods, number
	ResourcePods ResourceName = "pods"
	// Services, number
	ResourceServices ResourceName = "services"
	// ReplicationControllers, number
	ResourceReplicationControllers ResourceName = "replicationcontrollers"
	// ResourceQuotas, number
	ResourceQuotas ResourceName = "resourcequotas"
	// ResourceSecrets, number
	ResourceSecrets ResourceName = "secrets"
	// ResourceConfigMaps, number
	ResourceConfigMaps ResourceName = "configmaps"
	// ResourcePersistentVolumeClaims, number
	ResourcePersistentVolumeClaims ResourceName = "persistentvolumeclaims"
	// ResourceServicesNodePorts, number
	ResourceServicesNodePorts ResourceName = "services.nodeports"
	// ResourceServicesLoadBalancers, number
	ResourceServicesLoadBalancers ResourceName = "services.loadbalancers"
	// CPU request, in cores. (500m = .5 cores)
	ResourceRequestsCPU ResourceName = "requests.cpu"
	// Memory request, in bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024)
	ResourceRequestsMemory ResourceName = "requests.memory"
	// Storage request, in bytes
	ResourceRequestsStorage ResourceName = "requests.storage"
	// CPU limit, in cores. (500m = .5 cores)
	ResourceLimitsCPU ResourceName = "limits.cpu"
	// Memory limit, in bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024)
	ResourceLimitsMemory ResourceName = "limits.memory"
)

The following identify resource constants for Kubernetes object types

func (*ResourceName) CodecDecodeSelf added in v1.2.0

func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder)

func (ResourceName) CodecEncodeSelf added in v1.2.0

func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder)

type ResourceQuota

type ResourceQuota struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the desired quota.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec ResourceQuotaSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status defines the actual enforced quota and its current usage.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status ResourceQuotaStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ResourceQuota sets aggregate quota restrictions enforced per namespace

func (*ResourceQuota) CodecDecodeSelf added in v1.2.0

func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceQuota) CodecEncodeSelf added in v1.2.0

func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceQuota) Descriptor added in v1.4.0

func (*ResourceQuota) Descriptor() ([]byte, []int)

func (*ResourceQuota) Marshal added in v1.3.0

func (m *ResourceQuota) Marshal() (data []byte, err error)

func (*ResourceQuota) MarshalTo added in v1.3.0

func (m *ResourceQuota) MarshalTo(data []byte) (int, error)

func (*ResourceQuota) ProtoMessage added in v1.3.0

func (*ResourceQuota) ProtoMessage()

func (*ResourceQuota) Reset added in v1.3.0

func (m *ResourceQuota) Reset()

func (*ResourceQuota) Size added in v1.3.0

func (m *ResourceQuota) Size() (n int)

func (*ResourceQuota) String added in v1.3.0

func (this *ResourceQuota) String() string

func (ResourceQuota) SwaggerDoc added in v1.1.0

func (ResourceQuota) SwaggerDoc() map[string]string

func (*ResourceQuota) Unmarshal added in v1.3.0

func (m *ResourceQuota) Unmarshal(data []byte) error

type ResourceQuotaList

type ResourceQuotaList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is a list of ResourceQuota objects.
	// More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota
	Items []ResourceQuota `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ResourceQuotaList is a list of ResourceQuota items.

func (*ResourceQuotaList) CodecDecodeSelf added in v1.2.0

func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceQuotaList) CodecEncodeSelf added in v1.2.0

func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceQuotaList) Descriptor added in v1.4.0

func (*ResourceQuotaList) Descriptor() ([]byte, []int)

func (*ResourceQuotaList) Marshal added in v1.3.0

func (m *ResourceQuotaList) Marshal() (data []byte, err error)

func (*ResourceQuotaList) MarshalTo added in v1.3.0

func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error)

func (*ResourceQuotaList) ProtoMessage added in v1.3.0

func (*ResourceQuotaList) ProtoMessage()

func (*ResourceQuotaList) Reset added in v1.3.0

func (m *ResourceQuotaList) Reset()

func (*ResourceQuotaList) Size added in v1.3.0

func (m *ResourceQuotaList) Size() (n int)

func (*ResourceQuotaList) String added in v1.3.0

func (this *ResourceQuotaList) String() string

func (ResourceQuotaList) SwaggerDoc added in v1.1.0

func (ResourceQuotaList) SwaggerDoc() map[string]string

func (*ResourceQuotaList) Unmarshal added in v1.3.0

func (m *ResourceQuotaList) Unmarshal(data []byte) error

type ResourceQuotaScope added in v1.2.0

type ResourceQuotaScope string

A ResourceQuotaScope defines a filter that must match each object tracked by a quota

const (
	// Match all pod objects where spec.activeDeadlineSeconds
	ResourceQuotaScopeTerminating ResourceQuotaScope = "Terminating"
	// Match all pod objects where !spec.activeDeadlineSeconds
	ResourceQuotaScopeNotTerminating ResourceQuotaScope = "NotTerminating"
	// Match all pod objects that have best effort quality of service
	ResourceQuotaScopeBestEffort ResourceQuotaScope = "BestEffort"
	// Match all pod objects that do not have best effort quality of service
	ResourceQuotaScopeNotBestEffort ResourceQuotaScope = "NotBestEffort"
)

func (*ResourceQuotaScope) CodecDecodeSelf added in v1.2.0

func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder)

func (ResourceQuotaScope) CodecEncodeSelf added in v1.2.0

func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder)

type ResourceQuotaSpec

type ResourceQuotaSpec struct {
	// Hard is the set of desired hard limits for each named resource.
	// More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota
	// +optional
	Hard ResourceList `json:"hard,omitempty" protobuf:"bytes,1,rep,name=hard,casttype=ResourceList,castkey=ResourceName"`
	// A collection of filters that must match each object tracked by a quota.
	// If not specified, the quota matches all objects.
	// +optional
	Scopes []ResourceQuotaScope `json:"scopes,omitempty" protobuf:"bytes,2,rep,name=scopes,casttype=ResourceQuotaScope"`
}

ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

func (*ResourceQuotaSpec) CodecDecodeSelf added in v1.2.0

func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceQuotaSpec) CodecEncodeSelf added in v1.2.0

func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceQuotaSpec) Descriptor added in v1.4.0

func (*ResourceQuotaSpec) Descriptor() ([]byte, []int)

func (*ResourceQuotaSpec) Marshal added in v1.3.0

func (m *ResourceQuotaSpec) Marshal() (data []byte, err error)

func (*ResourceQuotaSpec) MarshalTo added in v1.3.0

func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error)

func (*ResourceQuotaSpec) ProtoMessage added in v1.3.0

func (*ResourceQuotaSpec) ProtoMessage()

func (*ResourceQuotaSpec) Reset added in v1.3.0

func (m *ResourceQuotaSpec) Reset()

func (*ResourceQuotaSpec) Size added in v1.3.0

func (m *ResourceQuotaSpec) Size() (n int)

func (*ResourceQuotaSpec) String added in v1.3.0

func (this *ResourceQuotaSpec) String() string

func (ResourceQuotaSpec) SwaggerDoc added in v1.1.0

func (ResourceQuotaSpec) SwaggerDoc() map[string]string

func (*ResourceQuotaSpec) Unmarshal added in v1.3.0

func (m *ResourceQuotaSpec) Unmarshal(data []byte) error

type ResourceQuotaStatus

type ResourceQuotaStatus struct {
	// Hard is the set of enforced hard limits for each named resource.
	// More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota
	// +optional
	Hard ResourceList `json:"hard,omitempty" protobuf:"bytes,1,rep,name=hard,casttype=ResourceList,castkey=ResourceName"`
	// Used is the current observed total usage of the resource in the namespace.
	// +optional
	Used ResourceList `json:"used,omitempty" protobuf:"bytes,2,rep,name=used,casttype=ResourceList,castkey=ResourceName"`
}

ResourceQuotaStatus defines the enforced hard limits and observed use.

func (*ResourceQuotaStatus) CodecDecodeSelf added in v1.2.0

func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceQuotaStatus) CodecEncodeSelf added in v1.2.0

func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceQuotaStatus) Descriptor added in v1.4.0

func (*ResourceQuotaStatus) Descriptor() ([]byte, []int)

func (*ResourceQuotaStatus) Marshal added in v1.3.0

func (m *ResourceQuotaStatus) Marshal() (data []byte, err error)

func (*ResourceQuotaStatus) MarshalTo added in v1.3.0

func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error)

func (*ResourceQuotaStatus) ProtoMessage added in v1.3.0

func (*ResourceQuotaStatus) ProtoMessage()

func (*ResourceQuotaStatus) Reset added in v1.3.0

func (m *ResourceQuotaStatus) Reset()

func (*ResourceQuotaStatus) Size added in v1.3.0

func (m *ResourceQuotaStatus) Size() (n int)

func (*ResourceQuotaStatus) String added in v1.3.0

func (this *ResourceQuotaStatus) String() string

func (ResourceQuotaStatus) SwaggerDoc added in v1.1.0

func (ResourceQuotaStatus) SwaggerDoc() map[string]string

func (*ResourceQuotaStatus) Unmarshal added in v1.3.0

func (m *ResourceQuotaStatus) Unmarshal(data []byte) error

type ResourceRequirements

type ResourceRequirements struct {
	// Limits describes the maximum amount of compute resources allowed.
	// More info: http://kubernetes.io/docs/user-guide/compute-resources/
	// +optional
	Limits ResourceList `json:"limits,omitempty" protobuf:"bytes,1,rep,name=limits,casttype=ResourceList,castkey=ResourceName"`
	// Requests describes the minimum amount of compute resources required.
	// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
	// otherwise to an implementation-defined value.
	// More info: http://kubernetes.io/docs/user-guide/compute-resources/
	// +optional
	Requests ResourceList `json:"requests,omitempty" protobuf:"bytes,2,rep,name=requests,casttype=ResourceList,castkey=ResourceName"`
}

ResourceRequirements describes the compute resource requirements.

func (*ResourceRequirements) CodecDecodeSelf added in v1.2.0

func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder)

func (*ResourceRequirements) CodecEncodeSelf added in v1.2.0

func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder)

func (*ResourceRequirements) Descriptor added in v1.4.0

func (*ResourceRequirements) Descriptor() ([]byte, []int)

func (*ResourceRequirements) Marshal added in v1.3.0

func (m *ResourceRequirements) Marshal() (data []byte, err error)

func (*ResourceRequirements) MarshalTo added in v1.3.0

func (m *ResourceRequirements) MarshalTo(data []byte) (int, error)

func (*ResourceRequirements) ProtoMessage added in v1.3.0

func (*ResourceRequirements) ProtoMessage()

func (*ResourceRequirements) Reset added in v1.3.0

func (m *ResourceRequirements) Reset()

func (*ResourceRequirements) Size added in v1.3.0

func (m *ResourceRequirements) Size() (n int)

func (*ResourceRequirements) String added in v1.3.0

func (this *ResourceRequirements) String() string

func (ResourceRequirements) SwaggerDoc added in v1.1.0

func (ResourceRequirements) SwaggerDoc() map[string]string

func (*ResourceRequirements) Unmarshal added in v1.3.0

func (m *ResourceRequirements) Unmarshal(data []byte) error

type RestartPolicy

type RestartPolicy string

RestartPolicy describes how the container should be restarted. Only one of the following restart policies may be specified. If none of the following policies is specified, the default one is RestartPolicyAlways.

const (
	RestartPolicyAlways    RestartPolicy = "Always"
	RestartPolicyOnFailure RestartPolicy = "OnFailure"
	RestartPolicyNever     RestartPolicy = "Never"
)

func (*RestartPolicy) CodecDecodeSelf added in v1.2.0

func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder)

func (RestartPolicy) CodecEncodeSelf added in v1.2.0

func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder)

type SELinuxOptions added in v0.17.0

type SELinuxOptions struct {
	// User is a SELinux user label that applies to the container.
	// +optional
	User string `json:"user,omitempty" protobuf:"bytes,1,opt,name=user"`
	// Role is a SELinux role label that applies to the container.
	// +optional
	Role string `json:"role,omitempty" protobuf:"bytes,2,opt,name=role"`
	// Type is a SELinux type label that applies to the container.
	// +optional
	Type string `json:"type,omitempty" protobuf:"bytes,3,opt,name=type"`
	// Level is SELinux level label that applies to the container.
	// +optional
	Level string `json:"level,omitempty" protobuf:"bytes,4,opt,name=level"`
}

SELinuxOptions are the labels to be applied to the container

func (*SELinuxOptions) CodecDecodeSelf added in v1.2.0

func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*SELinuxOptions) CodecEncodeSelf added in v1.2.0

func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*SELinuxOptions) Descriptor added in v1.4.0

func (*SELinuxOptions) Descriptor() ([]byte, []int)

func (*SELinuxOptions) Marshal added in v1.3.0

func (m *SELinuxOptions) Marshal() (data []byte, err error)

func (*SELinuxOptions) MarshalTo added in v1.3.0

func (m *SELinuxOptions) MarshalTo(data []byte) (int, error)

func (*SELinuxOptions) ProtoMessage added in v1.3.0

func (*SELinuxOptions) ProtoMessage()

func (*SELinuxOptions) Reset added in v1.3.0

func (m *SELinuxOptions) Reset()

func (*SELinuxOptions) Size added in v1.3.0

func (m *SELinuxOptions) Size() (n int)

func (*SELinuxOptions) String added in v1.3.0

func (this *SELinuxOptions) String() string

func (SELinuxOptions) SwaggerDoc added in v1.1.0

func (SELinuxOptions) SwaggerDoc() map[string]string

func (*SELinuxOptions) Unmarshal added in v1.3.0

func (m *SELinuxOptions) Unmarshal(data []byte) error

type Secret

type Secret struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN
	// or leading dot followed by valid DNS_SUBDOMAIN.
	// The serialized form of the secret data is a base64 encoded string,
	// representing the arbitrary (possibly non-string) data value here.
	// Described in https://tools.ietf.org/html/rfc4648#section-4
	// +optional
	Data map[string][]byte `json:"data,omitempty" protobuf:"bytes,2,rep,name=data"`

	// stringData allows specifying non-binary secret data in string form.
	// It is provided as a write-only convenience method.
	// All keys and values are merged into the data field on write, overwriting any existing values.
	// It is never output when reading from the API.
	// +k8s:conversion-gen=false
	// +optional
	StringData map[string]string `json:"stringData,omitempty" protobuf:"bytes,4,rep,name=stringData"`

	// Used to facilitate programmatic handling of secret data.
	// +optional
	Type SecretType `json:"type,omitempty" protobuf:"bytes,3,opt,name=type,casttype=SecretType"`
}

Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

func (*Secret) CodecDecodeSelf added in v1.2.0

func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder)

func (*Secret) CodecEncodeSelf added in v1.2.0

func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder)

func (*Secret) Descriptor added in v1.4.0

func (*Secret) Descriptor() ([]byte, []int)

func (*Secret) Marshal added in v1.3.0

func (m *Secret) Marshal() (data []byte, err error)

func (*Secret) MarshalTo added in v1.3.0

func (m *Secret) MarshalTo(data []byte) (int, error)

func (*Secret) ProtoMessage added in v1.3.0

func (*Secret) ProtoMessage()

func (*Secret) Reset added in v1.3.0

func (m *Secret) Reset()

func (*Secret) Size added in v1.3.0

func (m *Secret) Size() (n int)

func (*Secret) String added in v1.3.0

func (this *Secret) String() string

func (Secret) SwaggerDoc added in v1.1.0

func (Secret) SwaggerDoc() map[string]string

func (*Secret) Unmarshal added in v1.3.0

func (m *Secret) Unmarshal(data []byte) error

type SecretKeySelector added in v1.2.0

type SecretKeySelector struct {
	// The name of the secret in the pod's namespace to select from.
	LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
	// The key of the secret to select from.  Must be a valid secret key.
	Key string `json:"key" protobuf:"bytes,2,opt,name=key"`
}

SecretKeySelector selects a key of a Secret.

func (*SecretKeySelector) CodecDecodeSelf added in v1.2.0

func (x *SecretKeySelector) CodecDecodeSelf(d *codec1978.Decoder)

func (*SecretKeySelector) CodecEncodeSelf added in v1.2.0

func (x *SecretKeySelector) CodecEncodeSelf(e *codec1978.Encoder)

func (*SecretKeySelector) Descriptor added in v1.4.0

func (*SecretKeySelector) Descriptor() ([]byte, []int)

func (*SecretKeySelector) Marshal added in v1.3.0

func (m *SecretKeySelector) Marshal() (data []byte, err error)

func (*SecretKeySelector) MarshalTo added in v1.3.0

func (m *SecretKeySelector) MarshalTo(data []byte) (int, error)

func (*SecretKeySelector) ProtoMessage added in v1.3.0

func (*SecretKeySelector) ProtoMessage()

func (*SecretKeySelector) Reset added in v1.3.0

func (m *SecretKeySelector) Reset()

func (*SecretKeySelector) Size added in v1.3.0

func (m *SecretKeySelector) Size() (n int)

func (*SecretKeySelector) String added in v1.3.0

func (this *SecretKeySelector) String() string

func (SecretKeySelector) SwaggerDoc added in v1.2.0

func (SecretKeySelector) SwaggerDoc() map[string]string

func (*SecretKeySelector) Unmarshal added in v1.3.0

func (m *SecretKeySelector) Unmarshal(data []byte) error

type SecretList

type SecretList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is a list of secret objects.
	// More info: http://kubernetes.io/docs/user-guide/secrets
	Items []Secret `json:"items" protobuf:"bytes,2,rep,name=items"`
}

SecretList is a list of Secret.

func (*SecretList) CodecDecodeSelf added in v1.2.0

func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder)

func (*SecretList) CodecEncodeSelf added in v1.2.0

func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder)

func (*SecretList) Descriptor added in v1.4.0

func (*SecretList) Descriptor() ([]byte, []int)

func (*SecretList) Marshal added in v1.3.0

func (m *SecretList) Marshal() (data []byte, err error)

func (*SecretList) MarshalTo added in v1.3.0

func (m *SecretList) MarshalTo(data []byte) (int, error)

func (*SecretList) ProtoMessage added in v1.3.0

func (*SecretList) ProtoMessage()

func (*SecretList) Reset added in v1.3.0

func (m *SecretList) Reset()

func (*SecretList) Size added in v1.3.0

func (m *SecretList) Size() (n int)

func (*SecretList) String added in v1.3.0

func (this *SecretList) String() string

func (SecretList) SwaggerDoc added in v1.1.0

func (SecretList) SwaggerDoc() map[string]string

func (*SecretList) Unmarshal added in v1.3.0

func (m *SecretList) Unmarshal(data []byte) error

type SecretType

type SecretType string

func (*SecretType) CodecDecodeSelf added in v1.2.0

func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder)

func (SecretType) CodecEncodeSelf added in v1.2.0

func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder)

type SecretVolumeSource

type SecretVolumeSource struct {
	// Name of the secret in the pod's namespace to use.
	// More info: http://kubernetes.io/docs/user-guide/volumes#secrets
	// +optional
	SecretName string `json:"secretName,omitempty" protobuf:"bytes,1,opt,name=secretName"`
	// If unspecified, each key-value pair in the Data field of the referenced
	// Secret will be projected into the volume as a file whose name is the
	// key and content is the value. If specified, the listed keys will be
	// projected into the specified paths, and unlisted keys will not be
	// present. If a key is specified which is not present in the Secret,
	// the volume setup will error. Paths must be relative and may not contain
	// the '..' path or start with '..'.
	// +optional
	Items []KeyToPath `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"`
	// Optional: mode bits to use on created files by default. Must be a
	// value between 0 and 0777. Defaults to 0644.
	// Directories within the path are not affected by this setting.
	// This might be in conflict with other options that affect the file
	// mode, like fsGroup, and the result can be other mode bits set.
	// +optional
	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"bytes,3,opt,name=defaultMode"`
}

Adapts a Secret into a volume.

The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.

func (*SecretVolumeSource) CodecDecodeSelf added in v1.2.0

func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*SecretVolumeSource) CodecEncodeSelf added in v1.2.0

func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*SecretVolumeSource) Descriptor added in v1.4.0

func (*SecretVolumeSource) Descriptor() ([]byte, []int)

func (*SecretVolumeSource) Marshal added in v1.3.0

func (m *SecretVolumeSource) Marshal() (data []byte, err error)

func (*SecretVolumeSource) MarshalTo added in v1.3.0

func (m *SecretVolumeSource) MarshalTo(data []byte) (int, error)

func (*SecretVolumeSource) ProtoMessage added in v1.3.0

func (*SecretVolumeSource) ProtoMessage()

func (*SecretVolumeSource) Reset added in v1.3.0

func (m *SecretVolumeSource) Reset()

func (*SecretVolumeSource) Size added in v1.3.0

func (m *SecretVolumeSource) Size() (n int)

func (*SecretVolumeSource) String added in v1.3.0

func (this *SecretVolumeSource) String() string

func (SecretVolumeSource) SwaggerDoc added in v1.1.0

func (SecretVolumeSource) SwaggerDoc() map[string]string

func (*SecretVolumeSource) Unmarshal added in v1.3.0

func (m *SecretVolumeSource) Unmarshal(data []byte) error

type SecurityContext added in v0.17.0

type SecurityContext struct {
	// The capabilities to add/drop when running containers.
	// Defaults to the default set of capabilities granted by the container runtime.
	// +optional
	Capabilities *Capabilities `json:"capabilities,omitempty" protobuf:"bytes,1,opt,name=capabilities"`
	// Run container in privileged mode.
	// Processes in privileged containers are essentially equivalent to root on the host.
	// Defaults to false.
	// +optional
	Privileged *bool `json:"privileged,omitempty" protobuf:"varint,2,opt,name=privileged"`
	// The SELinux context to be applied to the container.
	// If unspecified, the container runtime will allocate a random SELinux context for each
	// container.  May also be set in PodSecurityContext.  If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes precedence.
	// +optional
	SELinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty" protobuf:"bytes,3,opt,name=seLinuxOptions"`
	// The UID to run the entrypoint of the container process.
	// Defaults to user specified in image metadata if unspecified.
	// May also be set in PodSecurityContext.  If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes precedence.
	// +optional
	RunAsUser *int64 `json:"runAsUser,omitempty" protobuf:"varint,4,opt,name=runAsUser"`
	// Indicates that the container must run as a non-root user.
	// If true, the Kubelet will validate the image at runtime to ensure that it
	// does not run as UID 0 (root) and fail to start the container if it does.
	// If unset or false, no such validation will be performed.
	// May also be set in PodSecurityContext.  If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes precedence.
	// +optional
	RunAsNonRoot *bool `json:"runAsNonRoot,omitempty" protobuf:"varint,5,opt,name=runAsNonRoot"`
	// Whether this container has a read-only root filesystem.
	// Default is false.
	// +optional
	ReadOnlyRootFilesystem *bool `json:"readOnlyRootFilesystem,omitempty" protobuf:"varint,6,opt,name=readOnlyRootFilesystem"`
}

SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

func (*SecurityContext) CodecDecodeSelf added in v1.2.0

func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder)

func (*SecurityContext) CodecEncodeSelf added in v1.2.0

func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder)

func (*SecurityContext) Descriptor added in v1.4.0

func (*SecurityContext) Descriptor() ([]byte, []int)

func (*SecurityContext) Marshal added in v1.3.0

func (m *SecurityContext) Marshal() (data []byte, err error)

func (*SecurityContext) MarshalTo added in v1.3.0

func (m *SecurityContext) MarshalTo(data []byte) (int, error)

func (*SecurityContext) ProtoMessage added in v1.3.0

func (*SecurityContext) ProtoMessage()

func (*SecurityContext) Reset added in v1.3.0

func (m *SecurityContext) Reset()

func (*SecurityContext) Size added in v1.3.0

func (m *SecurityContext) Size() (n int)

func (*SecurityContext) String added in v1.3.0

func (this *SecurityContext) String() string

func (SecurityContext) SwaggerDoc added in v1.1.0

func (SecurityContext) SwaggerDoc() map[string]string

func (*SecurityContext) Unmarshal added in v1.3.0

func (m *SecurityContext) Unmarshal(data []byte) error

type SerializedReference added in v0.17.0

type SerializedReference struct {
	unversioned.TypeMeta `json:",inline"`
	// The reference to an object in the system.
	// +optional
	Reference ObjectReference `json:"reference,omitempty" protobuf:"bytes,1,opt,name=reference"`
}

SerializedReference is a reference to serialized object.

func (*SerializedReference) CodecDecodeSelf added in v1.2.0

func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder)

func (*SerializedReference) CodecEncodeSelf added in v1.2.0

func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder)

func (*SerializedReference) Descriptor added in v1.4.0

func (*SerializedReference) Descriptor() ([]byte, []int)

func (*SerializedReference) Marshal added in v1.3.0

func (m *SerializedReference) Marshal() (data []byte, err error)

func (*SerializedReference) MarshalTo added in v1.3.0

func (m *SerializedReference) MarshalTo(data []byte) (int, error)

func (*SerializedReference) ProtoMessage added in v1.3.0

func (*SerializedReference) ProtoMessage()

func (*SerializedReference) Reset added in v1.3.0

func (m *SerializedReference) Reset()

func (*SerializedReference) Size added in v1.3.0

func (m *SerializedReference) Size() (n int)

func (*SerializedReference) String added in v1.3.0

func (this *SerializedReference) String() string

func (SerializedReference) SwaggerDoc added in v1.1.0

func (SerializedReference) SwaggerDoc() map[string]string

func (*SerializedReference) Unmarshal added in v1.3.0

func (m *SerializedReference) Unmarshal(data []byte) error

type Service

type Service struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the behavior of a service.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec ServiceSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Most recently observed status of the service.
	// Populated by the system.
	// Read-only.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Status ServiceStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

func (*Service) CodecDecodeSelf added in v1.2.0

func (x *Service) CodecDecodeSelf(d *codec1978.Decoder)

func (*Service) CodecEncodeSelf added in v1.2.0

func (x *Service) CodecEncodeSelf(e *codec1978.Encoder)

func (*Service) Descriptor added in v1.4.0

func (*Service) Descriptor() ([]byte, []int)

func (*Service) Marshal added in v1.3.0

func (m *Service) Marshal() (data []byte, err error)

func (*Service) MarshalTo added in v1.3.0

func (m *Service) MarshalTo(data []byte) (int, error)

func (*Service) ProtoMessage added in v1.3.0

func (*Service) ProtoMessage()

func (*Service) Reset added in v1.3.0

func (m *Service) Reset()

func (*Service) Size added in v1.3.0

func (m *Service) Size() (n int)

func (*Service) String added in v1.3.0

func (this *Service) String() string

func (Service) SwaggerDoc added in v1.1.0

func (Service) SwaggerDoc() map[string]string

func (*Service) Unmarshal added in v1.3.0

func (m *Service) Unmarshal(data []byte) error

type ServiceAccount added in v0.18.0

type ServiceAccount struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount.
	// More info: http://kubernetes.io/docs/user-guide/secrets
	// +optional
	Secrets []ObjectReference `json:"secrets,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,2,rep,name=secrets"`

	// ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images
	// in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets
	// can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet.
	// More info: http://kubernetes.io/docs/user-guide/secrets#manually-specifying-an-imagepullsecret
	// +optional
	ImagePullSecrets []LocalObjectReference `json:"imagePullSecrets,omitempty" protobuf:"bytes,3,rep,name=imagePullSecrets"`
}

ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

func (*ServiceAccount) CodecDecodeSelf added in v1.2.0

func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceAccount) CodecEncodeSelf added in v1.2.0

func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceAccount) Descriptor added in v1.4.0

func (*ServiceAccount) Descriptor() ([]byte, []int)

func (*ServiceAccount) Marshal added in v1.3.0

func (m *ServiceAccount) Marshal() (data []byte, err error)

func (*ServiceAccount) MarshalTo added in v1.3.0

func (m *ServiceAccount) MarshalTo(data []byte) (int, error)

func (*ServiceAccount) ProtoMessage added in v1.3.0

func (*ServiceAccount) ProtoMessage()

func (*ServiceAccount) Reset added in v1.3.0

func (m *ServiceAccount) Reset()

func (*ServiceAccount) Size added in v1.3.0

func (m *ServiceAccount) Size() (n int)

func (*ServiceAccount) String added in v1.3.0

func (this *ServiceAccount) String() string

func (ServiceAccount) SwaggerDoc added in v1.1.0

func (ServiceAccount) SwaggerDoc() map[string]string

func (*ServiceAccount) Unmarshal added in v1.3.0

func (m *ServiceAccount) Unmarshal(data []byte) error

type ServiceAccountList added in v0.18.0

type ServiceAccountList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of ServiceAccounts.
	// More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts
	Items []ServiceAccount `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ServiceAccountList is a list of ServiceAccount objects

func (*ServiceAccountList) CodecDecodeSelf added in v1.2.0

func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceAccountList) CodecEncodeSelf added in v1.2.0

func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceAccountList) Descriptor added in v1.4.0

func (*ServiceAccountList) Descriptor() ([]byte, []int)

func (*ServiceAccountList) Marshal added in v1.3.0

func (m *ServiceAccountList) Marshal() (data []byte, err error)

func (*ServiceAccountList) MarshalTo added in v1.3.0

func (m *ServiceAccountList) MarshalTo(data []byte) (int, error)

func (*ServiceAccountList) ProtoMessage added in v1.3.0

func (*ServiceAccountList) ProtoMessage()

func (*ServiceAccountList) Reset added in v1.3.0

func (m *ServiceAccountList) Reset()

func (*ServiceAccountList) Size added in v1.3.0

func (m *ServiceAccountList) Size() (n int)

func (*ServiceAccountList) String added in v1.3.0

func (this *ServiceAccountList) String() string

func (ServiceAccountList) SwaggerDoc added in v1.1.0

func (ServiceAccountList) SwaggerDoc() map[string]string

func (*ServiceAccountList) Unmarshal added in v1.3.0

func (m *ServiceAccountList) Unmarshal(data []byte) error

type ServiceAffinity added in v0.18.0

type ServiceAffinity string

Session Affinity Type string

const (
	// ServiceAffinityClientIP is the Client IP based.
	ServiceAffinityClientIP ServiceAffinity = "ClientIP"

	// ServiceAffinityNone - no session affinity.
	ServiceAffinityNone ServiceAffinity = "None"
)

func (*ServiceAffinity) CodecDecodeSelf added in v1.2.0

func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder)

func (ServiceAffinity) CodecEncodeSelf added in v1.2.0

func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder)

type ServiceList

type ServiceList struct {
	unversioned.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of services
	Items []Service `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ServiceList holds a list of services.

func (*ServiceList) CodecDecodeSelf added in v1.2.0

func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceList) CodecEncodeSelf added in v1.2.0

func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceList) Descriptor added in v1.4.0

func (*ServiceList) Descriptor() ([]byte, []int)

func (*ServiceList) Marshal added in v1.3.0

func (m *ServiceList) Marshal() (data []byte, err error)

func (*ServiceList) MarshalTo added in v1.3.0

func (m *ServiceList) MarshalTo(data []byte) (int, error)

func (*ServiceList) ProtoMessage added in v1.3.0

func (*ServiceList) ProtoMessage()

func (*ServiceList) Reset added in v1.3.0

func (m *ServiceList) Reset()

func (*ServiceList) Size added in v1.3.0

func (m *ServiceList) Size() (n int)

func (*ServiceList) String added in v1.3.0

func (this *ServiceList) String() string

func (ServiceList) SwaggerDoc added in v1.1.0

func (ServiceList) SwaggerDoc() map[string]string

func (*ServiceList) Unmarshal added in v1.3.0

func (m *ServiceList) Unmarshal(data []byte) error

type ServicePort

type ServicePort struct {
	// The name of this port within the service. This must be a DNS_LABEL.
	// All ports within a ServiceSpec must have unique names. This maps to
	// the 'Name' field in EndpointPort objects.
	// Optional if only one ServicePort is defined on this service.
	// +optional
	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`

	// The IP protocol for this port. Supports "TCP" and "UDP".
	// Default is TCP.
	// +optional
	Protocol Protocol `json:"protocol,omitempty" protobuf:"bytes,2,opt,name=protocol,casttype=Protocol"`

	// The port that will be exposed by this service.
	Port int32 `json:"port" protobuf:"varint,3,opt,name=port"`

	// Number or name of the port to access on the pods targeted by the service.
	// Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
	// If this is a string, it will be looked up as a named port in the
	// target Pod's container ports. If this is not specified, the value
	// of the 'port' field is used (an identity map).
	// This field is ignored for services with clusterIP=None, and should be
	// omitted or set equal to the 'port' field.
	// More info: http://kubernetes.io/docs/user-guide/services#defining-a-service
	// +optional
	TargetPort intstr.IntOrString `json:"targetPort,omitempty" protobuf:"bytes,4,opt,name=targetPort"`

	// The port on each node on which this service is exposed when type=NodePort or LoadBalancer.
	// Usually assigned by the system. If specified, it will be allocated to the service
	// if unused or else creation of the service will fail.
	// Default is to auto-allocate a port if the ServiceType of this Service requires one.
	// More info: http://kubernetes.io/docs/user-guide/services#type--nodeport
	// +optional
	NodePort int32 `json:"nodePort,omitempty" protobuf:"varint,5,opt,name=nodePort"`
}

ServicePort contains information on service's port.

func (*ServicePort) CodecDecodeSelf added in v1.2.0

func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServicePort) CodecEncodeSelf added in v1.2.0

func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServicePort) Descriptor added in v1.4.0

func (*ServicePort) Descriptor() ([]byte, []int)

func (*ServicePort) Marshal added in v1.3.0

func (m *ServicePort) Marshal() (data []byte, err error)

func (*ServicePort) MarshalTo added in v1.3.0

func (m *ServicePort) MarshalTo(data []byte) (int, error)

func (*ServicePort) ProtoMessage added in v1.3.0

func (*ServicePort) ProtoMessage()

func (*ServicePort) Reset added in v1.3.0

func (m *ServicePort) Reset()

func (*ServicePort) Size added in v1.3.0

func (m *ServicePort) Size() (n int)

func (*ServicePort) String added in v1.3.0

func (this *ServicePort) String() string

func (ServicePort) SwaggerDoc added in v1.1.0

func (ServicePort) SwaggerDoc() map[string]string

func (*ServicePort) Unmarshal added in v1.3.0

func (m *ServicePort) Unmarshal(data []byte) error

type ServiceProxyOptions added in v1.2.0

type ServiceProxyOptions struct {
	unversioned.TypeMeta `json:",inline"`

	// Path is the part of URLs that include service endpoints, suffixes,
	// and parameters to use for the current proxy request to service.
	// For example, the whole request URL is
	// http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy.
	// Path is _search?q=user:kimchy.
	// +optional
	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
}

ServiceProxyOptions is the query options to a Service's proxy call.

func (*ServiceProxyOptions) CodecDecodeSelf added in v1.2.0

func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceProxyOptions) CodecEncodeSelf added in v1.2.0

func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceProxyOptions) Descriptor added in v1.4.0

func (*ServiceProxyOptions) Descriptor() ([]byte, []int)

func (*ServiceProxyOptions) Marshal added in v1.3.0

func (m *ServiceProxyOptions) Marshal() (data []byte, err error)

func (*ServiceProxyOptions) MarshalTo added in v1.3.0

func (m *ServiceProxyOptions) MarshalTo(data []byte) (int, error)

func (*ServiceProxyOptions) ProtoMessage added in v1.3.0

func (*ServiceProxyOptions) ProtoMessage()

func (*ServiceProxyOptions) Reset added in v1.3.0

func (m *ServiceProxyOptions) Reset()

func (*ServiceProxyOptions) Size added in v1.3.0

func (m *ServiceProxyOptions) Size() (n int)

func (*ServiceProxyOptions) String added in v1.3.0

func (this *ServiceProxyOptions) String() string

func (ServiceProxyOptions) SwaggerDoc added in v1.2.0

func (ServiceProxyOptions) SwaggerDoc() map[string]string

func (*ServiceProxyOptions) Unmarshal added in v1.3.0

func (m *ServiceProxyOptions) Unmarshal(data []byte) error

type ServiceSpec

type ServiceSpec struct {
	// The list of ports that are exposed by this service.
	// More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies
	Ports []ServicePort `json:"ports" patchStrategy:"merge" patchMergeKey:"port" protobuf:"bytes,1,rep,name=ports"`

	// Route service traffic to pods with label keys and values matching this
	// selector. If empty or not present, the service is assumed to have an
	// external process managing its endpoints, which Kubernetes will not
	// modify. Only applies to types ClusterIP, NodePort, and LoadBalancer.
	// Ignored if type is ExternalName.
	// More info: http://kubernetes.io/docs/user-guide/services#overview
	// +optional
	Selector map[string]string `json:"selector,omitempty" protobuf:"bytes,2,rep,name=selector"`

	// clusterIP is the IP address of the service and is usually assigned
	// randomly by the master. If an address is specified manually and is not in
	// use by others, it will be allocated to the service; otherwise, creation
	// of the service will fail. This field can not be changed through updates.
	// Valid values are "None", empty string (""), or a valid IP address. "None"
	// can be specified for headless services when proxying is not required.
	// Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if
	// type is ExternalName.
	// More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies
	// +optional
	ClusterIP string `json:"clusterIP,omitempty" protobuf:"bytes,3,opt,name=clusterIP"`

	// type determines how the Service is exposed. Defaults to ClusterIP. Valid
	// options are ExternalName, ClusterIP, NodePort, and LoadBalancer.
	// "ExternalName" maps to the specified externalName.
	// "ClusterIP" allocates a cluster-internal IP address for load-balancing to
	// endpoints. Endpoints are determined by the selector or if that is not
	// specified, by manual construction of an Endpoints object. If clusterIP is
	// "None", no virtual IP is allocated and the endpoints are published as a
	// set of endpoints rather than a stable IP.
	// "NodePort" builds on ClusterIP and allocates a port on every node which
	// routes to the clusterIP.
	// "LoadBalancer" builds on NodePort and creates an
	// external load-balancer (if supported in the current cloud) which routes
	// to the clusterIP.
	// More info: http://kubernetes.io/docs/user-guide/services#overview
	// +optional
	Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"`

	// externalIPs is a list of IP addresses for which nodes in the cluster
	// will also accept traffic for this service.  These IPs are not managed by
	// Kubernetes.  The user is responsible for ensuring that traffic arrives
	// at a node with this IP.  A common example is external load-balancers
	// that are not part of the Kubernetes system.  A previous form of this
	// functionality exists as the deprecatedPublicIPs field.  When using this
	// field, callers should also clear the deprecatedPublicIPs field.
	// +optional
	ExternalIPs []string `json:"externalIPs,omitempty" protobuf:"bytes,5,rep,name=externalIPs"`

	// deprecatedPublicIPs is deprecated and replaced by the externalIPs field
	// with almost the exact same semantics.  This field is retained in the v1
	// API for compatibility until at least 8/20/2016.  It will be removed from
	// any new API revisions.  If both deprecatedPublicIPs *and* externalIPs are
	// set, deprecatedPublicIPs is used.
	// +k8s:conversion-gen=false
	// +optional
	DeprecatedPublicIPs []string `json:"deprecatedPublicIPs,omitempty" protobuf:"bytes,6,rep,name=deprecatedPublicIPs"`

	// Supports "ClientIP" and "None". Used to maintain session affinity.
	// Enable client IP based session affinity.
	// Must be ClientIP or None.
	// Defaults to None.
	// More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies
	// +optional
	SessionAffinity ServiceAffinity `json:"sessionAffinity,omitempty" protobuf:"bytes,7,opt,name=sessionAffinity,casttype=ServiceAffinity"`

	// Only applies to Service Type: LoadBalancer
	// LoadBalancer will get created with the IP specified in this field.
	// This feature depends on whether the underlying cloud-provider supports specifying
	// the loadBalancerIP when a load balancer is created.
	// This field will be ignored if the cloud-provider does not support the feature.
	// +optional
	LoadBalancerIP string `json:"loadBalancerIP,omitempty" protobuf:"bytes,8,opt,name=loadBalancerIP"`

	// If specified and supported by the platform, this will restrict traffic through the cloud-provider
	// load-balancer will be restricted to the specified client IPs. This field will be ignored if the
	// cloud-provider does not support the feature."
	// More info: http://kubernetes.io/docs/user-guide/services-firewalls
	// +optional
	LoadBalancerSourceRanges []string `json:"loadBalancerSourceRanges,omitempty" protobuf:"bytes,9,opt,name=loadBalancerSourceRanges"`

	// externalName is the external reference that kubedns or equivalent will
	// return as a CNAME record for this service. No proxying will be involved.
	// Must be a valid DNS name and requires Type to be ExternalName.
	// +optional
	ExternalName string `json:"externalName,omitempty" protobuf:"bytes,10,opt,name=externalName"`
}

ServiceSpec describes the attributes that a user creates on a service.

func (*ServiceSpec) CodecDecodeSelf added in v1.2.0

func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceSpec) CodecEncodeSelf added in v1.2.0

func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceSpec) Descriptor added in v1.4.0

func (*ServiceSpec) Descriptor() ([]byte, []int)

func (*ServiceSpec) Marshal added in v1.3.0

func (m *ServiceSpec) Marshal() (data []byte, err error)

func (*ServiceSpec) MarshalTo added in v1.3.0

func (m *ServiceSpec) MarshalTo(data []byte) (int, error)

func (*ServiceSpec) ProtoMessage added in v1.3.0

func (*ServiceSpec) ProtoMessage()

func (*ServiceSpec) Reset added in v1.3.0

func (m *ServiceSpec) Reset()

func (*ServiceSpec) Size added in v1.3.0

func (m *ServiceSpec) Size() (n int)

func (*ServiceSpec) String added in v1.3.0

func (this *ServiceSpec) String() string

func (ServiceSpec) SwaggerDoc added in v1.1.0

func (ServiceSpec) SwaggerDoc() map[string]string

func (*ServiceSpec) Unmarshal added in v1.3.0

func (m *ServiceSpec) Unmarshal(data []byte) error

type ServiceStatus

type ServiceStatus struct {
	// LoadBalancer contains the current status of the load-balancer,
	// if one is present.
	// +optional
	LoadBalancer LoadBalancerStatus `json:"loadBalancer,omitempty" protobuf:"bytes,1,opt,name=loadBalancer"`
}

ServiceStatus represents the current status of a service.

func (*ServiceStatus) CodecDecodeSelf added in v1.2.0

func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder)

func (*ServiceStatus) CodecEncodeSelf added in v1.2.0

func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder)

func (*ServiceStatus) Descriptor added in v1.4.0

func (*ServiceStatus) Descriptor() ([]byte, []int)

func (*ServiceStatus) Marshal added in v1.3.0

func (m *ServiceStatus) Marshal() (data []byte, err error)

func (*ServiceStatus) MarshalTo added in v1.3.0

func (m *ServiceStatus) MarshalTo(data []byte) (int, error)

func (*ServiceStatus) ProtoMessage added in v1.3.0

func (*ServiceStatus) ProtoMessage()

func (*ServiceStatus) Reset added in v1.3.0

func (m *ServiceStatus) Reset()

func (*ServiceStatus) Size added in v1.3.0

func (m *ServiceStatus) Size() (n int)

func (*ServiceStatus) String added in v1.3.0

func (this *ServiceStatus) String() string

func (ServiceStatus) SwaggerDoc added in v1.1.0

func (ServiceStatus) SwaggerDoc() map[string]string

func (*ServiceStatus) Unmarshal added in v1.3.0

func (m *ServiceStatus) Unmarshal(data []byte) error

type ServiceType added in v0.18.0

type ServiceType string

Service Type string describes ingress methods for a service

const (
	// ServiceTypeClusterIP means a service will only be accessible inside the
	// cluster, via the cluster IP.
	ServiceTypeClusterIP ServiceType = "ClusterIP"

	// ServiceTypeNodePort means a service will be exposed on one port of
	// every node, in addition to 'ClusterIP' type.
	ServiceTypeNodePort ServiceType = "NodePort"

	// ServiceTypeLoadBalancer means a service will be exposed via an
	// external load balancer (if the cloud provider supports it), in addition
	// to 'NodePort' type.
	ServiceTypeLoadBalancer ServiceType = "LoadBalancer"

	// ServiceTypeExternalName means a service consists of only a reference to
	// an external name that kubedns or equivalent will return as a CNAME
	// record, with no exposing or proxying of any pods involved.
	ServiceTypeExternalName ServiceType = "ExternalName"
)

func (*ServiceType) CodecDecodeSelf added in v1.2.0

func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder)

func (ServiceType) CodecEncodeSelf added in v1.2.0

func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder)

type StorageMedium added in v0.18.0

type StorageMedium string

StorageMedium defines ways that storage can be allocated to a volume.

const (
	StorageMediumDefault StorageMedium = ""       // use whatever the default is for the node
	StorageMediumMemory  StorageMedium = "Memory" // use memory (tmpfs)
)

func (*StorageMedium) CodecDecodeSelf added in v1.2.0

func (x *StorageMedium) CodecDecodeSelf(d *codec1978.Decoder)

func (StorageMedium) CodecEncodeSelf added in v1.2.0

func (x StorageMedium) CodecEncodeSelf(e *codec1978.Encoder)

type TCPSocketAction

type TCPSocketAction struct {
	// Number or name of the port to access on the container.
	// Number must be in the range 1 to 65535.
	// Name must be an IANA_SVC_NAME.
	Port intstr.IntOrString `json:"port" protobuf:"bytes,1,opt,name=port"`
}

TCPSocketAction describes an action based on opening a socket

func (*TCPSocketAction) CodecDecodeSelf added in v1.2.0

func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder)

func (*TCPSocketAction) CodecEncodeSelf added in v1.2.0

func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder)

func (*TCPSocketAction) Descriptor added in v1.4.0

func (*TCPSocketAction) Descriptor() ([]byte, []int)

func (*TCPSocketAction) Marshal added in v1.3.0

func (m *TCPSocketAction) Marshal() (data []byte, err error)

func (*TCPSocketAction) MarshalTo added in v1.3.0

func (m *TCPSocketAction) MarshalTo(data []byte) (int, error)

func (*TCPSocketAction) ProtoMessage added in v1.3.0

func (*TCPSocketAction) ProtoMessage()

func (*TCPSocketAction) Reset added in v1.3.0

func (m *TCPSocketAction) Reset()

func (*TCPSocketAction) Size added in v1.3.0

func (m *TCPSocketAction) Size() (n int)

func (*TCPSocketAction) String added in v1.3.0

func (this *TCPSocketAction) String() string

func (TCPSocketAction) SwaggerDoc added in v1.1.0

func (TCPSocketAction) SwaggerDoc() map[string]string

func (*TCPSocketAction) Unmarshal added in v1.3.0

func (m *TCPSocketAction) Unmarshal(data []byte) error

type Taint added in v1.3.0

type Taint struct {
	// Required. The taint key to be applied to a node.
	Key string `json:"key" patchStrategy:"merge" patchMergeKey:"key" protobuf:"bytes,1,opt,name=key"`
	// Required. The taint value corresponding to the taint key.
	// +optional
	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
	// Required. The effect of the taint on pods
	// that do not tolerate the taint.
	// Valid effects are NoSchedule and PreferNoSchedule.
	Effect TaintEffect `json:"effect" protobuf:"bytes,3,opt,name=effect,casttype=TaintEffect"`
}

The node this Taint is attached to has the effect "effect" on any pod that that does not tolerate the Taint.

func (*Taint) CodecDecodeSelf added in v1.3.0

func (x *Taint) CodecDecodeSelf(d *codec1978.Decoder)

func (*Taint) CodecEncodeSelf added in v1.3.0

func (x *Taint) CodecEncodeSelf(e *codec1978.Encoder)

func (*Taint) Descriptor added in v1.4.0

func (*Taint) Descriptor() ([]byte, []int)

func (*Taint) Marshal added in v1.3.0

func (m *Taint) Marshal() (data []byte, err error)

func (*Taint) MarshalTo added in v1.3.0

func (m *Taint) MarshalTo(data []byte) (int, error)

func (*Taint) ProtoMessage added in v1.3.0

func (*Taint) ProtoMessage()

func (*Taint) Reset added in v1.3.0

func (m *Taint) Reset()

func (*Taint) Size added in v1.3.0

func (m *Taint) Size() (n int)

func (*Taint) String added in v1.3.0

func (this *Taint) String() string

func (Taint) SwaggerDoc added in v1.3.0

func (Taint) SwaggerDoc() map[string]string

func (*Taint) Unmarshal added in v1.3.0

func (m *Taint) Unmarshal(data []byte) error

type TaintEffect added in v1.3.0

type TaintEffect string
const (
	// Do not allow new pods to schedule onto the node unless they tolerate the taint,
	// but allow all pods submitted to Kubelet without going through the scheduler
	// to start, and allow all already-running pods to continue running.
	// Enforced by the scheduler.
	TaintEffectNoSchedule TaintEffect = "NoSchedule"
	// Like TaintEffectNoSchedule, but the scheduler tries not to schedule
	// new pods onto the node, rather than prohibiting new pods from scheduling
	// onto the node entirely. Enforced by the scheduler.
	TaintEffectPreferNoSchedule TaintEffect = "PreferNoSchedule"
)

func (*TaintEffect) CodecDecodeSelf added in v1.3.0

func (x *TaintEffect) CodecDecodeSelf(d *codec1978.Decoder)

func (TaintEffect) CodecEncodeSelf added in v1.3.0

func (x TaintEffect) CodecEncodeSelf(e *codec1978.Encoder)

type Toleration added in v1.3.0

type Toleration struct {
	// Required. Key is the taint key that the toleration applies to.
	// +optional
	Key string `json:"key,omitempty" patchStrategy:"merge" patchMergeKey:"key" protobuf:"bytes,1,opt,name=key"`
	// operator represents a key's relationship to the value.
	// Valid operators are Exists and Equal. Defaults to Equal.
	// Exists is equivalent to wildcard for value, so that a pod can
	// tolerate all taints of a particular category.
	// +optional
	Operator TolerationOperator `json:"operator,omitempty" protobuf:"bytes,2,opt,name=operator,casttype=TolerationOperator"`
	// Value is the taint value the toleration matches to.
	// If the operator is Exists, the value should be empty, otherwise just a regular string.
	// +optional
	Value string `json:"value,omitempty" protobuf:"bytes,3,opt,name=value"`
	// Effect indicates the taint effect to match. Empty means match all taint effects.
	// When specified, allowed values are NoSchedule and PreferNoSchedule.
	// +optional
	Effect TaintEffect `json:"effect,omitempty" protobuf:"bytes,4,opt,name=effect,casttype=TaintEffect"`
}

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

func (*Toleration) CodecDecodeSelf added in v1.3.0

func (x *Toleration) CodecDecodeSelf(d *codec1978.Decoder)

func (*Toleration) CodecEncodeSelf added in v1.3.0

func (x *Toleration) CodecEncodeSelf(e *codec1978.Encoder)

func (*Toleration) Descriptor added in v1.4.0

func (*Toleration) Descriptor() ([]byte, []int)

func (*Toleration) Marshal added in v1.3.0

func (m *Toleration) Marshal() (data []byte, err error)

func (*Toleration) MarshalTo added in v1.3.0

func (m *Toleration) MarshalTo(data []byte) (int, error)

func (*Toleration) ProtoMessage added in v1.3.0

func (*Toleration) ProtoMessage()

func (*Toleration) Reset added in v1.3.0

func (m *Toleration) Reset()

func (*Toleration) Size added in v1.3.0

func (m *Toleration) Size() (n int)

func (*Toleration) String added in v1.3.0

func (this *Toleration) String() string

func (Toleration) SwaggerDoc added in v1.3.0

func (Toleration) SwaggerDoc() map[string]string

func (*Toleration) Unmarshal added in v1.3.0

func (m *Toleration) Unmarshal(data []byte) error

type TolerationOperator added in v1.3.0

type TolerationOperator string

A toleration operator is the set of operators that can be used in a toleration.

const (
	TolerationOpExists TolerationOperator = "Exists"
	TolerationOpEqual  TolerationOperator = "Equal"
)

func (*TolerationOperator) CodecDecodeSelf added in v1.3.0

func (x *TolerationOperator) CodecDecodeSelf(d *codec1978.Decoder)

func (TolerationOperator) CodecEncodeSelf added in v1.3.0

func (x TolerationOperator) CodecEncodeSelf(e *codec1978.Encoder)

type URIScheme added in v0.21.0

type URIScheme string

URIScheme identifies the scheme used for connection to a host for Get actions

const (
	// URISchemeHTTP means that the scheme used will be http://
	URISchemeHTTP URIScheme = "HTTP"
	// URISchemeHTTPS means that the scheme used will be https://
	URISchemeHTTPS URIScheme = "HTTPS"
)

func (*URIScheme) CodecDecodeSelf added in v1.2.0

func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder)

func (URIScheme) CodecEncodeSelf added in v1.2.0

func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder)

type UniqueVolumeName added in v1.3.0

type UniqueVolumeName string

func (*UniqueVolumeName) CodecDecodeSelf added in v1.3.0

func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder)

func (UniqueVolumeName) CodecEncodeSelf added in v1.3.0

func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder)

type Volume

type Volume struct {
	// Volume's name.
	// Must be a DNS_LABEL and unique within the pod.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// VolumeSource represents the location and type of the mounted volume.
	// If not specified, the Volume is implied to be an EmptyDir.
	// This implied behavior is deprecated and will be removed in a future version.
	VolumeSource `json:",inline" protobuf:"bytes,2,opt,name=volumeSource"`
}

Volume represents a named volume in a pod that may be accessed by any container in the pod.

func (*Volume) CodecDecodeSelf added in v1.2.0

func (x *Volume) CodecDecodeSelf(d *codec1978.Decoder)

func (*Volume) CodecEncodeSelf added in v1.2.0

func (x *Volume) CodecEncodeSelf(e *codec1978.Encoder)

func (*Volume) Descriptor added in v1.4.0

func (*Volume) Descriptor() ([]byte, []int)

func (*Volume) Marshal added in v1.3.0

func (m *Volume) Marshal() (data []byte, err error)

func (*Volume) MarshalTo added in v1.3.0

func (m *Volume) MarshalTo(data []byte) (int, error)

func (*Volume) ProtoMessage added in v1.3.0

func (*Volume) ProtoMessage()

func (*Volume) Reset added in v1.3.0

func (m *Volume) Reset()

func (*Volume) Size added in v1.3.0

func (m *Volume) Size() (n int)

func (*Volume) String added in v1.3.0

func (this *Volume) String() string

func (Volume) SwaggerDoc added in v1.1.0

func (Volume) SwaggerDoc() map[string]string

func (*Volume) Unmarshal added in v1.3.0

func (m *Volume) Unmarshal(data []byte) error

type VolumeMount

type VolumeMount struct {
	// This must match the Name of a Volume.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
	// Mounted read-only if true, read-write otherwise (false or unspecified).
	// Defaults to false.
	// +optional
	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,2,opt,name=readOnly"`
	// Path within the container at which the volume should be mounted.  Must
	// not contain ':'.
	MountPath string `json:"mountPath" protobuf:"bytes,3,opt,name=mountPath"`
	// Path within the volume from which the container's volume should be mounted.
	// Defaults to "" (volume's root).
	// +optional
	SubPath string `json:"subPath,omitempty" protobuf:"bytes,4,opt,name=subPath"`
}

VolumeMount describes a mounting of a Volume within a container.

func (*VolumeMount) CodecDecodeSelf added in v1.2.0

func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder)

func (*VolumeMount) CodecEncodeSelf added in v1.2.0

func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder)

func (*VolumeMount) Descriptor added in v1.4.0

func (*VolumeMount) Descriptor() ([]byte, []int)

func (*VolumeMount) Marshal added in v1.3.0

func (m *VolumeMount) Marshal() (data []byte, err error)

func (*VolumeMount) MarshalTo added in v1.3.0

func (m *VolumeMount) MarshalTo(data []byte) (int, error)

func (*VolumeMount) ProtoMessage added in v1.3.0

func (*VolumeMount) ProtoMessage()

func (*VolumeMount) Reset added in v1.3.0

func (m *VolumeMount) Reset()

func (*VolumeMount) Size added in v1.3.0

func (m *VolumeMount) Size() (n int)

func (*VolumeMount) String added in v1.3.0

func (this *VolumeMount) String() string

func (VolumeMount) SwaggerDoc added in v1.1.0

func (VolumeMount) SwaggerDoc() map[string]string

func (*VolumeMount) Unmarshal added in v1.3.0

func (m *VolumeMount) Unmarshal(data []byte) error

type VolumeSource

type VolumeSource struct {
	// HostPath represents a pre-existing file or directory on the host
	// machine that is directly exposed to the container. This is generally
	// used for system agents or other privileged things that are allowed
	// to see the host machine. Most containers will NOT need this.
	// More info: http://kubernetes.io/docs/user-guide/volumes#hostpath
	// ---
	// TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not
	// mount host directories as read/write.
	// +optional
	HostPath *HostPathVolumeSource `json:"hostPath,omitempty" protobuf:"bytes,1,opt,name=hostPath"`
	// EmptyDir represents a temporary directory that shares a pod's lifetime.
	// More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
	// +optional
	EmptyDir *EmptyDirVolumeSource `json:"emptyDir,omitempty" protobuf:"bytes,2,opt,name=emptyDir"`
	// GCEPersistentDisk represents a GCE Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod.
	// More info: http://kubernetes.io/docs/user-guide/volumes#gcepersistentdisk
	// +optional
	GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" protobuf:"bytes,3,opt,name=gcePersistentDisk"`
	// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod.
	// More info: http://kubernetes.io/docs/user-guide/volumes#awselasticblockstore
	// +optional
	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty" protobuf:"bytes,4,opt,name=awsElasticBlockStore"`
	// GitRepo represents a git repository at a particular revision.
	// +optional
	GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty" protobuf:"bytes,5,opt,name=gitRepo"`
	// Secret represents a secret that should populate this volume.
	// More info: http://kubernetes.io/docs/user-guide/volumes#secrets
	// +optional
	Secret *SecretVolumeSource `json:"secret,omitempty" protobuf:"bytes,6,opt,name=secret"`
	// NFS represents an NFS mount on the host that shares a pod's lifetime
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	// +optional
	NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,7,opt,name=nfs"`
	// ISCSI represents an ISCSI Disk resource that is attached to a
	// kubelet's host machine and then exposed to the pod.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md
	// +optional
	ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,8,opt,name=iscsi"`
	// Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md
	// +optional
	Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" protobuf:"bytes,9,opt,name=glusterfs"`
	// PersistentVolumeClaimVolumeSource represents a reference to a
	// PersistentVolumeClaim in the same namespace.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	// +optional
	PersistentVolumeClaim *PersistentVolumeClaimVolumeSource `json:"persistentVolumeClaim,omitempty" protobuf:"bytes,10,opt,name=persistentVolumeClaim"`
	// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md
	// +optional
	RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,11,opt,name=rbd"`
	// FlexVolume represents a generic volume resource that is
	// provisioned/attached using an exec based plugin. This is an
	// alpha feature and may change in future.
	// +optional
	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
	// Cinder represents a cinder volume attached and mounted on kubelets host machine
	// More info: http://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
	// +optional
	Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	// +optional
	CephFS *CephFSVolumeSource `json:"cephfs,omitempty" protobuf:"bytes,14,opt,name=cephfs"`
	// Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
	// +optional
	Flocker *FlockerVolumeSource `json:"flocker,omitempty" protobuf:"bytes,15,opt,name=flocker"`
	// DownwardAPI represents downward API about the pod that should populate this volume
	// +optional
	DownwardAPI *DownwardAPIVolumeSource `json:"downwardAPI,omitempty" protobuf:"bytes,16,opt,name=downwardAPI"`
	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	// +optional
	FC *FCVolumeSource `json:"fc,omitempty" protobuf:"bytes,17,opt,name=fc"`
	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	// +optional
	AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,18,opt,name=azureFile"`
	// ConfigMap represents a configMap that should populate this volume
	// +optional
	ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,19,opt,name=configMap"`
	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	// +optional
	VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,20,opt,name=vsphereVolume"`
	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	// +optional
	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,21,opt,name=quobyte"`
	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	// +optional
	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,22,opt,name=azureDisk"`
	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" protobuf:"bytes,23,opt,name=photonPersistentDisk"`
}

Represents the source of a volume to mount. Only one of its members may be specified.

func (*VolumeSource) CodecDecodeSelf added in v1.2.0

func (x *VolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*VolumeSource) CodecEncodeSelf added in v1.2.0

func (x *VolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*VolumeSource) Descriptor added in v1.4.0

func (*VolumeSource) Descriptor() ([]byte, []int)

func (*VolumeSource) Marshal added in v1.3.0

func (m *VolumeSource) Marshal() (data []byte, err error)

func (*VolumeSource) MarshalTo added in v1.3.0

func (m *VolumeSource) MarshalTo(data []byte) (int, error)

func (*VolumeSource) ProtoMessage added in v1.3.0

func (*VolumeSource) ProtoMessage()

func (*VolumeSource) Reset added in v1.3.0

func (m *VolumeSource) Reset()

func (*VolumeSource) Size added in v1.3.0

func (m *VolumeSource) Size() (n int)

func (*VolumeSource) String added in v1.3.0

func (this *VolumeSource) String() string

func (VolumeSource) SwaggerDoc added in v1.1.0

func (VolumeSource) SwaggerDoc() map[string]string

func (*VolumeSource) Unmarshal added in v1.3.0

func (m *VolumeSource) Unmarshal(data []byte) error

type VsphereVirtualDiskVolumeSource added in v1.3.0

type VsphereVirtualDiskVolumeSource struct {
	// Path that identifies vSphere volume vmdk
	VolumePath string `json:"volumePath" protobuf:"bytes,1,opt,name=volumePath"`
	// Filesystem type to mount.
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
	// +optional
	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
}

Represents a vSphere volume resource.

func (*VsphereVirtualDiskVolumeSource) CodecDecodeSelf added in v1.3.0

func (x *VsphereVirtualDiskVolumeSource) CodecDecodeSelf(d *codec1978.Decoder)

func (*VsphereVirtualDiskVolumeSource) CodecEncodeSelf added in v1.3.0

func (x *VsphereVirtualDiskVolumeSource) CodecEncodeSelf(e *codec1978.Encoder)

func (*VsphereVirtualDiskVolumeSource) Descriptor added in v1.4.0

func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int)

func (*VsphereVirtualDiskVolumeSource) Marshal added in v1.3.0

func (m *VsphereVirtualDiskVolumeSource) Marshal() (data []byte, err error)

func (*VsphereVirtualDiskVolumeSource) MarshalTo added in v1.3.0

func (m *VsphereVirtualDiskVolumeSource) MarshalTo(data []byte) (int, error)

func (*VsphereVirtualDiskVolumeSource) ProtoMessage added in v1.3.0

func (*VsphereVirtualDiskVolumeSource) ProtoMessage()

func (*VsphereVirtualDiskVolumeSource) Reset added in v1.3.0

func (m *VsphereVirtualDiskVolumeSource) Reset()

func (*VsphereVirtualDiskVolumeSource) Size added in v1.3.0

func (m *VsphereVirtualDiskVolumeSource) Size() (n int)

func (*VsphereVirtualDiskVolumeSource) String added in v1.3.0

func (this *VsphereVirtualDiskVolumeSource) String() string

func (VsphereVirtualDiskVolumeSource) SwaggerDoc added in v1.3.0

func (VsphereVirtualDiskVolumeSource) SwaggerDoc() map[string]string

func (*VsphereVirtualDiskVolumeSource) Unmarshal added in v1.3.0

func (m *VsphereVirtualDiskVolumeSource) Unmarshal(data []byte) error

type WeightedPodAffinityTerm added in v1.3.0

type WeightedPodAffinityTerm struct {
	// weight associated with matching the corresponding podAffinityTerm,
	// in the range 1-100.
	Weight int32 `json:"weight" protobuf:"varint,1,opt,name=weight"`
	// Required. A pod affinity term, associated with the corresponding weight.
	PodAffinityTerm PodAffinityTerm `json:"podAffinityTerm" protobuf:"bytes,2,opt,name=podAffinityTerm"`
}

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

func (*WeightedPodAffinityTerm) CodecDecodeSelf added in v1.3.0

func (x *WeightedPodAffinityTerm) CodecDecodeSelf(d *codec1978.Decoder)

func (*WeightedPodAffinityTerm) CodecEncodeSelf added in v1.3.0

func (x *WeightedPodAffinityTerm) CodecEncodeSelf(e *codec1978.Encoder)

func (*WeightedPodAffinityTerm) Descriptor added in v1.4.0

func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int)

func (*WeightedPodAffinityTerm) Marshal added in v1.3.0

func (m *WeightedPodAffinityTerm) Marshal() (data []byte, err error)

func (*WeightedPodAffinityTerm) MarshalTo added in v1.3.0

func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error)

func (*WeightedPodAffinityTerm) ProtoMessage added in v1.3.0

func (*WeightedPodAffinityTerm) ProtoMessage()

func (*WeightedPodAffinityTerm) Reset added in v1.3.0

func (m *WeightedPodAffinityTerm) Reset()

func (*WeightedPodAffinityTerm) Size added in v1.3.0

func (m *WeightedPodAffinityTerm) Size() (n int)

func (*WeightedPodAffinityTerm) String added in v1.3.0

func (this *WeightedPodAffinityTerm) String() string

func (WeightedPodAffinityTerm) SwaggerDoc added in v1.3.0

func (WeightedPodAffinityTerm) SwaggerDoc() map[string]string

func (*WeightedPodAffinityTerm) Unmarshal added in v1.3.0

func (m *WeightedPodAffinityTerm) Unmarshal(data []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL