v1

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: May 16, 2017 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

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
ConfigMapEnvSource
ConfigMapKeySelector
ConfigMapList
ConfigMapProjection
ConfigMapVolumeSource
Container
ContainerImage
ContainerPort
ContainerState
ContainerStateRunning
ContainerStateTerminated
ContainerStateWaiting
ContainerStatus
DaemonEndpoint
DeleteOptions
DownwardAPIProjection
DownwardAPIVolumeFile
DownwardAPIVolumeSource
EmptyDirVolumeSource
EndpointAddress
EndpointPort
EndpointSubset
Endpoints
EndpointsList
EnvFromSource
EnvVar
EnvVarSource
Event
EventList
EventSource
ExecAction
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
NodeResources
NodeSelector
NodeSelectorRequirement
NodeSelectorTerm
NodeSpec
NodeStatus
NodeSystemInfo
ObjectFieldSelector
ObjectMeta
ObjectReference
PersistentVolume
PersistentVolumeClaim
PersistentVolumeClaimList
PersistentVolumeClaimSpec
PersistentVolumeClaimStatus
PersistentVolumeClaimVolumeSource
PersistentVolumeList
PersistentVolumeSource
PersistentVolumeSpec
PersistentVolumeStatus
PhotonPersistentDiskVolumeSource
Pod
PodAffinity
PodAffinityTerm
PodAntiAffinity
PodAttachOptions
PodCondition
PodExecOptions
PodList
PodLogOptions
PodPortForwardOptions
PodProxyOptions
PodSecurityContext
PodSignature
PodSpec
PodStatus
PodStatusResult
PodTemplate
PodTemplateList
PodTemplateSpec
PortworxVolumeSource
Preconditions
PreferAvoidPodsEntry
PreferredSchedulingTerm
Probe
ProjectedVolumeSource
QuobyteVolumeSource
RBDVolumeSource
RangeAllocation
ReplicationController
ReplicationControllerCondition
ReplicationControllerList
ReplicationControllerSpec
ReplicationControllerStatus
ResourceFieldSelector
ResourceQuota
ResourceQuotaList
ResourceQuotaSpec
ResourceQuotaStatus
ResourceRequirements
SELinuxOptions
ScaleIOVolumeSource
Secret
SecretEnvSource
SecretKeySelector
SecretList
SecretProjection
SecretVolumeSource
SecurityContext
SerializedReference
Service
ServiceAccount
ServiceAccountList
ServiceList
ServicePort
ServiceProxyOptions
ServiceSpec
ServiceStatus
Sysctl
TCPSocketAction
Taint
Toleration
Volume
VolumeMount
VolumeProjection
VolumeSource
VsphereVirtualDiskVolumeSource
WeightedPodAffinityTerm

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

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 `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=partition" json:"partition,omitempty"`
	// 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  `protobuf:"varint,4,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*AWSElasticBlockStoreVolumeSource) GetFsType

func (*AWSElasticBlockStoreVolumeSource) GetPartition

func (m *AWSElasticBlockStoreVolumeSource) GetPartition() int32

func (*AWSElasticBlockStoreVolumeSource) GetReadOnly

func (m *AWSElasticBlockStoreVolumeSource) GetReadOnly() bool

func (*AWSElasticBlockStoreVolumeSource) GetVolumeID

func (m *AWSElasticBlockStoreVolumeSource) GetVolumeID() string

func (*AWSElasticBlockStoreVolumeSource) Marshal

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

func (*AWSElasticBlockStoreVolumeSource) MarshalTo

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

func (*AWSElasticBlockStoreVolumeSource) ProtoMessage

func (*AWSElasticBlockStoreVolumeSource) ProtoMessage()

func (*AWSElasticBlockStoreVolumeSource) Reset

func (*AWSElasticBlockStoreVolumeSource) Size

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

func (*AWSElasticBlockStoreVolumeSource) String

func (*AWSElasticBlockStoreVolumeSource) Unmarshal

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

type Affinity

type Affinity struct {
	// Describes node affinity scheduling rules for the pod.
	// +optional
	NodeAffinity *NodeAffinity `protobuf:"bytes,1,opt,name=nodeAffinity" json:"nodeAffinity,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=podAffinity" json:"podAffinity,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=podAntiAffinity" json:"podAntiAffinity,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

Affinity is a group of affinity scheduling rules.

func (*Affinity) Descriptor

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

func (*Affinity) GetNodeAffinity

func (m *Affinity) GetNodeAffinity() *NodeAffinity

func (*Affinity) GetPodAffinity

func (m *Affinity) GetPodAffinity() *PodAffinity

func (*Affinity) GetPodAntiAffinity

func (m *Affinity) GetPodAntiAffinity() *PodAntiAffinity

func (*Affinity) Marshal

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

func (*Affinity) MarshalTo

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

func (*Affinity) ProtoMessage

func (*Affinity) ProtoMessage()

func (*Affinity) Reset

func (m *Affinity) Reset()

func (*Affinity) Size

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

func (*Affinity) String

func (m *Affinity) String() string

func (*Affinity) Unmarshal

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

type AttachedVolume

type AttachedVolume struct {
	// Name of the attached volume
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// DevicePath represents the device path where the volume should be available
	DevicePath       *string `protobuf:"bytes,2,opt,name=devicePath" json:"devicePath,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

AttachedVolume describes a volume attached to a node

func (*AttachedVolume) Descriptor

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

func (*AttachedVolume) GetDevicePath

func (m *AttachedVolume) GetDevicePath() string

func (*AttachedVolume) GetName

func (m *AttachedVolume) GetName() string

func (*AttachedVolume) Marshal

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

func (*AttachedVolume) MarshalTo

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

func (*AttachedVolume) ProtoMessage

func (*AttachedVolume) ProtoMessage()

func (*AttachedVolume) Reset

func (m *AttachedVolume) Reset()

func (*AttachedVolume) Size

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

func (*AttachedVolume) String

func (m *AttachedVolume) String() string

func (*AttachedVolume) Unmarshal

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

type AvoidPods

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 `protobuf:"bytes,1,rep,name=preferAvoidPods" json:"preferAvoidPods,omitempty"`
	XXX_unrecognized []byte                  `json:"-"`
}

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) Descriptor

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

func (*AvoidPods) GetPreferAvoidPods

func (m *AvoidPods) GetPreferAvoidPods() []*PreferAvoidPodsEntry

func (*AvoidPods) Marshal

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

func (*AvoidPods) MarshalTo

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

func (*AvoidPods) ProtoMessage

func (*AvoidPods) ProtoMessage()

func (*AvoidPods) Reset

func (m *AvoidPods) Reset()

func (*AvoidPods) Size

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

func (*AvoidPods) String

func (m *AvoidPods) String() string

func (*AvoidPods) Unmarshal

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

type AzureDiskVolumeSource

type AzureDiskVolumeSource struct {
	// The Name of the data disk in the blob storage
	DiskName *string `protobuf:"bytes,1,opt,name=diskName" json:"diskName,omitempty"`
	// The URI the data disk in the blob storage
	DiskURI *string `protobuf:"bytes,2,opt,name=diskURI" json:"diskURI,omitempty"`
	// Host Caching mode: None, Read Only, Read Write.
	// +optional
	CachingMode *string `protobuf:"bytes,3,opt,name=cachingMode" json:"cachingMode,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=fsType" json:"fsType,omitempty"`
	// Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly         *bool  `protobuf:"varint,5,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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

func (*AzureDiskVolumeSource) Descriptor

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

func (*AzureDiskVolumeSource) GetCachingMode

func (m *AzureDiskVolumeSource) GetCachingMode() string

func (*AzureDiskVolumeSource) GetDiskName

func (m *AzureDiskVolumeSource) GetDiskName() string

func (*AzureDiskVolumeSource) GetDiskURI

func (m *AzureDiskVolumeSource) GetDiskURI() string

func (*AzureDiskVolumeSource) GetFsType

func (m *AzureDiskVolumeSource) GetFsType() string

func (*AzureDiskVolumeSource) GetReadOnly

func (m *AzureDiskVolumeSource) GetReadOnly() bool

func (*AzureDiskVolumeSource) Marshal

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

func (*AzureDiskVolumeSource) MarshalTo

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

func (*AzureDiskVolumeSource) ProtoMessage

func (*AzureDiskVolumeSource) ProtoMessage()

func (*AzureDiskVolumeSource) Reset

func (m *AzureDiskVolumeSource) Reset()

func (*AzureDiskVolumeSource) Size

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

func (*AzureDiskVolumeSource) String

func (m *AzureDiskVolumeSource) String() string

func (*AzureDiskVolumeSource) Unmarshal

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

type AzureFileVolumeSource

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

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

func (*AzureFileVolumeSource) Descriptor

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

func (*AzureFileVolumeSource) GetReadOnly

func (m *AzureFileVolumeSource) GetReadOnly() bool

func (*AzureFileVolumeSource) GetSecretName

func (m *AzureFileVolumeSource) GetSecretName() string

func (*AzureFileVolumeSource) GetShareName

func (m *AzureFileVolumeSource) GetShareName() string

func (*AzureFileVolumeSource) Marshal

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

func (*AzureFileVolumeSource) MarshalTo

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

func (*AzureFileVolumeSource) ProtoMessage

func (*AzureFileVolumeSource) ProtoMessage()

func (*AzureFileVolumeSource) Reset

func (m *AzureFileVolumeSource) Reset()

func (*AzureFileVolumeSource) Size

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

func (*AzureFileVolumeSource) String

func (m *AzureFileVolumeSource) String() string

func (*AzureFileVolumeSource) Unmarshal

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

type Binding

type Binding struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// The target object that you want to bind to the standard object.
	Target           *ObjectReference `protobuf:"bytes,2,opt,name=target" json:"target,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

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

func (*Binding) Descriptor

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

func (*Binding) GetMetadata

func (*Binding) GetTarget

func (m *Binding) GetTarget() *ObjectReference

func (*Binding) Marshal

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

func (*Binding) MarshalTo

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

func (*Binding) ProtoMessage

func (*Binding) ProtoMessage()

func (*Binding) Reset

func (m *Binding) Reset()

func (*Binding) Size

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

func (*Binding) String

func (m *Binding) String() string

func (*Binding) Unmarshal

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

type Capabilities

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

Adds and removes POSIX capabilities from running containers.

func (*Capabilities) Descriptor

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

func (*Capabilities) GetAdd

func (m *Capabilities) GetAdd() []string

func (*Capabilities) GetDrop

func (m *Capabilities) GetDrop() []string

func (*Capabilities) Marshal

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

func (*Capabilities) MarshalTo

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

func (*Capabilities) ProtoMessage

func (*Capabilities) ProtoMessage()

func (*Capabilities) Reset

func (m *Capabilities) Reset()

func (*Capabilities) Size

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

func (*Capabilities) String

func (m *Capabilities) String() string

func (*Capabilities) Unmarshal

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

type CephFSVolumeSource

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 `protobuf:"bytes,1,rep,name=monitors" json:"monitors,omitempty"`
	// Optional: Used as the mounted root, rather than the full Ceph tree, default is /
	// +optional
	Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=secretFile" json:"secretFile,omitempty"`
	// 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 `protobuf:"bytes,5,opt,name=secretRef" json:"secretRef,omitempty"`
	// 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  `protobuf:"varint,6,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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

func (*CephFSVolumeSource) Descriptor

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

func (*CephFSVolumeSource) GetMonitors

func (m *CephFSVolumeSource) GetMonitors() []string

func (*CephFSVolumeSource) GetPath

func (m *CephFSVolumeSource) GetPath() string

func (*CephFSVolumeSource) GetReadOnly

func (m *CephFSVolumeSource) GetReadOnly() bool

func (*CephFSVolumeSource) GetSecretFile

func (m *CephFSVolumeSource) GetSecretFile() string

func (*CephFSVolumeSource) GetSecretRef

func (m *CephFSVolumeSource) GetSecretRef() *LocalObjectReference

func (*CephFSVolumeSource) GetUser

func (m *CephFSVolumeSource) GetUser() string

func (*CephFSVolumeSource) Marshal

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

func (*CephFSVolumeSource) MarshalTo

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

func (*CephFSVolumeSource) ProtoMessage

func (*CephFSVolumeSource) ProtoMessage()

func (*CephFSVolumeSource) Reset

func (m *CephFSVolumeSource) Reset()

func (*CephFSVolumeSource) Size

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

func (*CephFSVolumeSource) String

func (m *CephFSVolumeSource) String() string

func (*CephFSVolumeSource) Unmarshal

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

type CinderVolumeSource

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 `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	// 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  `protobuf:"varint,3,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*CinderVolumeSource) GetFsType

func (m *CinderVolumeSource) GetFsType() string

func (*CinderVolumeSource) GetReadOnly

func (m *CinderVolumeSource) GetReadOnly() bool

func (*CinderVolumeSource) GetVolumeID

func (m *CinderVolumeSource) GetVolumeID() string

func (*CinderVolumeSource) Marshal

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

func (*CinderVolumeSource) MarshalTo

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

func (*CinderVolumeSource) ProtoMessage

func (*CinderVolumeSource) ProtoMessage()

func (*CinderVolumeSource) Reset

func (m *CinderVolumeSource) Reset()

func (*CinderVolumeSource) Size

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

func (*CinderVolumeSource) String

func (m *CinderVolumeSource) String() string

func (*CinderVolumeSource) Unmarshal

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

type ComponentCondition

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

Information about the condition of a component.

func (*ComponentCondition) Descriptor

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

func (*ComponentCondition) GetError

func (m *ComponentCondition) GetError() string

func (*ComponentCondition) GetMessage

func (m *ComponentCondition) GetMessage() string

func (*ComponentCondition) GetStatus

func (m *ComponentCondition) GetStatus() string

func (*ComponentCondition) GetType

func (m *ComponentCondition) GetType() string

func (*ComponentCondition) Marshal

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

func (*ComponentCondition) MarshalTo

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

func (*ComponentCondition) ProtoMessage

func (*ComponentCondition) ProtoMessage()

func (*ComponentCondition) Reset

func (m *ComponentCondition) Reset()

func (*ComponentCondition) Size

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

func (*ComponentCondition) String

func (m *ComponentCondition) String() string

func (*ComponentCondition) Unmarshal

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

type ComponentStatus

type ComponentStatus struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of component conditions observed
	// +optional
	Conditions       []*ComponentCondition `protobuf:"bytes,2,rep,name=conditions" json:"conditions,omitempty"`
	XXX_unrecognized []byte                `json:"-"`
}

ComponentStatus (and ComponentStatusList) holds the cluster validation info.

func (*ComponentStatus) Descriptor

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

func (*ComponentStatus) GetConditions

func (m *ComponentStatus) GetConditions() []*ComponentCondition

func (*ComponentStatus) GetMetadata

func (*ComponentStatus) Marshal

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

func (*ComponentStatus) MarshalTo

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

func (*ComponentStatus) ProtoMessage

func (*ComponentStatus) ProtoMessage()

func (*ComponentStatus) Reset

func (m *ComponentStatus) Reset()

func (*ComponentStatus) Size

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

func (*ComponentStatus) String

func (m *ComponentStatus) String() string

func (*ComponentStatus) Unmarshal

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

type ComponentStatusList

type ComponentStatusList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of ComponentStatus objects.
	Items            []*ComponentStatus `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte             `json:"-"`
}

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

func (*ComponentStatusList) Descriptor

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

func (*ComponentStatusList) GetItems

func (m *ComponentStatusList) GetItems() []*ComponentStatus

func (*ComponentStatusList) GetMetadata

func (*ComponentStatusList) Marshal

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

func (*ComponentStatusList) MarshalTo

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

func (*ComponentStatusList) ProtoMessage

func (*ComponentStatusList) ProtoMessage()

func (*ComponentStatusList) Reset

func (m *ComponentStatusList) Reset()

func (*ComponentStatusList) Size

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

func (*ComponentStatusList) String

func (m *ComponentStatusList) String() string

func (*ComponentStatusList) Unmarshal

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

type ConfigMap

type ConfigMap struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Data contains the configuration data.
	// Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.
	// +optional
	Data             map[string]string `` /* 128-byte string literal not displayed */
	XXX_unrecognized []byte            `json:"-"`
}

ConfigMap holds configuration data for pods to consume.

func (*ConfigMap) Descriptor

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

func (*ConfigMap) GetData

func (m *ConfigMap) GetData() map[string]string

func (*ConfigMap) GetMetadata

func (*ConfigMap) Marshal

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

func (*ConfigMap) MarshalTo

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

func (*ConfigMap) ProtoMessage

func (*ConfigMap) ProtoMessage()

func (*ConfigMap) Reset

func (m *ConfigMap) Reset()

func (*ConfigMap) Size

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

func (*ConfigMap) String

func (m *ConfigMap) String() string

func (*ConfigMap) Unmarshal

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

type ConfigMapEnvSource added in v0.3.0

type ConfigMapEnvSource struct {
	// The ConfigMap to select from.
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// Specify whether the ConfigMap must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,2,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.

func (*ConfigMapEnvSource) Descriptor added in v0.3.0

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

func (*ConfigMapEnvSource) GetLocalObjectReference added in v0.3.0

func (m *ConfigMapEnvSource) GetLocalObjectReference() *LocalObjectReference

func (*ConfigMapEnvSource) GetOptional added in v0.3.0

func (m *ConfigMapEnvSource) GetOptional() bool

func (*ConfigMapEnvSource) Marshal added in v0.3.0

func (m *ConfigMapEnvSource) Marshal() (dAtA []byte, err error)

func (*ConfigMapEnvSource) MarshalTo added in v0.3.0

func (m *ConfigMapEnvSource) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMapEnvSource) ProtoMessage added in v0.3.0

func (*ConfigMapEnvSource) ProtoMessage()

func (*ConfigMapEnvSource) Reset added in v0.3.0

func (m *ConfigMapEnvSource) Reset()

func (*ConfigMapEnvSource) Size added in v0.3.0

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

func (*ConfigMapEnvSource) String added in v0.3.0

func (m *ConfigMapEnvSource) String() string

func (*ConfigMapEnvSource) Unmarshal added in v0.3.0

func (m *ConfigMapEnvSource) Unmarshal(dAtA []byte) error

type ConfigMapKeySelector

type ConfigMapKeySelector struct {
	// The ConfigMap to select from.
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// The key to select.
	Key *string `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"`
	// Specify whether the ConfigMap or it's key must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,3,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Selects a key from a ConfigMap.

func (*ConfigMapKeySelector) Descriptor

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

func (*ConfigMapKeySelector) GetKey

func (m *ConfigMapKeySelector) GetKey() string

func (*ConfigMapKeySelector) GetLocalObjectReference

func (m *ConfigMapKeySelector) GetLocalObjectReference() *LocalObjectReference

func (*ConfigMapKeySelector) GetOptional added in v0.3.0

func (m *ConfigMapKeySelector) GetOptional() bool

func (*ConfigMapKeySelector) Marshal

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

func (*ConfigMapKeySelector) MarshalTo

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

func (*ConfigMapKeySelector) ProtoMessage

func (*ConfigMapKeySelector) ProtoMessage()

func (*ConfigMapKeySelector) Reset

func (m *ConfigMapKeySelector) Reset()

func (*ConfigMapKeySelector) Size

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

func (*ConfigMapKeySelector) String

func (m *ConfigMapKeySelector) String() string

func (*ConfigMapKeySelector) Unmarshal

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

type ConfigMapList

type ConfigMapList struct {
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of ConfigMaps.
	Items            []*ConfigMap `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte       `json:"-"`
}

ConfigMapList is a resource containing a list of ConfigMap objects.

func (*ConfigMapList) Descriptor

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

func (*ConfigMapList) GetItems

func (m *ConfigMapList) GetItems() []*ConfigMap

func (*ConfigMapList) GetMetadata

func (*ConfigMapList) Marshal

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

func (*ConfigMapList) MarshalTo

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

func (*ConfigMapList) ProtoMessage

func (*ConfigMapList) ProtoMessage()

func (*ConfigMapList) Reset

func (m *ConfigMapList) Reset()

func (*ConfigMapList) Size

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

func (*ConfigMapList) String

func (m *ConfigMapList) String() string

func (*ConfigMapList) Unmarshal

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

type ConfigMapProjection added in v0.3.0

type ConfigMapProjection struct {
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// 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 unless it is marked optional. Paths must be
	// relative and may not contain the '..' path or start with '..'.
	// +optional
	Items []*KeyToPath `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	// Specify whether the ConfigMap or it's keys must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,4,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Adapts a ConfigMap into a projected volume.

The contents of the target ConfigMap's Data field will be presented in a projected 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. Note that this is identical to a configmap volume source without the default mode.

func (*ConfigMapProjection) Descriptor added in v0.3.0

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

func (*ConfigMapProjection) GetItems added in v0.3.0

func (m *ConfigMapProjection) GetItems() []*KeyToPath

func (*ConfigMapProjection) GetLocalObjectReference added in v0.3.0

func (m *ConfigMapProjection) GetLocalObjectReference() *LocalObjectReference

func (*ConfigMapProjection) GetOptional added in v0.3.0

func (m *ConfigMapProjection) GetOptional() bool

func (*ConfigMapProjection) Marshal added in v0.3.0

func (m *ConfigMapProjection) Marshal() (dAtA []byte, err error)

func (*ConfigMapProjection) MarshalTo added in v0.3.0

func (m *ConfigMapProjection) MarshalTo(dAtA []byte) (int, error)

func (*ConfigMapProjection) ProtoMessage added in v0.3.0

func (*ConfigMapProjection) ProtoMessage()

func (*ConfigMapProjection) Reset added in v0.3.0

func (m *ConfigMapProjection) Reset()

func (*ConfigMapProjection) Size added in v0.3.0

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

func (*ConfigMapProjection) String added in v0.3.0

func (m *ConfigMapProjection) String() string

func (*ConfigMapProjection) Unmarshal added in v0.3.0

func (m *ConfigMapProjection) Unmarshal(dAtA []byte) error

type ConfigMapVolumeSource

type ConfigMapVolumeSource struct {
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// 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 unless it is marked optional. Paths must be
	// relative and may not contain the '..' path or start with '..'.
	// +optional
	Items []*KeyToPath `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=defaultMode" json:"defaultMode,omitempty"`
	// Specify whether the ConfigMap or it's keys must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,4,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*ConfigMapVolumeSource) GetDefaultMode

func (m *ConfigMapVolumeSource) GetDefaultMode() int32

func (*ConfigMapVolumeSource) GetItems

func (m *ConfigMapVolumeSource) GetItems() []*KeyToPath

func (*ConfigMapVolumeSource) GetLocalObjectReference

func (m *ConfigMapVolumeSource) GetLocalObjectReference() *LocalObjectReference

func (*ConfigMapVolumeSource) GetOptional added in v0.3.0

func (m *ConfigMapVolumeSource) GetOptional() bool

func (*ConfigMapVolumeSource) Marshal

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

func (*ConfigMapVolumeSource) MarshalTo

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

func (*ConfigMapVolumeSource) ProtoMessage

func (*ConfigMapVolumeSource) ProtoMessage()

func (*ConfigMapVolumeSource) Reset

func (m *ConfigMapVolumeSource) Reset()

func (*ConfigMapVolumeSource) Size

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

func (*ConfigMapVolumeSource) String

func (m *ConfigMapVolumeSource) String() string

func (*ConfigMapVolumeSource) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Docker image name.
	// More info: http://kubernetes.io/docs/user-guide/images
	// +optional
	Image *string `protobuf:"bytes,2,opt,name=image" json:"image,omitempty"`
	// 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 `protobuf:"bytes,3,rep,name=command" json:"command,omitempty"`
	// 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 `protobuf:"bytes,4,rep,name=args" json:"args,omitempty"`
	// 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 `protobuf:"bytes,5,opt,name=workingDir" json:"workingDir,omitempty"`
	// 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 `protobuf:"bytes,6,rep,name=ports" json:"ports,omitempty"`
	// List of sources to populate environment variables in the container.
	// The keys defined within a source must be a C_IDENTIFIER. All invalid keys
	// will be reported as an event when the container is starting. When a key exists in multiple
	// sources, the value associated with the last source will take precedence.
	// Values defined by an Env with a duplicate key will take precedence.
	// Cannot be updated.
	// +optional
	EnvFrom []*EnvFromSource `protobuf:"bytes,19,rep,name=envFrom" json:"envFrom,omitempty"`
	// List of environment variables to set in the container.
	// Cannot be updated.
	// +optional
	Env []*EnvVar `protobuf:"bytes,7,rep,name=env" json:"env,omitempty"`
	// Compute Resources required by this container.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources
	// +optional
	Resources *ResourceRequirements `protobuf:"bytes,8,opt,name=resources" json:"resources,omitempty"`
	// Pod volumes to mount into the container's filesystem.
	// Cannot be updated.
	// +optional
	VolumeMounts []*VolumeMount `protobuf:"bytes,9,rep,name=volumeMounts" json:"volumeMounts,omitempty"`
	// 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 `protobuf:"bytes,10,opt,name=livenessProbe" json:"livenessProbe,omitempty"`
	// 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 `protobuf:"bytes,11,opt,name=readinessProbe" json:"readinessProbe,omitempty"`
	// Actions that the management system should take in response to container lifecycle events.
	// Cannot be updated.
	// +optional
	Lifecycle *Lifecycle `protobuf:"bytes,12,opt,name=lifecycle" json:"lifecycle,omitempty"`
	// 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.
	// Will be truncated by the node if greater than 4096 bytes. The total message length across
	// all containers will be limited to 12kb.
	// Defaults to /dev/termination-log.
	// Cannot be updated.
	// +optional
	TerminationMessagePath *string `protobuf:"bytes,13,opt,name=terminationMessagePath" json:"terminationMessagePath,omitempty"`
	// Indicate how the termination message should be populated. File will use the contents of
	// terminationMessagePath to populate the container status message on both success and failure.
	// FallbackToLogsOnError will use the last chunk of container log output if the termination
	// message file is empty and the container exited with an error.
	// The log output is limited to 2048 bytes or 80 lines, whichever is smaller.
	// Defaults to File.
	// Cannot be updated.
	// +optional
	TerminationMessagePolicy *string `protobuf:"bytes,20,opt,name=terminationMessagePolicy" json:"terminationMessagePolicy,omitempty"`
	// 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 *string `protobuf:"bytes,14,opt,name=imagePullPolicy" json:"imagePullPolicy,omitempty"`
	// Security options the pod should run with.
	// More info: http://releases.k8s.io/HEAD/docs/design/security_context.md
	// +optional
	SecurityContext *SecurityContext `protobuf:"bytes,15,opt,name=securityContext" json:"securityContext,omitempty"`
	// 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 `protobuf:"varint,16,opt,name=stdin" json:"stdin,omitempty"`
	// 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 `protobuf:"varint,17,opt,name=stdinOnce" json:"stdinOnce,omitempty"`
	// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.
	// Default is false.
	// +optional
	Tty              *bool  `protobuf:"varint,18,opt,name=tty" json:"tty,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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

func (*Container) Descriptor

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

func (*Container) GetArgs

func (m *Container) GetArgs() []string

func (*Container) GetCommand

func (m *Container) GetCommand() []string

func (*Container) GetEnv

func (m *Container) GetEnv() []*EnvVar

func (*Container) GetEnvFrom added in v0.3.0

func (m *Container) GetEnvFrom() []*EnvFromSource

func (*Container) GetImage

func (m *Container) GetImage() string

func (*Container) GetImagePullPolicy

func (m *Container) GetImagePullPolicy() string

func (*Container) GetLifecycle

func (m *Container) GetLifecycle() *Lifecycle

func (*Container) GetLivenessProbe

func (m *Container) GetLivenessProbe() *Probe

func (*Container) GetName

func (m *Container) GetName() string

func (*Container) GetPorts

func (m *Container) GetPorts() []*ContainerPort

func (*Container) GetReadinessProbe

func (m *Container) GetReadinessProbe() *Probe

func (*Container) GetResources

func (m *Container) GetResources() *ResourceRequirements

func (*Container) GetSecurityContext

func (m *Container) GetSecurityContext() *SecurityContext

func (*Container) GetStdin

func (m *Container) GetStdin() bool

func (*Container) GetStdinOnce

func (m *Container) GetStdinOnce() bool

func (*Container) GetTerminationMessagePath

func (m *Container) GetTerminationMessagePath() string

func (*Container) GetTerminationMessagePolicy added in v0.3.0

func (m *Container) GetTerminationMessagePolicy() string

func (*Container) GetTty

func (m *Container) GetTty() bool

func (*Container) GetVolumeMounts

func (m *Container) GetVolumeMounts() []*VolumeMount

func (*Container) GetWorkingDir

func (m *Container) GetWorkingDir() string

func (*Container) Marshal

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

func (*Container) MarshalTo

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

func (*Container) ProtoMessage

func (*Container) ProtoMessage()

func (*Container) Reset

func (m *Container) Reset()

func (*Container) Size

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

func (*Container) String

func (m *Container) String() string

func (*Container) Unmarshal

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

type ContainerImage

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 `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"`
	// The size of the image in bytes.
	// +optional
	SizeBytes        *int64 `protobuf:"varint,2,opt,name=sizeBytes" json:"sizeBytes,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Describe a container image

func (*ContainerImage) Descriptor

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

func (*ContainerImage) GetNames

func (m *ContainerImage) GetNames() []string

func (*ContainerImage) GetSizeBytes

func (m *ContainerImage) GetSizeBytes() int64

func (*ContainerImage) Marshal

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

func (*ContainerImage) MarshalTo

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

func (*ContainerImage) ProtoMessage

func (*ContainerImage) ProtoMessage()

func (*ContainerImage) Reset

func (m *ContainerImage) Reset()

func (*ContainerImage) Size

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

func (*ContainerImage) String

func (m *ContainerImage) String() string

func (*ContainerImage) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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 `protobuf:"varint,2,opt,name=hostPort" json:"hostPort,omitempty"`
	// Number of port to expose on the pod's IP address.
	// This must be a valid port number, 0 < x < 65536.
	ContainerPort *int32 `protobuf:"varint,3,opt,name=containerPort" json:"containerPort,omitempty"`
	// Protocol for port. Must be UDP or TCP.
	// Defaults to "TCP".
	// +optional
	Protocol *string `protobuf:"bytes,4,opt,name=protocol" json:"protocol,omitempty"`
	// What host IP to bind the external port to.
	// +optional
	HostIP           *string `protobuf:"bytes,5,opt,name=hostIP" json:"hostIP,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ContainerPort represents a network port in a single container.

func (*ContainerPort) Descriptor

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

func (*ContainerPort) GetContainerPort

func (m *ContainerPort) GetContainerPort() int32

func (*ContainerPort) GetHostIP

func (m *ContainerPort) GetHostIP() string

func (*ContainerPort) GetHostPort

func (m *ContainerPort) GetHostPort() int32

func (*ContainerPort) GetName

func (m *ContainerPort) GetName() string

func (*ContainerPort) GetProtocol

func (m *ContainerPort) GetProtocol() string

func (*ContainerPort) Marshal

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

func (*ContainerPort) MarshalTo

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

func (*ContainerPort) ProtoMessage

func (*ContainerPort) ProtoMessage()

func (*ContainerPort) Reset

func (m *ContainerPort) Reset()

func (*ContainerPort) Size

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

func (*ContainerPort) String

func (m *ContainerPort) String() string

func (*ContainerPort) Unmarshal

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

type ContainerState

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

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) Descriptor

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

func (*ContainerState) GetRunning

func (m *ContainerState) GetRunning() *ContainerStateRunning

func (*ContainerState) GetTerminated

func (m *ContainerState) GetTerminated() *ContainerStateTerminated

func (*ContainerState) GetWaiting

func (m *ContainerState) GetWaiting() *ContainerStateWaiting

func (*ContainerState) Marshal

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

func (*ContainerState) MarshalTo

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

func (*ContainerState) ProtoMessage

func (*ContainerState) ProtoMessage()

func (*ContainerState) Reset

func (m *ContainerState) Reset()

func (*ContainerState) Size

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

func (*ContainerState) String

func (m *ContainerState) String() string

func (*ContainerState) Unmarshal

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

type ContainerStateRunning

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

ContainerStateRunning is a running state of a container.

func (*ContainerStateRunning) Descriptor

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

func (*ContainerStateRunning) GetStartedAt

func (*ContainerStateRunning) Marshal

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

func (*ContainerStateRunning) MarshalTo

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

func (*ContainerStateRunning) ProtoMessage

func (*ContainerStateRunning) ProtoMessage()

func (*ContainerStateRunning) Reset

func (m *ContainerStateRunning) Reset()

func (*ContainerStateRunning) Size

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

func (*ContainerStateRunning) String

func (m *ContainerStateRunning) String() string

func (*ContainerStateRunning) Unmarshal

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

type ContainerStateTerminated

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

ContainerStateTerminated is a terminated state of a container.

func (*ContainerStateTerminated) Descriptor

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

func (*ContainerStateTerminated) GetContainerID

func (m *ContainerStateTerminated) GetContainerID() string

func (*ContainerStateTerminated) GetExitCode

func (m *ContainerStateTerminated) GetExitCode() int32

func (*ContainerStateTerminated) GetFinishedAt

func (*ContainerStateTerminated) GetMessage

func (m *ContainerStateTerminated) GetMessage() string

func (*ContainerStateTerminated) GetReason

func (m *ContainerStateTerminated) GetReason() string

func (*ContainerStateTerminated) GetSignal

func (m *ContainerStateTerminated) GetSignal() int32

func (*ContainerStateTerminated) GetStartedAt

func (*ContainerStateTerminated) Marshal

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

func (*ContainerStateTerminated) MarshalTo

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

func (*ContainerStateTerminated) ProtoMessage

func (*ContainerStateTerminated) ProtoMessage()

func (*ContainerStateTerminated) Reset

func (m *ContainerStateTerminated) Reset()

func (*ContainerStateTerminated) Size

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

func (*ContainerStateTerminated) String

func (m *ContainerStateTerminated) String() string

func (*ContainerStateTerminated) Unmarshal

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

type ContainerStateWaiting

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

ContainerStateWaiting is a waiting state of a container.

func (*ContainerStateWaiting) Descriptor

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

func (*ContainerStateWaiting) GetMessage

func (m *ContainerStateWaiting) GetMessage() string

func (*ContainerStateWaiting) GetReason

func (m *ContainerStateWaiting) GetReason() string

func (*ContainerStateWaiting) Marshal

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

func (*ContainerStateWaiting) MarshalTo

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

func (*ContainerStateWaiting) ProtoMessage

func (*ContainerStateWaiting) ProtoMessage()

func (*ContainerStateWaiting) Reset

func (m *ContainerStateWaiting) Reset()

func (*ContainerStateWaiting) Size

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

func (*ContainerStateWaiting) String

func (m *ContainerStateWaiting) String() string

func (*ContainerStateWaiting) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Details about the container's current condition.
	// +optional
	State *ContainerState `protobuf:"bytes,2,opt,name=state" json:"state,omitempty"`
	// Details about the container's last termination condition.
	// +optional
	LastState *ContainerState `protobuf:"bytes,3,opt,name=lastState" json:"lastState,omitempty"`
	// Specifies whether the container has passed its readiness probe.
	Ready *bool `protobuf:"varint,4,opt,name=ready" json:"ready,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=restartCount" json:"restartCount,omitempty"`
	// 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 `protobuf:"bytes,6,opt,name=image" json:"image,omitempty"`
	// ImageID of the container's image.
	ImageID *string `protobuf:"bytes,7,opt,name=imageID" json:"imageID,omitempty"`
	// Container's ID in the format 'docker://<container_id>'.
	// More info: http://kubernetes.io/docs/user-guide/container-environment#container-information
	// +optional
	ContainerID      *string `protobuf:"bytes,8,opt,name=containerID" json:"containerID,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ContainerStatus contains details for the current status of this container.

func (*ContainerStatus) Descriptor

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

func (*ContainerStatus) GetContainerID

func (m *ContainerStatus) GetContainerID() string

func (*ContainerStatus) GetImage

func (m *ContainerStatus) GetImage() string

func (*ContainerStatus) GetImageID

func (m *ContainerStatus) GetImageID() string

func (*ContainerStatus) GetLastState

func (m *ContainerStatus) GetLastState() *ContainerState

func (*ContainerStatus) GetName

func (m *ContainerStatus) GetName() string

func (*ContainerStatus) GetReady

func (m *ContainerStatus) GetReady() bool

func (*ContainerStatus) GetRestartCount

func (m *ContainerStatus) GetRestartCount() int32

func (*ContainerStatus) GetState

func (m *ContainerStatus) GetState() *ContainerState

func (*ContainerStatus) Marshal

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

func (*ContainerStatus) MarshalTo

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

func (*ContainerStatus) ProtoMessage

func (*ContainerStatus) ProtoMessage()

func (*ContainerStatus) Reset

func (m *ContainerStatus) Reset()

func (*ContainerStatus) Size

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

func (*ContainerStatus) String

func (m *ContainerStatus) String() string

func (*ContainerStatus) Unmarshal

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

type DaemonEndpoint

type DaemonEndpoint struct {
	// Port number of the given endpoint.
	Port             *int32 `protobuf:"varint,1,opt,name=Port" json:"Port,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

DaemonEndpoint contains information about a single Daemon endpoint.

func (*DaemonEndpoint) Descriptor

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

func (*DaemonEndpoint) GetPort

func (m *DaemonEndpoint) GetPort() int32

func (*DaemonEndpoint) Marshal

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

func (*DaemonEndpoint) MarshalTo

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

func (*DaemonEndpoint) ProtoMessage

func (*DaemonEndpoint) ProtoMessage()

func (*DaemonEndpoint) Reset

func (m *DaemonEndpoint) Reset()

func (*DaemonEndpoint) Size

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

func (*DaemonEndpoint) String

func (m *DaemonEndpoint) String() string

func (*DaemonEndpoint) Unmarshal

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

type DeleteOptions

type DeleteOptions struct {
	// 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 `protobuf:"varint,1,opt,name=gracePeriodSeconds" json:"gracePeriodSeconds,omitempty"`
	// Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be
	// returned.
	// +optional
	Preconditions *Preconditions `protobuf:"bytes,2,opt,name=preconditions" json:"preconditions,omitempty"`
	// Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7.
	// Should the dependent objects be orphaned. If true/false, the "orphan"
	// finalizer will be added to/removed from the object's finalizers list.
	// Either this field or PropagationPolicy may be set, but not both.
	// +optional
	OrphanDependents *bool `protobuf:"varint,3,opt,name=orphanDependents" json:"orphanDependents,omitempty"`
	// Whether and how garbage collection will be performed.
	// Either this field or OrphanDependents may be set, but not both.
	// The default policy is decided by the existing finalizer set in the
	// metadata.finalizers and the resource-specific default policy.
	// +optional
	PropagationPolicy *string `protobuf:"bytes,4,opt,name=propagationPolicy" json:"propagationPolicy,omitempty"`
	XXX_unrecognized  []byte  `json:"-"`
}

DeleteOptions may be provided when deleting an API object DEPRECATED: This type has been moved to meta/v1 and will be removed soon. +k8s:openapi-gen=false

func (*DeleteOptions) Descriptor

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

func (*DeleteOptions) GetGracePeriodSeconds

func (m *DeleteOptions) GetGracePeriodSeconds() int64

func (*DeleteOptions) GetOrphanDependents

func (m *DeleteOptions) GetOrphanDependents() bool

func (*DeleteOptions) GetPreconditions

func (m *DeleteOptions) GetPreconditions() *Preconditions

func (*DeleteOptions) GetPropagationPolicy added in v0.3.0

func (m *DeleteOptions) GetPropagationPolicy() string

func (*DeleteOptions) Marshal

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

func (*DeleteOptions) MarshalTo

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

func (*DeleteOptions) ProtoMessage

func (*DeleteOptions) ProtoMessage()

func (*DeleteOptions) Reset

func (m *DeleteOptions) Reset()

func (*DeleteOptions) Size

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

func (*DeleteOptions) String

func (m *DeleteOptions) String() string

func (*DeleteOptions) Unmarshal

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

type DownwardAPIProjection added in v0.3.0

type DownwardAPIProjection struct {
	// Items is a list of DownwardAPIVolume file
	// +optional
	Items            []*DownwardAPIVolumeFile `protobuf:"bytes,1,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte                   `json:"-"`
}

Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

func (*DownwardAPIProjection) Descriptor added in v0.3.0

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

func (*DownwardAPIProjection) GetItems added in v0.3.0

func (*DownwardAPIProjection) Marshal added in v0.3.0

func (m *DownwardAPIProjection) Marshal() (dAtA []byte, err error)

func (*DownwardAPIProjection) MarshalTo added in v0.3.0

func (m *DownwardAPIProjection) MarshalTo(dAtA []byte) (int, error)

func (*DownwardAPIProjection) ProtoMessage added in v0.3.0

func (*DownwardAPIProjection) ProtoMessage()

func (*DownwardAPIProjection) Reset added in v0.3.0

func (m *DownwardAPIProjection) Reset()

func (*DownwardAPIProjection) Size added in v0.3.0

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

func (*DownwardAPIProjection) String added in v0.3.0

func (m *DownwardAPIProjection) String() string

func (*DownwardAPIProjection) Unmarshal added in v0.3.0

func (m *DownwardAPIProjection) Unmarshal(dAtA []byte) error

type DownwardAPIVolumeFile

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 `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	// Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.
	// +optional
	FieldRef *ObjectFieldSelector `protobuf:"bytes,2,opt,name=fieldRef" json:"fieldRef,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=resourceFieldRef" json:"resourceFieldRef,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=mode" json:"mode,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

DownwardAPIVolumeFile represents information to create the file containing the pod field

func (*DownwardAPIVolumeFile) Descriptor

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

func (*DownwardAPIVolumeFile) GetFieldRef

func (m *DownwardAPIVolumeFile) GetFieldRef() *ObjectFieldSelector

func (*DownwardAPIVolumeFile) GetMode

func (m *DownwardAPIVolumeFile) GetMode() int32

func (*DownwardAPIVolumeFile) GetPath

func (m *DownwardAPIVolumeFile) GetPath() string

func (*DownwardAPIVolumeFile) GetResourceFieldRef

func (m *DownwardAPIVolumeFile) GetResourceFieldRef() *ResourceFieldSelector

func (*DownwardAPIVolumeFile) Marshal

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

func (*DownwardAPIVolumeFile) MarshalTo

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

func (*DownwardAPIVolumeFile) ProtoMessage

func (*DownwardAPIVolumeFile) ProtoMessage()

func (*DownwardAPIVolumeFile) Reset

func (m *DownwardAPIVolumeFile) Reset()

func (*DownwardAPIVolumeFile) Size

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

func (*DownwardAPIVolumeFile) String

func (m *DownwardAPIVolumeFile) String() string

func (*DownwardAPIVolumeFile) Unmarshal

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

type DownwardAPIVolumeSource

type DownwardAPIVolumeSource struct {
	// Items is a list of downward API volume file
	// +optional
	Items []*DownwardAPIVolumeFile `protobuf:"bytes,1,rep,name=items" json:"items,omitempty"`
	// 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 `protobuf:"varint,2,opt,name=defaultMode" json:"defaultMode,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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

func (*DownwardAPIVolumeSource) Descriptor

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

func (*DownwardAPIVolumeSource) GetDefaultMode

func (m *DownwardAPIVolumeSource) GetDefaultMode() int32

func (*DownwardAPIVolumeSource) GetItems

func (*DownwardAPIVolumeSource) Marshal

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

func (*DownwardAPIVolumeSource) MarshalTo

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

func (*DownwardAPIVolumeSource) ProtoMessage

func (*DownwardAPIVolumeSource) ProtoMessage()

func (*DownwardAPIVolumeSource) Reset

func (m *DownwardAPIVolumeSource) Reset()

func (*DownwardAPIVolumeSource) Size

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

func (*DownwardAPIVolumeSource) String

func (m *DownwardAPIVolumeSource) String() string

func (*DownwardAPIVolumeSource) Unmarshal

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           *string `protobuf:"bytes,1,opt,name=medium" json:"medium,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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

func (*EmptyDirVolumeSource) Descriptor

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

func (*EmptyDirVolumeSource) GetMedium

func (m *EmptyDirVolumeSource) GetMedium() string

func (*EmptyDirVolumeSource) Marshal

func (m *EmptyDirVolumeSource) Marshal() (dAtA []byte, err error)

func (*EmptyDirVolumeSource) MarshalTo

func (m *EmptyDirVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*EmptyDirVolumeSource) ProtoMessage

func (*EmptyDirVolumeSource) ProtoMessage()

func (*EmptyDirVolumeSource) Reset

func (m *EmptyDirVolumeSource) Reset()

func (*EmptyDirVolumeSource) Size

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

func (*EmptyDirVolumeSource) String

func (m *EmptyDirVolumeSource) String() string

func (*EmptyDirVolumeSource) Unmarshal

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 `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
	// The Hostname of this endpoint
	// +optional
	Hostname *string `protobuf:"bytes,3,opt,name=hostname" json:"hostname,omitempty"`
	// Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
	// +optional
	NodeName *string `protobuf:"bytes,4,opt,name=nodeName" json:"nodeName,omitempty"`
	// Reference to object providing the endpoint.
	// +optional
	TargetRef        *ObjectReference `protobuf:"bytes,2,opt,name=targetRef" json:"targetRef,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

EndpointAddress is a tuple that describes single IP address.

func (*EndpointAddress) Descriptor

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

func (*EndpointAddress) GetHostname

func (m *EndpointAddress) GetHostname() string

func (*EndpointAddress) GetIp

func (m *EndpointAddress) GetIp() string

func (*EndpointAddress) GetNodeName

func (m *EndpointAddress) GetNodeName() string

func (*EndpointAddress) GetTargetRef

func (m *EndpointAddress) GetTargetRef() *ObjectReference

func (*EndpointAddress) Marshal

func (m *EndpointAddress) Marshal() (dAtA []byte, err error)

func (*EndpointAddress) MarshalTo

func (m *EndpointAddress) MarshalTo(dAtA []byte) (int, error)

func (*EndpointAddress) ProtoMessage

func (*EndpointAddress) ProtoMessage()

func (*EndpointAddress) Reset

func (m *EndpointAddress) Reset()

func (*EndpointAddress) Size

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

func (*EndpointAddress) String

func (m *EndpointAddress) String() string

func (*EndpointAddress) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// The port number of the endpoint.
	Port *int32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
	// The IP protocol for this port.
	// Must be UDP or TCP.
	// Default is TCP.
	// +optional
	Protocol         *string `protobuf:"bytes,3,opt,name=protocol" json:"protocol,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

EndpointPort is a tuple that describes a single port.

func (*EndpointPort) Descriptor

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

func (*EndpointPort) GetName

func (m *EndpointPort) GetName() string

func (*EndpointPort) GetPort

func (m *EndpointPort) GetPort() int32

func (*EndpointPort) GetProtocol

func (m *EndpointPort) GetProtocol() string

func (*EndpointPort) Marshal

func (m *EndpointPort) Marshal() (dAtA []byte, err error)

func (*EndpointPort) MarshalTo

func (m *EndpointPort) MarshalTo(dAtA []byte) (int, error)

func (*EndpointPort) ProtoMessage

func (*EndpointPort) ProtoMessage()

func (*EndpointPort) Reset

func (m *EndpointPort) Reset()

func (*EndpointPort) Size

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

func (*EndpointPort) String

func (m *EndpointPort) String() string

func (*EndpointPort) Unmarshal

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 `protobuf:"bytes,1,rep,name=addresses" json:"addresses,omitempty"`
	// 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 `protobuf:"bytes,2,rep,name=notReadyAddresses" json:"notReadyAddresses,omitempty"`
	// Port numbers available on the related IP addresses.
	// +optional
	Ports            []*EndpointPort `protobuf:"bytes,3,rep,name=ports" json:"ports,omitempty"`
	XXX_unrecognized []byte          `json:"-"`
}

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) Descriptor

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

func (*EndpointSubset) GetAddresses

func (m *EndpointSubset) GetAddresses() []*EndpointAddress

func (*EndpointSubset) GetNotReadyAddresses

func (m *EndpointSubset) GetNotReadyAddresses() []*EndpointAddress

func (*EndpointSubset) GetPorts

func (m *EndpointSubset) GetPorts() []*EndpointPort

func (*EndpointSubset) Marshal

func (m *EndpointSubset) Marshal() (dAtA []byte, err error)

func (*EndpointSubset) MarshalTo

func (m *EndpointSubset) MarshalTo(dAtA []byte) (int, error)

func (*EndpointSubset) ProtoMessage

func (*EndpointSubset) ProtoMessage()

func (*EndpointSubset) Reset

func (m *EndpointSubset) Reset()

func (*EndpointSubset) Size

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

func (*EndpointSubset) String

func (m *EndpointSubset) String() string

func (*EndpointSubset) Unmarshal

func (m *EndpointSubset) Unmarshal(dAtA []byte) error

type Endpoints

type Endpoints struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,rep,name=subsets" json:"subsets,omitempty"`
	XXX_unrecognized []byte            `json:"-"`
}

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) Descriptor

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

func (*Endpoints) GetMetadata

func (*Endpoints) GetSubsets

func (m *Endpoints) GetSubsets() []*EndpointSubset

func (*Endpoints) Marshal

func (m *Endpoints) Marshal() (dAtA []byte, err error)

func (*Endpoints) MarshalTo

func (m *Endpoints) MarshalTo(dAtA []byte) (int, error)

func (*Endpoints) ProtoMessage

func (*Endpoints) ProtoMessage()

func (*Endpoints) Reset

func (m *Endpoints) Reset()

func (*Endpoints) Size

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

func (*Endpoints) String

func (m *Endpoints) String() string

func (*Endpoints) Unmarshal

func (m *Endpoints) Unmarshal(dAtA []byte) error

type EndpointsList

type EndpointsList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of endpoints.
	Items            []*Endpoints `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte       `json:"-"`
}

EndpointsList is a list of endpoints.

func (*EndpointsList) Descriptor

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

func (*EndpointsList) GetItems

func (m *EndpointsList) GetItems() []*Endpoints

func (*EndpointsList) GetMetadata

func (*EndpointsList) Marshal

func (m *EndpointsList) Marshal() (dAtA []byte, err error)

func (*EndpointsList) MarshalTo

func (m *EndpointsList) MarshalTo(dAtA []byte) (int, error)

func (*EndpointsList) ProtoMessage

func (*EndpointsList) ProtoMessage()

func (*EndpointsList) Reset

func (m *EndpointsList) Reset()

func (*EndpointsList) Size

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

func (*EndpointsList) String

func (m *EndpointsList) String() string

func (*EndpointsList) Unmarshal

func (m *EndpointsList) Unmarshal(dAtA []byte) error

type EnvFromSource added in v0.3.0

type EnvFromSource struct {
	// An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
	// +optional
	Prefix *string `protobuf:"bytes,1,opt,name=prefix" json:"prefix,omitempty"`
	// The ConfigMap to select from
	// +optional
	ConfigMapRef *ConfigMapEnvSource `protobuf:"bytes,2,opt,name=configMapRef" json:"configMapRef,omitempty"`
	// The Secret to select from
	// +optional
	SecretRef        *SecretEnvSource `protobuf:"bytes,3,opt,name=secretRef" json:"secretRef,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

EnvFromSource represents the source of a set of ConfigMaps

func (*EnvFromSource) Descriptor added in v0.3.0

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

func (*EnvFromSource) GetConfigMapRef added in v0.3.0

func (m *EnvFromSource) GetConfigMapRef() *ConfigMapEnvSource

func (*EnvFromSource) GetPrefix added in v0.3.0

func (m *EnvFromSource) GetPrefix() string

func (*EnvFromSource) GetSecretRef added in v0.3.0

func (m *EnvFromSource) GetSecretRef() *SecretEnvSource

func (*EnvFromSource) Marshal added in v0.3.0

func (m *EnvFromSource) Marshal() (dAtA []byte, err error)

func (*EnvFromSource) MarshalTo added in v0.3.0

func (m *EnvFromSource) MarshalTo(dAtA []byte) (int, error)

func (*EnvFromSource) ProtoMessage added in v0.3.0

func (*EnvFromSource) ProtoMessage()

func (*EnvFromSource) Reset added in v0.3.0

func (m *EnvFromSource) Reset()

func (*EnvFromSource) Size added in v0.3.0

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

func (*EnvFromSource) String added in v0.3.0

func (m *EnvFromSource) String() string

func (*EnvFromSource) Unmarshal added in v0.3.0

func (m *EnvFromSource) Unmarshal(dAtA []byte) error

type EnvVar

type EnvVar struct {
	// Name of the environment variable. Must be a C_IDENTIFIER.
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
	// Source for the environment variable's value. Cannot be used if value is not empty.
	// +optional
	ValueFrom        *EnvVarSource `protobuf:"bytes,3,opt,name=valueFrom" json:"valueFrom,omitempty"`
	XXX_unrecognized []byte        `json:"-"`
}

EnvVar represents an environment variable present in a Container.

func (*EnvVar) Descriptor

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

func (*EnvVar) GetName

func (m *EnvVar) GetName() string

func (*EnvVar) GetValue

func (m *EnvVar) GetValue() string

func (*EnvVar) GetValueFrom

func (m *EnvVar) GetValueFrom() *EnvVarSource

func (*EnvVar) Marshal

func (m *EnvVar) Marshal() (dAtA []byte, err error)

func (*EnvVar) MarshalTo

func (m *EnvVar) MarshalTo(dAtA []byte) (int, error)

func (*EnvVar) ProtoMessage

func (*EnvVar) ProtoMessage()

func (*EnvVar) Reset

func (m *EnvVar) Reset()

func (*EnvVar) Size

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

func (*EnvVar) String

func (m *EnvVar) String() string

func (*EnvVar) Unmarshal

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 `protobuf:"bytes,1,opt,name=fieldRef" json:"fieldRef,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=resourceFieldRef" json:"resourceFieldRef,omitempty"`
	// Selects a key of a ConfigMap.
	// +optional
	ConfigMapKeyRef *ConfigMapKeySelector `protobuf:"bytes,3,opt,name=configMapKeyRef" json:"configMapKeyRef,omitempty"`
	// Selects a key of a secret in the pod's namespace
	// +optional
	SecretKeyRef     *SecretKeySelector `protobuf:"bytes,4,opt,name=secretKeyRef" json:"secretKeyRef,omitempty"`
	XXX_unrecognized []byte             `json:"-"`
}

EnvVarSource represents a source for the value of an EnvVar.

func (*EnvVarSource) Descriptor

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

func (*EnvVarSource) GetConfigMapKeyRef

func (m *EnvVarSource) GetConfigMapKeyRef() *ConfigMapKeySelector

func (*EnvVarSource) GetFieldRef

func (m *EnvVarSource) GetFieldRef() *ObjectFieldSelector

func (*EnvVarSource) GetResourceFieldRef

func (m *EnvVarSource) GetResourceFieldRef() *ResourceFieldSelector

func (*EnvVarSource) GetSecretKeyRef

func (m *EnvVarSource) GetSecretKeyRef() *SecretKeySelector

func (*EnvVarSource) Marshal

func (m *EnvVarSource) Marshal() (dAtA []byte, err error)

func (*EnvVarSource) MarshalTo

func (m *EnvVarSource) MarshalTo(dAtA []byte) (int, error)

func (*EnvVarSource) ProtoMessage

func (*EnvVarSource) ProtoMessage()

func (*EnvVarSource) Reset

func (m *EnvVarSource) Reset()

func (*EnvVarSource) Size

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

func (*EnvVarSource) String

func (m *EnvVarSource) String() string

func (*EnvVarSource) Unmarshal

func (m *EnvVarSource) Unmarshal(dAtA []byte) error

type Event

type Event struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// The object that this event is about.
	InvolvedObject *ObjectReference `protobuf:"bytes,2,opt,name=involvedObject" json:"involvedObject,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
	// A human-readable description of the status of this operation.
	// TODO: decide on maximum length.
	// +optional
	Message *string `protobuf:"bytes,4,opt,name=message" json:"message,omitempty"`
	// The component reporting this event. Should be a short machine understandable string.
	// +optional
	Source *EventSource `protobuf:"bytes,5,opt,name=source" json:"source,omitempty"`
	// The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
	// +optional
	FirstTimestamp *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,6,opt,name=firstTimestamp" json:"firstTimestamp,omitempty"`
	// The time at which the most recent occurrence of this event was recorded.
	// +optional
	LastTimestamp *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,7,opt,name=lastTimestamp" json:"lastTimestamp,omitempty"`
	// The number of times this event has occurred.
	// +optional
	Count *int32 `protobuf:"varint,8,opt,name=count" json:"count,omitempty"`
	// Type of this event (Normal, Warning), new types could be added in the future
	// +optional
	Type             *string `protobuf:"bytes,9,opt,name=type" json:"type,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*Event) GetCount

func (m *Event) GetCount() int32

func (*Event) GetFirstTimestamp

func (m *Event) GetFirstTimestamp() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*Event) GetInvolvedObject

func (m *Event) GetInvolvedObject() *ObjectReference

func (*Event) GetLastTimestamp

func (m *Event) GetLastTimestamp() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*Event) GetMessage

func (m *Event) GetMessage() string

func (*Event) GetMetadata

func (*Event) GetReason

func (m *Event) GetReason() string

func (*Event) GetSource

func (m *Event) GetSource() *EventSource

func (*Event) GetType

func (m *Event) GetType() string

func (*Event) Marshal

func (m *Event) Marshal() (dAtA []byte, err error)

func (*Event) MarshalTo

func (m *Event) MarshalTo(dAtA []byte) (int, error)

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) Reset

func (m *Event) Reset()

func (*Event) Size

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

func (*Event) String

func (m *Event) String() string

func (*Event) Unmarshal

func (m *Event) Unmarshal(dAtA []byte) error

type EventList

type EventList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of events
	Items            []*Event `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

EventList is a list of events.

func (*EventList) Descriptor

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

func (*EventList) GetItems

func (m *EventList) GetItems() []*Event

func (*EventList) GetMetadata

func (*EventList) Marshal

func (m *EventList) Marshal() (dAtA []byte, err error)

func (*EventList) MarshalTo

func (m *EventList) MarshalTo(dAtA []byte) (int, error)

func (*EventList) ProtoMessage

func (*EventList) ProtoMessage()

func (*EventList) Reset

func (m *EventList) Reset()

func (*EventList) Size

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

func (*EventList) String

func (m *EventList) String() string

func (*EventList) Unmarshal

func (m *EventList) Unmarshal(dAtA []byte) error

type EventSource

type EventSource struct {
	// Component from which the event is generated.
	// +optional
	Component *string `protobuf:"bytes,1,opt,name=component" json:"component,omitempty"`
	// Node name on which the event is generated.
	// +optional
	Host             *string `protobuf:"bytes,2,opt,name=host" json:"host,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

EventSource contains information for an event.

func (*EventSource) Descriptor

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

func (*EventSource) GetComponent

func (m *EventSource) GetComponent() string

func (*EventSource) GetHost

func (m *EventSource) GetHost() string

func (*EventSource) Marshal

func (m *EventSource) Marshal() (dAtA []byte, err error)

func (*EventSource) MarshalTo

func (m *EventSource) MarshalTo(dAtA []byte) (int, error)

func (*EventSource) ProtoMessage

func (*EventSource) ProtoMessage()

func (*EventSource) Reset

func (m *EventSource) Reset()

func (*EventSource) Size

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

func (*EventSource) String

func (m *EventSource) String() string

func (*EventSource) Unmarshal

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 `protobuf:"bytes,1,rep,name=command" json:"command,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

ExecAction describes a "run in container" action.

func (*ExecAction) Descriptor

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

func (*ExecAction) GetCommand

func (m *ExecAction) GetCommand() []string

func (*ExecAction) Marshal

func (m *ExecAction) Marshal() (dAtA []byte, err error)

func (*ExecAction) MarshalTo

func (m *ExecAction) MarshalTo(dAtA []byte) (int, error)

func (*ExecAction) ProtoMessage

func (*ExecAction) ProtoMessage()

func (*ExecAction) Reset

func (m *ExecAction) Reset()

func (*ExecAction) Size

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

func (*ExecAction) String

func (m *ExecAction) String() string

func (*ExecAction) Unmarshal

func (m *ExecAction) Unmarshal(dAtA []byte) error

type FCVolumeSource

type FCVolumeSource struct {
	// Required: FC target worldwide names (WWNs)
	TargetWWNs []string `protobuf:"bytes,1,rep,name=targetWWNs" json:"targetWWNs,omitempty"`
	// Required: FC target lun number
	Lun *int32 `protobuf:"varint,2,opt,name=lun" json:"lun,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=fsType" json:"fsType,omitempty"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly         *bool  `protobuf:"varint,4,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*FCVolumeSource) GetFsType

func (m *FCVolumeSource) GetFsType() string

func (*FCVolumeSource) GetLun

func (m *FCVolumeSource) GetLun() int32

func (*FCVolumeSource) GetReadOnly

func (m *FCVolumeSource) GetReadOnly() bool

func (*FCVolumeSource) GetTargetWWNs

func (m *FCVolumeSource) GetTargetWWNs() []string

func (*FCVolumeSource) Marshal

func (m *FCVolumeSource) Marshal() (dAtA []byte, err error)

func (*FCVolumeSource) MarshalTo

func (m *FCVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*FCVolumeSource) ProtoMessage

func (*FCVolumeSource) ProtoMessage()

func (*FCVolumeSource) Reset

func (m *FCVolumeSource) Reset()

func (*FCVolumeSource) Size

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

func (*FCVolumeSource) String

func (m *FCVolumeSource) String() string

func (*FCVolumeSource) Unmarshal

func (m *FCVolumeSource) Unmarshal(dAtA []byte) error

type FlexVolumeSource

type FlexVolumeSource struct {
	// Driver is the name of the driver to use for this volume.
	Driver *string `protobuf:"bytes,1,opt,name=driver" json:"driver,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=secretRef" json:"secretRef,omitempty"`
	// Optional: Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly *bool `protobuf:"varint,4,opt,name=readOnly" json:"readOnly,omitempty"`
	// Optional: Extra command options if any.
	// +optional
	Options          map[string]string `` /* 134-byte string literal not displayed */
	XXX_unrecognized []byte            `json:"-"`
}

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) Descriptor

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

func (*FlexVolumeSource) GetDriver

func (m *FlexVolumeSource) GetDriver() string

func (*FlexVolumeSource) GetFsType

func (m *FlexVolumeSource) GetFsType() string

func (*FlexVolumeSource) GetOptions

func (m *FlexVolumeSource) GetOptions() map[string]string

func (*FlexVolumeSource) GetReadOnly

func (m *FlexVolumeSource) GetReadOnly() bool

func (*FlexVolumeSource) GetSecretRef

func (m *FlexVolumeSource) GetSecretRef() *LocalObjectReference

func (*FlexVolumeSource) Marshal

func (m *FlexVolumeSource) Marshal() (dAtA []byte, err error)

func (*FlexVolumeSource) MarshalTo

func (m *FlexVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*FlexVolumeSource) ProtoMessage

func (*FlexVolumeSource) ProtoMessage()

func (*FlexVolumeSource) Reset

func (m *FlexVolumeSource) Reset()

func (*FlexVolumeSource) Size

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

func (*FlexVolumeSource) String

func (m *FlexVolumeSource) String() string

func (*FlexVolumeSource) Unmarshal

func (m *FlexVolumeSource) Unmarshal(dAtA []byte) error

type FlockerVolumeSource

type FlockerVolumeSource struct {
	// Name of the dataset stored as metadata -> name on the dataset for Flocker
	// should be considered as deprecated
	// +optional
	DatasetName *string `protobuf:"bytes,1,opt,name=datasetName" json:"datasetName,omitempty"`
	// UUID of the dataset. This is unique identifier of a Flocker dataset
	// +optional
	DatasetUUID      *string `protobuf:"bytes,2,opt,name=datasetUUID" json:"datasetUUID,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*FlockerVolumeSource) GetDatasetName

func (m *FlockerVolumeSource) GetDatasetName() string

func (*FlockerVolumeSource) GetDatasetUUID

func (m *FlockerVolumeSource) GetDatasetUUID() string

func (*FlockerVolumeSource) Marshal

func (m *FlockerVolumeSource) Marshal() (dAtA []byte, err error)

func (*FlockerVolumeSource) MarshalTo

func (m *FlockerVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*FlockerVolumeSource) ProtoMessage

func (*FlockerVolumeSource) ProtoMessage()

func (*FlockerVolumeSource) Reset

func (m *FlockerVolumeSource) Reset()

func (*FlockerVolumeSource) Size

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

func (*FlockerVolumeSource) String

func (m *FlockerVolumeSource) String() string

func (*FlockerVolumeSource) Unmarshal

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 `protobuf:"bytes,1,opt,name=pdName" json:"pdName,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=partition" json:"partition,omitempty"`
	// 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  `protobuf:"varint,4,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*GCEPersistentDiskVolumeSource) GetFsType

func (m *GCEPersistentDiskVolumeSource) GetFsType() string

func (*GCEPersistentDiskVolumeSource) GetPartition

func (m *GCEPersistentDiskVolumeSource) GetPartition() int32

func (*GCEPersistentDiskVolumeSource) GetPdName

func (m *GCEPersistentDiskVolumeSource) GetPdName() string

func (*GCEPersistentDiskVolumeSource) GetReadOnly

func (m *GCEPersistentDiskVolumeSource) GetReadOnly() bool

func (*GCEPersistentDiskVolumeSource) Marshal

func (m *GCEPersistentDiskVolumeSource) Marshal() (dAtA []byte, err error)

func (*GCEPersistentDiskVolumeSource) MarshalTo

func (m *GCEPersistentDiskVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*GCEPersistentDiskVolumeSource) ProtoMessage

func (*GCEPersistentDiskVolumeSource) ProtoMessage()

func (*GCEPersistentDiskVolumeSource) Reset

func (m *GCEPersistentDiskVolumeSource) Reset()

func (*GCEPersistentDiskVolumeSource) Size

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

func (*GCEPersistentDiskVolumeSource) String

func (*GCEPersistentDiskVolumeSource) Unmarshal

func (m *GCEPersistentDiskVolumeSource) Unmarshal(dAtA []byte) error

type GitRepoVolumeSource

type GitRepoVolumeSource struct {
	// Repository URL
	Repository *string `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
	// Commit hash for the specified revision.
	// +optional
	Revision *string `protobuf:"bytes,2,opt,name=revision" json:"revision,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=directory" json:"directory,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*GitRepoVolumeSource) GetDirectory

func (m *GitRepoVolumeSource) GetDirectory() string

func (*GitRepoVolumeSource) GetRepository

func (m *GitRepoVolumeSource) GetRepository() string

func (*GitRepoVolumeSource) GetRevision

func (m *GitRepoVolumeSource) GetRevision() string

func (*GitRepoVolumeSource) Marshal

func (m *GitRepoVolumeSource) Marshal() (dAtA []byte, err error)

func (*GitRepoVolumeSource) MarshalTo

func (m *GitRepoVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*GitRepoVolumeSource) ProtoMessage

func (*GitRepoVolumeSource) ProtoMessage()

func (*GitRepoVolumeSource) Reset

func (m *GitRepoVolumeSource) Reset()

func (*GitRepoVolumeSource) Size

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

func (*GitRepoVolumeSource) String

func (m *GitRepoVolumeSource) String() string

func (*GitRepoVolumeSource) Unmarshal

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
	Endpoints *string `protobuf:"bytes,1,opt,name=endpoints" json:"endpoints,omitempty"`
	// Path is the Glusterfs volume path.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
	Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
	// 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  `protobuf:"varint,3,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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

func (*GlusterfsVolumeSource) Descriptor

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

func (*GlusterfsVolumeSource) GetEndpoints

func (m *GlusterfsVolumeSource) GetEndpoints() string

func (*GlusterfsVolumeSource) GetPath

func (m *GlusterfsVolumeSource) GetPath() string

func (*GlusterfsVolumeSource) GetReadOnly

func (m *GlusterfsVolumeSource) GetReadOnly() bool

func (*GlusterfsVolumeSource) Marshal

func (m *GlusterfsVolumeSource) Marshal() (dAtA []byte, err error)

func (*GlusterfsVolumeSource) MarshalTo

func (m *GlusterfsVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*GlusterfsVolumeSource) ProtoMessage

func (*GlusterfsVolumeSource) ProtoMessage()

func (*GlusterfsVolumeSource) Reset

func (m *GlusterfsVolumeSource) Reset()

func (*GlusterfsVolumeSource) Size

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

func (*GlusterfsVolumeSource) String

func (m *GlusterfsVolumeSource) String() string

func (*GlusterfsVolumeSource) Unmarshal

func (m *GlusterfsVolumeSource) Unmarshal(dAtA []byte) error

type HTTPGetAction

type HTTPGetAction struct {
	// Path to access on the HTTP server.
	// +optional
	Path *string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_util_intstr.IntOrString `protobuf:"bytes,2,opt,name=port" json:"port,omitempty"`
	// Host name to connect to, defaults to the pod IP. You probably want to set
	// "Host" in httpHeaders instead.
	// +optional
	Host *string `protobuf:"bytes,3,opt,name=host" json:"host,omitempty"`
	// Scheme to use for connecting to the host.
	// Defaults to HTTP.
	// +optional
	Scheme *string `protobuf:"bytes,4,opt,name=scheme" json:"scheme,omitempty"`
	// Custom headers to set in the request. HTTP allows repeated headers.
	// +optional
	HttpHeaders      []*HTTPHeader `protobuf:"bytes,5,rep,name=httpHeaders" json:"httpHeaders,omitempty"`
	XXX_unrecognized []byte        `json:"-"`
}

HTTPGetAction describes an action based on HTTP Get requests.

func (*HTTPGetAction) Descriptor

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

func (*HTTPGetAction) GetHost

func (m *HTTPGetAction) GetHost() string

func (*HTTPGetAction) GetHttpHeaders

func (m *HTTPGetAction) GetHttpHeaders() []*HTTPHeader

func (*HTTPGetAction) GetPath

func (m *HTTPGetAction) GetPath() string

func (*HTTPGetAction) GetPort

func (*HTTPGetAction) GetScheme

func (m *HTTPGetAction) GetScheme() string

func (*HTTPGetAction) Marshal

func (m *HTTPGetAction) Marshal() (dAtA []byte, err error)

func (*HTTPGetAction) MarshalTo

func (m *HTTPGetAction) MarshalTo(dAtA []byte) (int, error)

func (*HTTPGetAction) ProtoMessage

func (*HTTPGetAction) ProtoMessage()

func (*HTTPGetAction) Reset

func (m *HTTPGetAction) Reset()

func (*HTTPGetAction) Size

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

func (*HTTPGetAction) String

func (m *HTTPGetAction) String() string

func (*HTTPGetAction) Unmarshal

func (m *HTTPGetAction) Unmarshal(dAtA []byte) error

type HTTPHeader

type HTTPHeader struct {
	// The header field name
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// The header field value
	Value            *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

HTTPHeader describes a custom header to be used in HTTP probes

func (*HTTPHeader) Descriptor

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

func (*HTTPHeader) GetName

func (m *HTTPHeader) GetName() string

func (*HTTPHeader) GetValue

func (m *HTTPHeader) GetValue() string

func (*HTTPHeader) Marshal

func (m *HTTPHeader) Marshal() (dAtA []byte, err error)

func (*HTTPHeader) MarshalTo

func (m *HTTPHeader) MarshalTo(dAtA []byte) (int, error)

func (*HTTPHeader) ProtoMessage

func (*HTTPHeader) ProtoMessage()

func (*HTTPHeader) Reset

func (m *HTTPHeader) Reset()

func (*HTTPHeader) Size

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

func (*HTTPHeader) String

func (m *HTTPHeader) String() string

func (*HTTPHeader) Unmarshal

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 `protobuf:"bytes,1,opt,name=exec" json:"exec,omitempty"`
	// HTTPGet specifies the http request to perform.
	// +optional
	HttpGet *HTTPGetAction `protobuf:"bytes,2,opt,name=httpGet" json:"httpGet,omitempty"`
	// TCPSocket specifies an action involving a TCP port.
	// TCP hooks not yet supported
	// TODO: implement a realistic TCP lifecycle hook
	// +optional
	TcpSocket        *TCPSocketAction `protobuf:"bytes,3,opt,name=tcpSocket" json:"tcpSocket,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

Handler defines a specific action that should be taken TODO: pass structured data to these actions, and document that data here.

func (*Handler) Descriptor

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

func (*Handler) GetExec

func (m *Handler) GetExec() *ExecAction

func (*Handler) GetHttpGet

func (m *Handler) GetHttpGet() *HTTPGetAction

func (*Handler) GetTcpSocket

func (m *Handler) GetTcpSocket() *TCPSocketAction

func (*Handler) Marshal

func (m *Handler) Marshal() (dAtA []byte, err error)

func (*Handler) MarshalTo

func (m *Handler) MarshalTo(dAtA []byte) (int, error)

func (*Handler) ProtoMessage

func (*Handler) ProtoMessage()

func (*Handler) Reset

func (m *Handler) Reset()

func (*Handler) Size

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

func (*Handler) String

func (m *Handler) String() string

func (*Handler) Unmarshal

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 `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

func (*HostPathVolumeSource) Descriptor

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

func (*HostPathVolumeSource) GetPath

func (m *HostPathVolumeSource) GetPath() string

func (*HostPathVolumeSource) Marshal

func (m *HostPathVolumeSource) Marshal() (dAtA []byte, err error)

func (*HostPathVolumeSource) MarshalTo

func (m *HostPathVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*HostPathVolumeSource) ProtoMessage

func (*HostPathVolumeSource) ProtoMessage()

func (*HostPathVolumeSource) Reset

func (m *HostPathVolumeSource) Reset()

func (*HostPathVolumeSource) Size

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

func (*HostPathVolumeSource) String

func (m *HostPathVolumeSource) String() string

func (*HostPathVolumeSource) Unmarshal

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 `protobuf:"bytes,1,opt,name=targetPortal" json:"targetPortal,omitempty"`
	// Target iSCSI Qualified Name.
	Iqn *string `protobuf:"bytes,2,opt,name=iqn" json:"iqn,omitempty"`
	// iSCSI target lun number.
	Lun *int32 `protobuf:"varint,3,opt,name=lun" json:"lun,omitempty"`
	// Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
	// +optional
	IscsiInterface *string `protobuf:"bytes,4,opt,name=iscsiInterface" json:"iscsiInterface,omitempty"`
	// 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 `protobuf:"bytes,5,opt,name=fsType" json:"fsType,omitempty"`
	// ReadOnly here will force the ReadOnly setting in VolumeMounts.
	// Defaults to false.
	// +optional
	ReadOnly *bool `protobuf:"varint,6,opt,name=readOnly" json:"readOnly,omitempty"`
	// iSCSI target portal List. The portal is either an IP or ip_addr:port if the port
	// is other than default (typically TCP ports 860 and 3260).
	// +optional
	Portals          []string `protobuf:"bytes,7,rep,name=portals" json:"portals,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

func (*ISCSIVolumeSource) Descriptor

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

func (*ISCSIVolumeSource) GetFsType

func (m *ISCSIVolumeSource) GetFsType() string

func (*ISCSIVolumeSource) GetIqn

func (m *ISCSIVolumeSource) GetIqn() string

func (*ISCSIVolumeSource) GetIscsiInterface

func (m *ISCSIVolumeSource) GetIscsiInterface() string

func (*ISCSIVolumeSource) GetLun

func (m *ISCSIVolumeSource) GetLun() int32

func (*ISCSIVolumeSource) GetPortals added in v0.3.0

func (m *ISCSIVolumeSource) GetPortals() []string

func (*ISCSIVolumeSource) GetReadOnly

func (m *ISCSIVolumeSource) GetReadOnly() bool

func (*ISCSIVolumeSource) GetTargetPortal

func (m *ISCSIVolumeSource) GetTargetPortal() string

func (*ISCSIVolumeSource) Marshal

func (m *ISCSIVolumeSource) Marshal() (dAtA []byte, err error)

func (*ISCSIVolumeSource) MarshalTo

func (m *ISCSIVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*ISCSIVolumeSource) ProtoMessage

func (*ISCSIVolumeSource) ProtoMessage()

func (*ISCSIVolumeSource) Reset

func (m *ISCSIVolumeSource) Reset()

func (*ISCSIVolumeSource) Size

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

func (*ISCSIVolumeSource) String

func (m *ISCSIVolumeSource) String() string

func (*ISCSIVolumeSource) Unmarshal

func (m *ISCSIVolumeSource) Unmarshal(dAtA []byte) error

type KeyToPath

type KeyToPath struct {
	// The key to project.
	Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=mode" json:"mode,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Maps a string key to a path within a volume.

func (*KeyToPath) Descriptor

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

func (*KeyToPath) GetKey

func (m *KeyToPath) GetKey() string

func (*KeyToPath) GetMode

func (m *KeyToPath) GetMode() int32

func (*KeyToPath) GetPath

func (m *KeyToPath) GetPath() string

func (*KeyToPath) Marshal

func (m *KeyToPath) Marshal() (dAtA []byte, err error)

func (*KeyToPath) MarshalTo

func (m *KeyToPath) MarshalTo(dAtA []byte) (int, error)

func (*KeyToPath) ProtoMessage

func (*KeyToPath) ProtoMessage()

func (*KeyToPath) Reset

func (m *KeyToPath) Reset()

func (*KeyToPath) Size

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

func (*KeyToPath) String

func (m *KeyToPath) String() string

func (*KeyToPath) Unmarshal

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 `protobuf:"bytes,1,opt,name=postStart" json:"postStart,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=preStop" json:"preStop,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

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) Descriptor

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

func (*Lifecycle) GetPostStart

func (m *Lifecycle) GetPostStart() *Handler

func (*Lifecycle) GetPreStop

func (m *Lifecycle) GetPreStop() *Handler

func (*Lifecycle) Marshal

func (m *Lifecycle) Marshal() (dAtA []byte, err error)

func (*Lifecycle) MarshalTo

func (m *Lifecycle) MarshalTo(dAtA []byte) (int, error)

func (*Lifecycle) ProtoMessage

func (*Lifecycle) ProtoMessage()

func (*Lifecycle) Reset

func (m *Lifecycle) Reset()

func (*Lifecycle) Size

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

func (*Lifecycle) String

func (m *Lifecycle) String() string

func (*Lifecycle) Unmarshal

func (m *Lifecycle) Unmarshal(dAtA []byte) error

type LimitRange

type LimitRange struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec defines the limits enforced.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec             *LimitRangeSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_unrecognized []byte          `json:"-"`
}

LimitRange sets resource usage limits for each kind of resource in a Namespace.

func (*LimitRange) Descriptor

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

func (*LimitRange) GetMetadata

func (*LimitRange) GetSpec

func (m *LimitRange) GetSpec() *LimitRangeSpec

func (*LimitRange) Marshal

func (m *LimitRange) Marshal() (dAtA []byte, err error)

func (*LimitRange) MarshalTo

func (m *LimitRange) MarshalTo(dAtA []byte) (int, error)

func (*LimitRange) ProtoMessage

func (*LimitRange) ProtoMessage()

func (*LimitRange) Reset

func (m *LimitRange) Reset()

func (*LimitRange) Size

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

func (*LimitRange) String

func (m *LimitRange) String() string

func (*LimitRange) Unmarshal

func (m *LimitRange) Unmarshal(dAtA []byte) error

type LimitRangeItem

type LimitRangeItem struct {
	// Type of resource that this limit applies to.
	// +optional
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// Max usage constraints on this kind by resource name.
	// +optional
	Max map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 126-byte string literal not displayed */
	// Min usage constraints on this kind by resource name.
	// +optional
	Min map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 126-byte string literal not displayed */
	// Default resource requirement limit value by resource name if resource limit is omitted.
	// +optional
	Default map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 134-byte string literal not displayed */
	// DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.
	// +optional
	DefaultRequest map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 148-byte string literal not displayed */
	// 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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 160-byte string literal not displayed */
	XXX_unrecognized     []byte                                                  `json:"-"`
}

LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

func (*LimitRangeItem) Descriptor

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

func (*LimitRangeItem) GetDefault

func (*LimitRangeItem) GetDefaultRequest

func (*LimitRangeItem) GetMax

func (*LimitRangeItem) GetMaxLimitRequestRatio

func (m *LimitRangeItem) GetMaxLimitRequestRatio() map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity

func (*LimitRangeItem) GetMin

func (*LimitRangeItem) GetType

func (m *LimitRangeItem) GetType() string

func (*LimitRangeItem) Marshal

func (m *LimitRangeItem) Marshal() (dAtA []byte, err error)

func (*LimitRangeItem) MarshalTo

func (m *LimitRangeItem) MarshalTo(dAtA []byte) (int, error)

func (*LimitRangeItem) ProtoMessage

func (*LimitRangeItem) ProtoMessage()

func (*LimitRangeItem) Reset

func (m *LimitRangeItem) Reset()

func (*LimitRangeItem) Size

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

func (*LimitRangeItem) String

func (m *LimitRangeItem) String() string

func (*LimitRangeItem) Unmarshal

func (m *LimitRangeItem) Unmarshal(dAtA []byte) error

type LimitRangeList

type LimitRangeList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is a list of LimitRange objects.
	// More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md
	Items            []*LimitRange `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte        `json:"-"`
}

LimitRangeList is a list of LimitRange items.

func (*LimitRangeList) Descriptor

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

func (*LimitRangeList) GetItems

func (m *LimitRangeList) GetItems() []*LimitRange

func (*LimitRangeList) GetMetadata

func (*LimitRangeList) Marshal

func (m *LimitRangeList) Marshal() (dAtA []byte, err error)

func (*LimitRangeList) MarshalTo

func (m *LimitRangeList) MarshalTo(dAtA []byte) (int, error)

func (*LimitRangeList) ProtoMessage

func (*LimitRangeList) ProtoMessage()

func (*LimitRangeList) Reset

func (m *LimitRangeList) Reset()

func (*LimitRangeList) Size

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

func (*LimitRangeList) String

func (m *LimitRangeList) String() string

func (*LimitRangeList) Unmarshal

func (m *LimitRangeList) Unmarshal(dAtA []byte) error

type LimitRangeSpec

type LimitRangeSpec struct {
	// Limits is the list of LimitRangeItem objects that are enforced.
	Limits           []*LimitRangeItem `protobuf:"bytes,1,rep,name=limits" json:"limits,omitempty"`
	XXX_unrecognized []byte            `json:"-"`
}

LimitRangeSpec defines a min/max usage limit for resources that match on kind.

func (*LimitRangeSpec) Descriptor

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

func (*LimitRangeSpec) GetLimits

func (m *LimitRangeSpec) GetLimits() []*LimitRangeItem

func (*LimitRangeSpec) Marshal

func (m *LimitRangeSpec) Marshal() (dAtA []byte, err error)

func (*LimitRangeSpec) MarshalTo

func (m *LimitRangeSpec) MarshalTo(dAtA []byte) (int, error)

func (*LimitRangeSpec) ProtoMessage

func (*LimitRangeSpec) ProtoMessage()

func (*LimitRangeSpec) Reset

func (m *LimitRangeSpec) Reset()

func (*LimitRangeSpec) Size

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

func (*LimitRangeSpec) String

func (m *LimitRangeSpec) String() string

func (*LimitRangeSpec) Unmarshal

func (m *LimitRangeSpec) Unmarshal(dAtA []byte) error

type List

type List struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of objects
	Items            []*k8s_io_kubernetes_pkg_runtime.RawExtension `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte                                        `json:"-"`
}

List holds a list of objects, which may not be known by the server.

func (*List) Descriptor

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

func (*List) GetItems

func (*List) GetMetadata

func (*List) Marshal

func (m *List) Marshal() (dAtA []byte, err error)

func (*List) MarshalTo

func (m *List) MarshalTo(dAtA []byte) (int, error)

func (*List) ProtoMessage

func (*List) ProtoMessage()

func (*List) Reset

func (m *List) Reset()

func (*List) Size

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

func (*List) String

func (m *List) String() string

func (*List) Unmarshal

func (m *List) Unmarshal(dAtA []byte) error

type ListOptions

type ListOptions struct {
	// A selector to restrict the list of returned objects by their labels.
	// Defaults to everything.
	// +optional
	LabelSelector *string `protobuf:"bytes,1,opt,name=labelSelector" json:"labelSelector,omitempty"`
	// A selector to restrict the list of returned objects by their fields.
	// Defaults to everything.
	// +optional
	FieldSelector *string `protobuf:"bytes,2,opt,name=fieldSelector" json:"fieldSelector,omitempty"`
	// Watch for changes to the described resources and return them as a stream of
	// add, update, and remove notifications. Specify resourceVersion.
	// +optional
	Watch *bool `protobuf:"varint,3,opt,name=watch" json:"watch,omitempty"`
	// 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.
	// When specified for list:
	// - if unset, then the result is returned from remote storage based on quorum-read flag;
	// - if it's 0, then we simply return what we currently have in cache, no guarantee;
	// - if set to non zero, then the result is at least as fresh as given rv.
	// +optional
	ResourceVersion *string `protobuf:"bytes,4,opt,name=resourceVersion" json:"resourceVersion,omitempty"`
	// Timeout for the list/watch call.
	// +optional
	TimeoutSeconds   *int64 `protobuf:"varint,5,opt,name=timeoutSeconds" json:"timeoutSeconds,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

ListOptions is the query options to a standard REST list call. DEPRECATED: This type has been moved to meta/v1 and will be removed soon. +k8s:openapi-gen=false

func (*ListOptions) Descriptor

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

func (*ListOptions) GetFieldSelector

func (m *ListOptions) GetFieldSelector() string

func (*ListOptions) GetLabelSelector

func (m *ListOptions) GetLabelSelector() string

func (*ListOptions) GetResourceVersion

func (m *ListOptions) GetResourceVersion() string

func (*ListOptions) GetTimeoutSeconds

func (m *ListOptions) GetTimeoutSeconds() int64

func (*ListOptions) GetWatch

func (m *ListOptions) GetWatch() bool

func (*ListOptions) Marshal

func (m *ListOptions) Marshal() (dAtA []byte, err error)

func (*ListOptions) MarshalTo

func (m *ListOptions) MarshalTo(dAtA []byte) (int, error)

func (*ListOptions) ProtoMessage

func (*ListOptions) ProtoMessage()

func (*ListOptions) Reset

func (m *ListOptions) Reset()

func (*ListOptions) Size

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

func (*ListOptions) String

func (m *ListOptions) String() string

func (*ListOptions) Unmarshal

func (m *ListOptions) Unmarshal(dAtA []byte) error

type LoadBalancerIngress

type LoadBalancerIngress struct {
	// IP is set for load-balancer ingress points that are IP based
	// (typically GCE or OpenStack load-balancers)
	// +optional
	Ip *string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
	// Hostname is set for load-balancer ingress points that are DNS based
	// (typically AWS load-balancers)
	// +optional
	Hostname         *string `protobuf:"bytes,2,opt,name=hostname" json:"hostname,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

func (*LoadBalancerIngress) Descriptor

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

func (*LoadBalancerIngress) GetHostname

func (m *LoadBalancerIngress) GetHostname() string

func (*LoadBalancerIngress) GetIp

func (m *LoadBalancerIngress) GetIp() string

func (*LoadBalancerIngress) Marshal

func (m *LoadBalancerIngress) Marshal() (dAtA []byte, err error)

func (*LoadBalancerIngress) MarshalTo

func (m *LoadBalancerIngress) MarshalTo(dAtA []byte) (int, error)

func (*LoadBalancerIngress) ProtoMessage

func (*LoadBalancerIngress) ProtoMessage()

func (*LoadBalancerIngress) Reset

func (m *LoadBalancerIngress) Reset()

func (*LoadBalancerIngress) Size

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

func (*LoadBalancerIngress) String

func (m *LoadBalancerIngress) String() string

func (*LoadBalancerIngress) Unmarshal

func (m *LoadBalancerIngress) Unmarshal(dAtA []byte) error

type LoadBalancerStatus

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 `protobuf:"bytes,1,rep,name=ingress" json:"ingress,omitempty"`
	XXX_unrecognized []byte                 `json:"-"`
}

LoadBalancerStatus represents the status of a load-balancer.

func (*LoadBalancerStatus) Descriptor

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

func (*LoadBalancerStatus) GetIngress

func (m *LoadBalancerStatus) GetIngress() []*LoadBalancerIngress

func (*LoadBalancerStatus) Marshal

func (m *LoadBalancerStatus) Marshal() (dAtA []byte, err error)

func (*LoadBalancerStatus) MarshalTo

func (m *LoadBalancerStatus) MarshalTo(dAtA []byte) (int, error)

func (*LoadBalancerStatus) ProtoMessage

func (*LoadBalancerStatus) ProtoMessage()

func (*LoadBalancerStatus) Reset

func (m *LoadBalancerStatus) Reset()

func (*LoadBalancerStatus) Size

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

func (*LoadBalancerStatus) String

func (m *LoadBalancerStatus) String() string

func (*LoadBalancerStatus) Unmarshal

func (m *LoadBalancerStatus) Unmarshal(dAtA []byte) error

type LocalObjectReference

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

func (*LocalObjectReference) Descriptor

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

func (*LocalObjectReference) GetName

func (m *LocalObjectReference) GetName() string

func (*LocalObjectReference) Marshal

func (m *LocalObjectReference) Marshal() (dAtA []byte, err error)

func (*LocalObjectReference) MarshalTo

func (m *LocalObjectReference) MarshalTo(dAtA []byte) (int, error)

func (*LocalObjectReference) ProtoMessage

func (*LocalObjectReference) ProtoMessage()

func (*LocalObjectReference) Reset

func (m *LocalObjectReference) Reset()

func (*LocalObjectReference) Size

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

func (*LocalObjectReference) String

func (m *LocalObjectReference) String() string

func (*LocalObjectReference) Unmarshal

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 `protobuf:"bytes,1,opt,name=server" json:"server,omitempty"`
	// Path that is exported by the NFS server.
	// More info: http://kubernetes.io/docs/user-guide/volumes#nfs
	Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
	// 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  `protobuf:"varint,3,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

func (*NFSVolumeSource) Descriptor

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

func (*NFSVolumeSource) GetPath

func (m *NFSVolumeSource) GetPath() string

func (*NFSVolumeSource) GetReadOnly

func (m *NFSVolumeSource) GetReadOnly() bool

func (*NFSVolumeSource) GetServer

func (m *NFSVolumeSource) GetServer() string

func (*NFSVolumeSource) Marshal

func (m *NFSVolumeSource) Marshal() (dAtA []byte, err error)

func (*NFSVolumeSource) MarshalTo

func (m *NFSVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*NFSVolumeSource) ProtoMessage

func (*NFSVolumeSource) ProtoMessage()

func (*NFSVolumeSource) Reset

func (m *NFSVolumeSource) Reset()

func (*NFSVolumeSource) Size

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

func (*NFSVolumeSource) String

func (m *NFSVolumeSource) String() string

func (*NFSVolumeSource) Unmarshal

func (m *NFSVolumeSource) Unmarshal(dAtA []byte) error

type Namespace

type Namespace struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

Namespace provides a scope for Names. Use of multiple namespaces is optional.

func (*Namespace) Descriptor

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

func (*Namespace) GetMetadata

func (*Namespace) GetSpec

func (m *Namespace) GetSpec() *NamespaceSpec

func (*Namespace) GetStatus

func (m *Namespace) GetStatus() *NamespaceStatus

func (*Namespace) Marshal

func (m *Namespace) Marshal() (dAtA []byte, err error)

func (*Namespace) MarshalTo

func (m *Namespace) MarshalTo(dAtA []byte) (int, error)

func (*Namespace) ProtoMessage

func (*Namespace) ProtoMessage()

func (*Namespace) Reset

func (m *Namespace) Reset()

func (*Namespace) Size

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

func (*Namespace) String

func (m *Namespace) String() string

func (*Namespace) Unmarshal

func (m *Namespace) Unmarshal(dAtA []byte) error

type NamespaceList

type NamespaceList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of Namespace objects in the list.
	// More info: http://kubernetes.io/docs/user-guide/namespaces
	Items            []*Namespace `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte       `json:"-"`
}

NamespaceList is a list of Namespaces.

func (*NamespaceList) Descriptor

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

func (*NamespaceList) GetItems

func (m *NamespaceList) GetItems() []*Namespace

func (*NamespaceList) GetMetadata

func (*NamespaceList) Marshal

func (m *NamespaceList) Marshal() (dAtA []byte, err error)

func (*NamespaceList) MarshalTo

func (m *NamespaceList) MarshalTo(dAtA []byte) (int, error)

func (*NamespaceList) ProtoMessage

func (*NamespaceList) ProtoMessage()

func (*NamespaceList) Reset

func (m *NamespaceList) Reset()

func (*NamespaceList) Size

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

func (*NamespaceList) String

func (m *NamespaceList) String() string

func (*NamespaceList) Unmarshal

func (m *NamespaceList) Unmarshal(dAtA []byte) error

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       []string `protobuf:"bytes,1,rep,name=finalizers" json:"finalizers,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

NamespaceSpec describes the attributes on a Namespace.

func (*NamespaceSpec) Descriptor

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

func (*NamespaceSpec) GetFinalizers

func (m *NamespaceSpec) GetFinalizers() []string

func (*NamespaceSpec) Marshal

func (m *NamespaceSpec) Marshal() (dAtA []byte, err error)

func (*NamespaceSpec) MarshalTo

func (m *NamespaceSpec) MarshalTo(dAtA []byte) (int, error)

func (*NamespaceSpec) ProtoMessage

func (*NamespaceSpec) ProtoMessage()

func (*NamespaceSpec) Reset

func (m *NamespaceSpec) Reset()

func (*NamespaceSpec) Size

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

func (*NamespaceSpec) String

func (m *NamespaceSpec) String() string

func (*NamespaceSpec) Unmarshal

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            *string `protobuf:"bytes,1,opt,name=phase" json:"phase,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NamespaceStatus is information about the current status of a Namespace.

func (*NamespaceStatus) Descriptor

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

func (*NamespaceStatus) GetPhase

func (m *NamespaceStatus) GetPhase() string

func (*NamespaceStatus) Marshal

func (m *NamespaceStatus) Marshal() (dAtA []byte, err error)

func (*NamespaceStatus) MarshalTo

func (m *NamespaceStatus) MarshalTo(dAtA []byte) (int, error)

func (*NamespaceStatus) ProtoMessage

func (*NamespaceStatus) ProtoMessage()

func (*NamespaceStatus) Reset

func (m *NamespaceStatus) Reset()

func (*NamespaceStatus) Size

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

func (*NamespaceStatus) String

func (m *NamespaceStatus) String() string

func (*NamespaceStatus) Unmarshal

func (m *NamespaceStatus) Unmarshal(dAtA []byte) error

type Node

type Node struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec defines the behavior of a node.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec *NodeSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte      `json:"-"`
}

Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

func (*Node) Descriptor

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

func (*Node) GetMetadata

func (*Node) GetSpec

func (m *Node) GetSpec() *NodeSpec

func (*Node) GetStatus

func (m *Node) GetStatus() *NodeStatus

func (*Node) Marshal

func (m *Node) Marshal() (dAtA []byte, err error)

func (*Node) MarshalTo

func (m *Node) MarshalTo(dAtA []byte) (int, error)

func (*Node) ProtoMessage

func (*Node) ProtoMessage()

func (*Node) Reset

func (m *Node) Reset()

func (*Node) Size

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

func (*Node) String

func (m *Node) String() string

func (*Node) Unmarshal

func (m *Node) Unmarshal(dAtA []byte) error

type NodeAddress

type NodeAddress struct {
	// Node address type, one of Hostname, ExternalIP or InternalIP.
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// The node address.
	Address          *string `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NodeAddress contains information for the node's address.

func (*NodeAddress) Descriptor

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

func (*NodeAddress) GetAddress

func (m *NodeAddress) GetAddress() string

func (*NodeAddress) GetType

func (m *NodeAddress) GetType() string

func (*NodeAddress) Marshal

func (m *NodeAddress) Marshal() (dAtA []byte, err error)

func (*NodeAddress) MarshalTo

func (m *NodeAddress) MarshalTo(dAtA []byte) (int, error)

func (*NodeAddress) ProtoMessage

func (*NodeAddress) ProtoMessage()

func (*NodeAddress) Reset

func (m *NodeAddress) Reset()

func (*NodeAddress) Size

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

func (*NodeAddress) String

func (m *NodeAddress) String() string

func (*NodeAddress) Unmarshal

func (m *NodeAddress) Unmarshal(dAtA []byte) error

type NodeAffinity

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 */
	XXX_unrecognized                                []byte                     `json:"-"`
}

Node affinity is a group of node affinity scheduling rules.

func (*NodeAffinity) Descriptor

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

func (*NodeAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution

func (m *NodeAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*PreferredSchedulingTerm

func (*NodeAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution

func (m *NodeAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() *NodeSelector

func (*NodeAffinity) Marshal

func (m *NodeAffinity) Marshal() (dAtA []byte, err error)

func (*NodeAffinity) MarshalTo

func (m *NodeAffinity) MarshalTo(dAtA []byte) (int, error)

func (*NodeAffinity) ProtoMessage

func (*NodeAffinity) ProtoMessage()

func (*NodeAffinity) Reset

func (m *NodeAffinity) Reset()

func (*NodeAffinity) Size

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

func (*NodeAffinity) String

func (m *NodeAffinity) String() string

func (*NodeAffinity) Unmarshal

func (m *NodeAffinity) Unmarshal(dAtA []byte) error

type NodeCondition

type NodeCondition struct {
	// Type of node condition.
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// Status of the condition, one of True, False, Unknown.
	Status *string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
	// Last time we got an update on a given condition.
	// +optional
	LastHeartbeatTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,3,opt,name=lastHeartbeatTime" json:"lastHeartbeatTime,omitempty"`
	// Last time the condition transit from one status to another.
	// +optional
	LastTransitionTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,4,opt,name=lastTransitionTime" json:"lastTransitionTime,omitempty"`
	// (brief) reason for the condition's last transition.
	// +optional
	Reason *string `protobuf:"bytes,5,opt,name=reason" json:"reason,omitempty"`
	// Human readable message indicating details about last transition.
	// +optional
	Message          *string `protobuf:"bytes,6,opt,name=message" json:"message,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NodeCondition contains condition information for a node.

func (*NodeCondition) Descriptor

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

func (*NodeCondition) GetLastHeartbeatTime

func (m *NodeCondition) GetLastHeartbeatTime() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*NodeCondition) GetLastTransitionTime

func (m *NodeCondition) GetLastTransitionTime() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*NodeCondition) GetMessage

func (m *NodeCondition) GetMessage() string

func (*NodeCondition) GetReason

func (m *NodeCondition) GetReason() string

func (*NodeCondition) GetStatus

func (m *NodeCondition) GetStatus() string

func (*NodeCondition) GetType

func (m *NodeCondition) GetType() string

func (*NodeCondition) Marshal

func (m *NodeCondition) Marshal() (dAtA []byte, err error)

func (*NodeCondition) MarshalTo

func (m *NodeCondition) MarshalTo(dAtA []byte) (int, error)

func (*NodeCondition) ProtoMessage

func (*NodeCondition) ProtoMessage()

func (*NodeCondition) Reset

func (m *NodeCondition) Reset()

func (*NodeCondition) Size

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

func (*NodeCondition) String

func (m *NodeCondition) String() string

func (*NodeCondition) Unmarshal

func (m *NodeCondition) Unmarshal(dAtA []byte) error

type NodeDaemonEndpoints

type NodeDaemonEndpoints struct {
	// Endpoint on which Kubelet is listening.
	// +optional
	KubeletEndpoint  *DaemonEndpoint `protobuf:"bytes,1,opt,name=kubeletEndpoint" json:"kubeletEndpoint,omitempty"`
	XXX_unrecognized []byte          `json:"-"`
}

NodeDaemonEndpoints lists ports opened by daemons running on the Node.

func (*NodeDaemonEndpoints) Descriptor

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

func (*NodeDaemonEndpoints) GetKubeletEndpoint

func (m *NodeDaemonEndpoints) GetKubeletEndpoint() *DaemonEndpoint

func (*NodeDaemonEndpoints) Marshal

func (m *NodeDaemonEndpoints) Marshal() (dAtA []byte, err error)

func (*NodeDaemonEndpoints) MarshalTo

func (m *NodeDaemonEndpoints) MarshalTo(dAtA []byte) (int, error)

func (*NodeDaemonEndpoints) ProtoMessage

func (*NodeDaemonEndpoints) ProtoMessage()

func (*NodeDaemonEndpoints) Reset

func (m *NodeDaemonEndpoints) Reset()

func (*NodeDaemonEndpoints) Size

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

func (*NodeDaemonEndpoints) String

func (m *NodeDaemonEndpoints) String() string

func (*NodeDaemonEndpoints) Unmarshal

func (m *NodeDaemonEndpoints) Unmarshal(dAtA []byte) error

type NodeList

type NodeList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of nodes
	Items            []*Node `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NodeList is the whole list of all Nodes which have been registered with master.

func (*NodeList) Descriptor

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

func (*NodeList) GetItems

func (m *NodeList) GetItems() []*Node

func (*NodeList) GetMetadata

func (*NodeList) Marshal

func (m *NodeList) Marshal() (dAtA []byte, err error)

func (*NodeList) MarshalTo

func (m *NodeList) MarshalTo(dAtA []byte) (int, error)

func (*NodeList) ProtoMessage

func (*NodeList) ProtoMessage()

func (*NodeList) Reset

func (m *NodeList) Reset()

func (*NodeList) Size

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

func (*NodeList) String

func (m *NodeList) String() string

func (*NodeList) Unmarshal

func (m *NodeList) Unmarshal(dAtA []byte) error

type NodeProxyOptions

type NodeProxyOptions struct {
	// Path is the URL path to use for the current proxy request to node.
	// +optional
	Path             *string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NodeProxyOptions is the query options to a Node's proxy call.

func (*NodeProxyOptions) Descriptor

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

func (*NodeProxyOptions) GetPath

func (m *NodeProxyOptions) GetPath() string

func (*NodeProxyOptions) Marshal

func (m *NodeProxyOptions) Marshal() (dAtA []byte, err error)

func (*NodeProxyOptions) MarshalTo

func (m *NodeProxyOptions) MarshalTo(dAtA []byte) (int, error)

func (*NodeProxyOptions) ProtoMessage

func (*NodeProxyOptions) ProtoMessage()

func (*NodeProxyOptions) Reset

func (m *NodeProxyOptions) Reset()

func (*NodeProxyOptions) Size

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

func (*NodeProxyOptions) String

func (m *NodeProxyOptions) String() string

func (*NodeProxyOptions) Unmarshal

func (m *NodeProxyOptions) Unmarshal(dAtA []byte) error

type NodeResources added in v0.3.0

type NodeResources struct {
	// Capacity represents the available resources of a node
	Capacity         map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 136-byte string literal not displayed */
	XXX_unrecognized []byte                                                  `json:"-"`
}

NodeResources is an object for conveying resource information about a node. see http://releases.k8s.io/HEAD/docs/design/resources.md for more details.

func (*NodeResources) Descriptor added in v0.3.0

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

func (*NodeResources) GetCapacity added in v0.3.0

func (*NodeResources) Marshal added in v0.3.0

func (m *NodeResources) Marshal() (dAtA []byte, err error)

func (*NodeResources) MarshalTo added in v0.3.0

func (m *NodeResources) MarshalTo(dAtA []byte) (int, error)

func (*NodeResources) ProtoMessage added in v0.3.0

func (*NodeResources) ProtoMessage()

func (*NodeResources) Reset added in v0.3.0

func (m *NodeResources) Reset()

func (*NodeResources) Size added in v0.3.0

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

func (*NodeResources) String added in v0.3.0

func (m *NodeResources) String() string

func (*NodeResources) Unmarshal added in v0.3.0

func (m *NodeResources) Unmarshal(dAtA []byte) error

type NodeSelector

type NodeSelector struct {
	// Required. A list of node selector terms. The terms are ORed.
	NodeSelectorTerms []*NodeSelectorTerm `protobuf:"bytes,1,rep,name=nodeSelectorTerms" json:"nodeSelectorTerms,omitempty"`
	XXX_unrecognized  []byte              `json:"-"`
}

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) Descriptor

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

func (*NodeSelector) GetNodeSelectorTerms

func (m *NodeSelector) GetNodeSelectorTerms() []*NodeSelectorTerm

func (*NodeSelector) Marshal

func (m *NodeSelector) Marshal() (dAtA []byte, err error)

func (*NodeSelector) MarshalTo

func (m *NodeSelector) MarshalTo(dAtA []byte) (int, error)

func (*NodeSelector) ProtoMessage

func (*NodeSelector) ProtoMessage()

func (*NodeSelector) Reset

func (m *NodeSelector) Reset()

func (*NodeSelector) Size

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

func (*NodeSelector) String

func (m *NodeSelector) String() string

func (*NodeSelector) Unmarshal

func (m *NodeSelector) Unmarshal(dAtA []byte) error

type NodeSelectorRequirement

type NodeSelectorRequirement struct {
	// The label key that the selector applies to.
	Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
	// Represents a key's relationship to a set of values.
	// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
	Operator *string `protobuf:"bytes,2,opt,name=operator" json:"operator,omitempty"`
	// 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 `protobuf:"bytes,3,rep,name=values" json:"values,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

func (*NodeSelectorRequirement) Descriptor

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

func (*NodeSelectorRequirement) GetKey

func (m *NodeSelectorRequirement) GetKey() string

func (*NodeSelectorRequirement) GetOperator

func (m *NodeSelectorRequirement) GetOperator() string

func (*NodeSelectorRequirement) GetValues

func (m *NodeSelectorRequirement) GetValues() []string

func (*NodeSelectorRequirement) Marshal

func (m *NodeSelectorRequirement) Marshal() (dAtA []byte, err error)

func (*NodeSelectorRequirement) MarshalTo

func (m *NodeSelectorRequirement) MarshalTo(dAtA []byte) (int, error)

func (*NodeSelectorRequirement) ProtoMessage

func (*NodeSelectorRequirement) ProtoMessage()

func (*NodeSelectorRequirement) Reset

func (m *NodeSelectorRequirement) Reset()

func (*NodeSelectorRequirement) Size

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

func (*NodeSelectorRequirement) String

func (m *NodeSelectorRequirement) String() string

func (*NodeSelectorRequirement) Unmarshal

func (m *NodeSelectorRequirement) Unmarshal(dAtA []byte) error

type NodeSelectorTerm

type NodeSelectorTerm struct {
	// Required. A list of node selector requirements. The requirements are ANDed.
	MatchExpressions []*NodeSelectorRequirement `protobuf:"bytes,1,rep,name=matchExpressions" json:"matchExpressions,omitempty"`
	XXX_unrecognized []byte                     `json:"-"`
}

A null or empty node selector term matches no objects.

func (*NodeSelectorTerm) Descriptor

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

func (*NodeSelectorTerm) GetMatchExpressions

func (m *NodeSelectorTerm) GetMatchExpressions() []*NodeSelectorRequirement

func (*NodeSelectorTerm) Marshal

func (m *NodeSelectorTerm) Marshal() (dAtA []byte, err error)

func (*NodeSelectorTerm) MarshalTo

func (m *NodeSelectorTerm) MarshalTo(dAtA []byte) (int, error)

func (*NodeSelectorTerm) ProtoMessage

func (*NodeSelectorTerm) ProtoMessage()

func (*NodeSelectorTerm) Reset

func (m *NodeSelectorTerm) Reset()

func (*NodeSelectorTerm) Size

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

func (*NodeSelectorTerm) String

func (m *NodeSelectorTerm) String() string

func (*NodeSelectorTerm) Unmarshal

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 `protobuf:"bytes,1,opt,name=podCIDR" json:"podCIDR,omitempty"`
	// External ID of the node assigned by some machine database (e.g. a cloud provider).
	// Deprecated.
	// +optional
	ExternalID *string `protobuf:"bytes,2,opt,name=externalID" json:"externalID,omitempty"`
	// ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
	// +optional
	ProviderID *string `protobuf:"bytes,3,opt,name=providerID" json:"providerID,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=unschedulable" json:"unschedulable,omitempty"`
	// If specified, the node's taints.
	// +optional
	Taints           []*Taint `protobuf:"bytes,5,rep,name=taints" json:"taints,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

NodeSpec describes the attributes that a node is created with.

func (*NodeSpec) Descriptor

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

func (*NodeSpec) GetExternalID

func (m *NodeSpec) GetExternalID() string

func (*NodeSpec) GetPodCIDR

func (m *NodeSpec) GetPodCIDR() string

func (*NodeSpec) GetProviderID

func (m *NodeSpec) GetProviderID() string

func (*NodeSpec) GetTaints added in v0.3.0

func (m *NodeSpec) GetTaints() []*Taint

func (*NodeSpec) GetUnschedulable

func (m *NodeSpec) GetUnschedulable() bool

func (*NodeSpec) Marshal

func (m *NodeSpec) Marshal() (dAtA []byte, err error)

func (*NodeSpec) MarshalTo

func (m *NodeSpec) MarshalTo(dAtA []byte) (int, error)

func (*NodeSpec) ProtoMessage

func (*NodeSpec) ProtoMessage()

func (*NodeSpec) Reset

func (m *NodeSpec) Reset()

func (*NodeSpec) Size

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

func (*NodeSpec) String

func (m *NodeSpec) String() string

func (*NodeSpec) Unmarshal

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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 136-byte string literal not displayed */
	// Allocatable represents the resources of a node that are available for scheduling.
	// Defaults to Capacity.
	// +optional
	Allocatable map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 142-byte string literal not displayed */
	// 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 *string `protobuf:"bytes,3,opt,name=phase" json:"phase,omitempty"`
	// 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 `protobuf:"bytes,4,rep,name=conditions" json:"conditions,omitempty"`
	// 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 `protobuf:"bytes,5,rep,name=addresses" json:"addresses,omitempty"`
	// Endpoints of daemons running on the Node.
	// +optional
	DaemonEndpoints *NodeDaemonEndpoints `protobuf:"bytes,6,opt,name=daemonEndpoints" json:"daemonEndpoints,omitempty"`
	// 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 `protobuf:"bytes,7,opt,name=nodeInfo" json:"nodeInfo,omitempty"`
	// List of container images on this node
	// +optional
	Images []*ContainerImage `protobuf:"bytes,8,rep,name=images" json:"images,omitempty"`
	// List of attachable volumes in use (mounted) by the node.
	// +optional
	VolumesInUse []string `protobuf:"bytes,9,rep,name=volumesInUse" json:"volumesInUse,omitempty"`
	// List of volumes that are attached to the node.
	// +optional
	VolumesAttached  []*AttachedVolume `protobuf:"bytes,10,rep,name=volumesAttached" json:"volumesAttached,omitempty"`
	XXX_unrecognized []byte            `json:"-"`
}

NodeStatus is information about the current status of a node.

func (*NodeStatus) Descriptor

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

func (*NodeStatus) GetAddresses

func (m *NodeStatus) GetAddresses() []*NodeAddress

func (*NodeStatus) GetAllocatable

func (*NodeStatus) GetCapacity

func (*NodeStatus) GetConditions

func (m *NodeStatus) GetConditions() []*NodeCondition

func (*NodeStatus) GetDaemonEndpoints

func (m *NodeStatus) GetDaemonEndpoints() *NodeDaemonEndpoints

func (*NodeStatus) GetImages

func (m *NodeStatus) GetImages() []*ContainerImage

func (*NodeStatus) GetNodeInfo

func (m *NodeStatus) GetNodeInfo() *NodeSystemInfo

func (*NodeStatus) GetPhase

func (m *NodeStatus) GetPhase() string

func (*NodeStatus) GetVolumesAttached

func (m *NodeStatus) GetVolumesAttached() []*AttachedVolume

func (*NodeStatus) GetVolumesInUse

func (m *NodeStatus) GetVolumesInUse() []string

func (*NodeStatus) Marshal

func (m *NodeStatus) Marshal() (dAtA []byte, err error)

func (*NodeStatus) MarshalTo

func (m *NodeStatus) MarshalTo(dAtA []byte) (int, error)

func (*NodeStatus) ProtoMessage

func (*NodeStatus) ProtoMessage()

func (*NodeStatus) Reset

func (m *NodeStatus) Reset()

func (*NodeStatus) Size

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

func (*NodeStatus) String

func (m *NodeStatus) String() string

func (*NodeStatus) Unmarshal

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 `protobuf:"bytes,1,opt,name=machineID" json:"machineID,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=systemUUID" json:"systemUUID,omitempty"`
	// Boot ID reported by the node.
	BootID *string `protobuf:"bytes,3,opt,name=bootID" json:"bootID,omitempty"`
	// Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
	KernelVersion *string `protobuf:"bytes,4,opt,name=kernelVersion" json:"kernelVersion,omitempty"`
	// OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
	OsImage *string `protobuf:"bytes,5,opt,name=osImage" json:"osImage,omitempty"`
	// ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).
	ContainerRuntimeVersion *string `protobuf:"bytes,6,opt,name=containerRuntimeVersion" json:"containerRuntimeVersion,omitempty"`
	// Kubelet Version reported by the node.
	KubeletVersion *string `protobuf:"bytes,7,opt,name=kubeletVersion" json:"kubeletVersion,omitempty"`
	// KubeProxy Version reported by the node.
	KubeProxyVersion *string `protobuf:"bytes,8,opt,name=kubeProxyVersion" json:"kubeProxyVersion,omitempty"`
	// The Operating System reported by the node
	OperatingSystem *string `protobuf:"bytes,9,opt,name=operatingSystem" json:"operatingSystem,omitempty"`
	// The Architecture reported by the node
	Architecture     *string `protobuf:"bytes,10,opt,name=architecture" json:"architecture,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

func (*NodeSystemInfo) Descriptor

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

func (*NodeSystemInfo) GetArchitecture

func (m *NodeSystemInfo) GetArchitecture() string

func (*NodeSystemInfo) GetBootID

func (m *NodeSystemInfo) GetBootID() string

func (*NodeSystemInfo) GetContainerRuntimeVersion

func (m *NodeSystemInfo) GetContainerRuntimeVersion() string

func (*NodeSystemInfo) GetKernelVersion

func (m *NodeSystemInfo) GetKernelVersion() string

func (*NodeSystemInfo) GetKubeProxyVersion

func (m *NodeSystemInfo) GetKubeProxyVersion() string

func (*NodeSystemInfo) GetKubeletVersion

func (m *NodeSystemInfo) GetKubeletVersion() string

func (*NodeSystemInfo) GetMachineID

func (m *NodeSystemInfo) GetMachineID() string

func (*NodeSystemInfo) GetOperatingSystem

func (m *NodeSystemInfo) GetOperatingSystem() string

func (*NodeSystemInfo) GetOsImage

func (m *NodeSystemInfo) GetOsImage() string

func (*NodeSystemInfo) GetSystemUUID

func (m *NodeSystemInfo) GetSystemUUID() string

func (*NodeSystemInfo) Marshal

func (m *NodeSystemInfo) Marshal() (dAtA []byte, err error)

func (*NodeSystemInfo) MarshalTo

func (m *NodeSystemInfo) MarshalTo(dAtA []byte) (int, error)

func (*NodeSystemInfo) ProtoMessage

func (*NodeSystemInfo) ProtoMessage()

func (*NodeSystemInfo) Reset

func (m *NodeSystemInfo) Reset()

func (*NodeSystemInfo) Size

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

func (*NodeSystemInfo) String

func (m *NodeSystemInfo) String() string

func (*NodeSystemInfo) Unmarshal

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 `protobuf:"bytes,1,opt,name=apiVersion" json:"apiVersion,omitempty"`
	// Path of the field to select in the specified API version.
	FieldPath        *string `protobuf:"bytes,2,opt,name=fieldPath" json:"fieldPath,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ObjectFieldSelector selects an APIVersioned field of an object.

func (*ObjectFieldSelector) Descriptor

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

func (*ObjectFieldSelector) GetApiVersion

func (m *ObjectFieldSelector) GetApiVersion() string

func (*ObjectFieldSelector) GetFieldPath

func (m *ObjectFieldSelector) GetFieldPath() string

func (*ObjectFieldSelector) Marshal

func (m *ObjectFieldSelector) Marshal() (dAtA []byte, err error)

func (*ObjectFieldSelector) MarshalTo

func (m *ObjectFieldSelector) MarshalTo(dAtA []byte) (int, error)

func (*ObjectFieldSelector) ProtoMessage

func (*ObjectFieldSelector) ProtoMessage()

func (*ObjectFieldSelector) Reset

func (m *ObjectFieldSelector) Reset()

func (*ObjectFieldSelector) Size

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

func (*ObjectFieldSelector) String

func (m *ObjectFieldSelector) String() string

func (*ObjectFieldSelector) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=generateName" json:"generateName,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=namespace" json:"namespace,omitempty"`
	// SelfLink is a URL representing this object.
	// Populated by the system.
	// Read-only.
	// +optional
	SelfLink *string `protobuf:"bytes,4,opt,name=selfLink" json:"selfLink,omitempty"`
	// 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 *string `protobuf:"bytes,5,opt,name=uid" json:"uid,omitempty"`
	// 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 `protobuf:"bytes,6,opt,name=resourceVersion" json:"resourceVersion,omitempty"`
	// A sequence number representing a specific generation of the desired state.
	// Populated by the system. Read-only.
	// +optional
	Generation *int64 `protobuf:"varint,7,opt,name=generation" json:"generation,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,8,opt,name=creationTimestamp" json:"creationTimestamp,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,9,opt,name=deletionTimestamp" json:"deletionTimestamp,omitempty"`
	// 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 `protobuf:"varint,10,opt,name=deletionGracePeriodSeconds" json:"deletionGracePeriodSeconds,omitempty"`
	// 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 `` /* 133-byte string literal not displayed */
	// 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 `` /* 143-byte string literal not displayed */
	// 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 []*k8s_io_kubernetes_pkg_apis_meta_v1.OwnerReference `protobuf:"bytes,13,rep,name=ownerReferences" json:"ownerReferences,omitempty"`
	// 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 `protobuf:"bytes,14,rep,name=finalizers" json:"finalizers,omitempty"`
	// 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 `protobuf:"bytes,15,opt,name=clusterName" json:"clusterName,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. DEPRECATED: Use k8s.io.kubernetes/pkg/apis/meta/v1.ObjectMeta instead - this type will be removed soon. +k8s:openapi-gen=false

func (*ObjectMeta) Descriptor

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

func (*ObjectMeta) GetAnnotations

func (m *ObjectMeta) GetAnnotations() map[string]string

func (*ObjectMeta) GetClusterName

func (m *ObjectMeta) GetClusterName() string

func (*ObjectMeta) GetCreationTimestamp

func (m *ObjectMeta) GetCreationTimestamp() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*ObjectMeta) GetDeletionGracePeriodSeconds

func (m *ObjectMeta) GetDeletionGracePeriodSeconds() int64

func (*ObjectMeta) GetDeletionTimestamp

func (m *ObjectMeta) GetDeletionTimestamp() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*ObjectMeta) GetFinalizers

func (m *ObjectMeta) GetFinalizers() []string

func (*ObjectMeta) GetGenerateName

func (m *ObjectMeta) GetGenerateName() string

func (*ObjectMeta) GetGeneration

func (m *ObjectMeta) GetGeneration() int64

func (*ObjectMeta) GetLabels

func (m *ObjectMeta) GetLabels() map[string]string

func (*ObjectMeta) GetName

func (m *ObjectMeta) GetName() string

func (*ObjectMeta) GetNamespace

func (m *ObjectMeta) GetNamespace() string

func (*ObjectMeta) GetOwnerReferences

func (*ObjectMeta) GetResourceVersion

func (m *ObjectMeta) GetResourceVersion() string
func (m *ObjectMeta) GetSelfLink() string

func (*ObjectMeta) GetUid

func (m *ObjectMeta) GetUid() string

func (*ObjectMeta) Marshal

func (m *ObjectMeta) Marshal() (dAtA []byte, err error)

func (*ObjectMeta) MarshalTo

func (m *ObjectMeta) MarshalTo(dAtA []byte) (int, error)

func (*ObjectMeta) ProtoMessage

func (*ObjectMeta) ProtoMessage()

func (*ObjectMeta) Reset

func (m *ObjectMeta) Reset()

func (*ObjectMeta) Size

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

func (*ObjectMeta) String

func (m *ObjectMeta) String() string

func (*ObjectMeta) Unmarshal

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 `protobuf:"bytes,1,opt,name=kind" json:"kind,omitempty"`
	// Namespace of the referent.
	// More info: http://kubernetes.io/docs/user-guide/namespaces
	// +optional
	Namespace *string `protobuf:"bytes,2,opt,name=namespace" json:"namespace,omitempty"`
	// Name of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#names
	// +optional
	Name *string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
	// UID of the referent.
	// More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	// +optional
	Uid *string `protobuf:"bytes,4,opt,name=uid" json:"uid,omitempty"`
	// API version of the referent.
	// +optional
	ApiVersion *string `protobuf:"bytes,5,opt,name=apiVersion" json:"apiVersion,omitempty"`
	// 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 `protobuf:"bytes,6,opt,name=resourceVersion" json:"resourceVersion,omitempty"`
	// 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 `protobuf:"bytes,7,opt,name=fieldPath" json:"fieldPath,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ObjectReference contains enough information to let you inspect or modify the referred object.

func (*ObjectReference) Descriptor

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

func (*ObjectReference) GetApiVersion

func (m *ObjectReference) GetApiVersion() string

func (*ObjectReference) GetFieldPath

func (m *ObjectReference) GetFieldPath() string

func (*ObjectReference) GetKind

func (m *ObjectReference) GetKind() string

func (*ObjectReference) GetName

func (m *ObjectReference) GetName() string

func (*ObjectReference) GetNamespace

func (m *ObjectReference) GetNamespace() string

func (*ObjectReference) GetResourceVersion

func (m *ObjectReference) GetResourceVersion() string

func (*ObjectReference) GetUid

func (m *ObjectReference) GetUid() string

func (*ObjectReference) Marshal

func (m *ObjectReference) Marshal() (dAtA []byte, err error)

func (*ObjectReference) MarshalTo

func (m *ObjectReference) MarshalTo(dAtA []byte) (int, error)

func (*ObjectReference) ProtoMessage

func (*ObjectReference) ProtoMessage()

func (*ObjectReference) Reset

func (m *ObjectReference) Reset()

func (*ObjectReference) Size

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

func (*ObjectReference) String

func (m *ObjectReference) String() string

func (*ObjectReference) Unmarshal

func (m *ObjectReference) Unmarshal(dAtA []byte) error

type PersistentVolume

type PersistentVolume struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte                  `json:"-"`
}

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) Descriptor

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

func (*PersistentVolume) GetMetadata

func (*PersistentVolume) GetSpec

func (m *PersistentVolume) GetSpec() *PersistentVolumeSpec

func (*PersistentVolume) GetStatus

func (m *PersistentVolume) GetStatus() *PersistentVolumeStatus

func (*PersistentVolume) Marshal

func (m *PersistentVolume) Marshal() (dAtA []byte, err error)

func (*PersistentVolume) MarshalTo

func (m *PersistentVolume) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolume) ProtoMessage

func (*PersistentVolume) ProtoMessage()

func (*PersistentVolume) Reset

func (m *PersistentVolume) Reset()

func (*PersistentVolume) Size

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

func (*PersistentVolume) String

func (m *PersistentVolume) String() string

func (*PersistentVolume) Unmarshal

func (m *PersistentVolume) Unmarshal(dAtA []byte) error

type PersistentVolumeClaim

type PersistentVolumeClaim struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte                       `json:"-"`
}

PersistentVolumeClaim is a user's request for and claim to a persistent volume

func (*PersistentVolumeClaim) Descriptor

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

func (*PersistentVolumeClaim) GetMetadata

func (*PersistentVolumeClaim) GetSpec

func (*PersistentVolumeClaim) GetStatus

func (*PersistentVolumeClaim) Marshal

func (m *PersistentVolumeClaim) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeClaim) MarshalTo

func (m *PersistentVolumeClaim) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeClaim) ProtoMessage

func (*PersistentVolumeClaim) ProtoMessage()

func (*PersistentVolumeClaim) Reset

func (m *PersistentVolumeClaim) Reset()

func (*PersistentVolumeClaim) Size

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

func (*PersistentVolumeClaim) String

func (m *PersistentVolumeClaim) String() string

func (*PersistentVolumeClaim) Unmarshal

func (m *PersistentVolumeClaim) Unmarshal(dAtA []byte) error

type PersistentVolumeClaimList

type PersistentVolumeClaimList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// A list of persistent volume claims.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims
	Items            []*PersistentVolumeClaim `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte                   `json:"-"`
}

PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

func (*PersistentVolumeClaimList) Descriptor

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

func (*PersistentVolumeClaimList) GetItems

func (*PersistentVolumeClaimList) GetMetadata

func (*PersistentVolumeClaimList) Marshal

func (m *PersistentVolumeClaimList) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeClaimList) MarshalTo

func (m *PersistentVolumeClaimList) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeClaimList) ProtoMessage

func (*PersistentVolumeClaimList) ProtoMessage()

func (*PersistentVolumeClaimList) Reset

func (m *PersistentVolumeClaimList) Reset()

func (*PersistentVolumeClaimList) Size

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

func (*PersistentVolumeClaimList) String

func (m *PersistentVolumeClaimList) String() string

func (*PersistentVolumeClaimList) Unmarshal

func (m *PersistentVolumeClaimList) Unmarshal(dAtA []byte) error

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 []string `protobuf:"bytes,1,rep,name=accessModes" json:"accessModes,omitempty"`
	// A label query over volumes to consider for binding.
	// +optional
	Selector *k8s_io_kubernetes_pkg_apis_meta_v1.LabelSelector `protobuf:"bytes,4,opt,name=selector" json:"selector,omitempty"`
	// Resources represents the minimum resources the volume should have.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources
	// +optional
	Resources *ResourceRequirements `protobuf:"bytes,2,opt,name=resources" json:"resources,omitempty"`
	// VolumeName is the binding reference to the PersistentVolume backing this claim.
	// +optional
	VolumeName *string `protobuf:"bytes,3,opt,name=volumeName" json:"volumeName,omitempty"`
	// Name of the StorageClass required by the claim.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#class-1
	// +optional
	StorageClassName *string `protobuf:"bytes,5,opt,name=storageClassName" json:"storageClassName,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

func (*PersistentVolumeClaimSpec) Descriptor

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

func (*PersistentVolumeClaimSpec) GetAccessModes

func (m *PersistentVolumeClaimSpec) GetAccessModes() []string

func (*PersistentVolumeClaimSpec) GetResources

func (*PersistentVolumeClaimSpec) GetSelector

func (*PersistentVolumeClaimSpec) GetStorageClassName added in v0.3.0

func (m *PersistentVolumeClaimSpec) GetStorageClassName() string

func (*PersistentVolumeClaimSpec) GetVolumeName

func (m *PersistentVolumeClaimSpec) GetVolumeName() string

func (*PersistentVolumeClaimSpec) Marshal

func (m *PersistentVolumeClaimSpec) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeClaimSpec) MarshalTo

func (m *PersistentVolumeClaimSpec) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeClaimSpec) ProtoMessage

func (*PersistentVolumeClaimSpec) ProtoMessage()

func (*PersistentVolumeClaimSpec) Reset

func (m *PersistentVolumeClaimSpec) Reset()

func (*PersistentVolumeClaimSpec) Size

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

func (*PersistentVolumeClaimSpec) String

func (m *PersistentVolumeClaimSpec) String() string

func (*PersistentVolumeClaimSpec) Unmarshal

func (m *PersistentVolumeClaimSpec) Unmarshal(dAtA []byte) error

type PersistentVolumeClaimStatus

type PersistentVolumeClaimStatus struct {
	// Phase represents the current phase of PersistentVolumeClaim.
	// +optional
	Phase *string `protobuf:"bytes,1,opt,name=phase" json:"phase,omitempty"`
	// 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 []string `protobuf:"bytes,2,rep,name=accessModes" json:"accessModes,omitempty"`
	// Represents the actual resources of the underlying volume.
	// +optional
	Capacity         map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 136-byte string literal not displayed */
	XXX_unrecognized []byte                                                  `json:"-"`
}

PersistentVolumeClaimStatus is the current status of a persistent volume claim.

func (*PersistentVolumeClaimStatus) Descriptor

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

func (*PersistentVolumeClaimStatus) GetAccessModes

func (m *PersistentVolumeClaimStatus) GetAccessModes() []string

func (*PersistentVolumeClaimStatus) GetCapacity

func (*PersistentVolumeClaimStatus) GetPhase

func (m *PersistentVolumeClaimStatus) GetPhase() string

func (*PersistentVolumeClaimStatus) Marshal

func (m *PersistentVolumeClaimStatus) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeClaimStatus) MarshalTo

func (m *PersistentVolumeClaimStatus) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeClaimStatus) ProtoMessage

func (*PersistentVolumeClaimStatus) ProtoMessage()

func (*PersistentVolumeClaimStatus) Reset

func (m *PersistentVolumeClaimStatus) Reset()

func (*PersistentVolumeClaimStatus) Size

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

func (*PersistentVolumeClaimStatus) String

func (m *PersistentVolumeClaimStatus) String() string

func (*PersistentVolumeClaimStatus) Unmarshal

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 `protobuf:"bytes,1,opt,name=claimName" json:"claimName,omitempty"`
	// Will force the ReadOnly setting in VolumeMounts.
	// Default false.
	// +optional
	ReadOnly         *bool  `protobuf:"varint,2,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*PersistentVolumeClaimVolumeSource) GetClaimName

func (m *PersistentVolumeClaimVolumeSource) GetClaimName() string

func (*PersistentVolumeClaimVolumeSource) GetReadOnly

func (m *PersistentVolumeClaimVolumeSource) GetReadOnly() bool

func (*PersistentVolumeClaimVolumeSource) Marshal

func (m *PersistentVolumeClaimVolumeSource) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeClaimVolumeSource) MarshalTo

func (m *PersistentVolumeClaimVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeClaimVolumeSource) ProtoMessage

func (*PersistentVolumeClaimVolumeSource) ProtoMessage()

func (*PersistentVolumeClaimVolumeSource) Reset

func (*PersistentVolumeClaimVolumeSource) Size

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

func (*PersistentVolumeClaimVolumeSource) String

func (*PersistentVolumeClaimVolumeSource) Unmarshal

func (m *PersistentVolumeClaimVolumeSource) Unmarshal(dAtA []byte) error

type PersistentVolumeList

type PersistentVolumeList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of persistent volumes.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes
	Items            []*PersistentVolume `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte              `json:"-"`
}

PersistentVolumeList is a list of PersistentVolume items.

func (*PersistentVolumeList) Descriptor

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

func (*PersistentVolumeList) GetItems

func (m *PersistentVolumeList) GetItems() []*PersistentVolume

func (*PersistentVolumeList) GetMetadata

func (*PersistentVolumeList) Marshal

func (m *PersistentVolumeList) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeList) MarshalTo

func (m *PersistentVolumeList) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeList) ProtoMessage

func (*PersistentVolumeList) ProtoMessage()

func (*PersistentVolumeList) Reset

func (m *PersistentVolumeList) Reset()

func (*PersistentVolumeList) Size

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

func (*PersistentVolumeList) String

func (m *PersistentVolumeList) String() string

func (*PersistentVolumeList) Unmarshal

func (m *PersistentVolumeList) Unmarshal(dAtA []byte) error

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 `protobuf:"bytes,1,opt,name=gcePersistentDisk" json:"gcePersistentDisk,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=awsElasticBlockStore" json:"awsElasticBlockStore,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=hostPath" json:"hostPath,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=glusterfs" json:"glusterfs,omitempty"`
	// 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 `protobuf:"bytes,5,opt,name=nfs" json:"nfs,omitempty"`
	// 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 `protobuf:"bytes,6,opt,name=rbd" json:"rbd,omitempty"`
	// 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 `protobuf:"bytes,7,opt,name=iscsi" json:"iscsi,omitempty"`
	// 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 `protobuf:"bytes,8,opt,name=cinder" json:"cinder,omitempty"`
	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	// +optional
	Cephfs *CephFSVolumeSource `protobuf:"bytes,9,opt,name=cephfs" json:"cephfs,omitempty"`
	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	// +optional
	Fc *FCVolumeSource `protobuf:"bytes,10,opt,name=fc" json:"fc,omitempty"`
	// 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 `protobuf:"bytes,11,opt,name=flocker" json:"flocker,omitempty"`
	// 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 `protobuf:"bytes,12,opt,name=flexVolume" json:"flexVolume,omitempty"`
	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	// +optional
	AzureFile *AzureFileVolumeSource `protobuf:"bytes,13,opt,name=azureFile" json:"azureFile,omitempty"`
	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	// +optional
	VsphereVolume *VsphereVirtualDiskVolumeSource `protobuf:"bytes,14,opt,name=vsphereVolume" json:"vsphereVolume,omitempty"`
	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	// +optional
	Quobyte *QuobyteVolumeSource `protobuf:"bytes,15,opt,name=quobyte" json:"quobyte,omitempty"`
	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	// +optional
	AzureDisk *AzureDiskVolumeSource `protobuf:"bytes,16,opt,name=azureDisk" json:"azureDisk,omitempty"`
	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `protobuf:"bytes,17,opt,name=photonPersistentDisk" json:"photonPersistentDisk,omitempty"`
	// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
	// +optional
	PortworxVolume *PortworxVolumeSource `protobuf:"bytes,18,opt,name=portworxVolume" json:"portworxVolume,omitempty"`
	// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
	// +optional
	ScaleIO          *ScaleIOVolumeSource `protobuf:"bytes,19,opt,name=scaleIO" json:"scaleIO,omitempty"`
	XXX_unrecognized []byte               `json:"-"`
}

PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs. Exactly one of its members must be set.

func (*PersistentVolumeSource) Descriptor

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

func (*PersistentVolumeSource) GetAwsElasticBlockStore

func (m *PersistentVolumeSource) GetAwsElasticBlockStore() *AWSElasticBlockStoreVolumeSource

func (*PersistentVolumeSource) GetAzureDisk

func (m *PersistentVolumeSource) GetAzureDisk() *AzureDiskVolumeSource

func (*PersistentVolumeSource) GetAzureFile

func (m *PersistentVolumeSource) GetAzureFile() *AzureFileVolumeSource

func (*PersistentVolumeSource) GetCephfs

func (*PersistentVolumeSource) GetCinder

func (*PersistentVolumeSource) GetFc

func (*PersistentVolumeSource) GetFlexVolume

func (m *PersistentVolumeSource) GetFlexVolume() *FlexVolumeSource

func (*PersistentVolumeSource) GetFlocker

func (*PersistentVolumeSource) GetGcePersistentDisk

func (m *PersistentVolumeSource) GetGcePersistentDisk() *GCEPersistentDiskVolumeSource

func (*PersistentVolumeSource) GetGlusterfs

func (m *PersistentVolumeSource) GetGlusterfs() *GlusterfsVolumeSource

func (*PersistentVolumeSource) GetHostPath

func (m *PersistentVolumeSource) GetHostPath() *HostPathVolumeSource

func (*PersistentVolumeSource) GetIscsi

func (*PersistentVolumeSource) GetNfs

func (*PersistentVolumeSource) GetPhotonPersistentDisk

func (m *PersistentVolumeSource) GetPhotonPersistentDisk() *PhotonPersistentDiskVolumeSource

func (*PersistentVolumeSource) GetPortworxVolume added in v0.3.0

func (m *PersistentVolumeSource) GetPortworxVolume() *PortworxVolumeSource

func (*PersistentVolumeSource) GetQuobyte

func (*PersistentVolumeSource) GetRbd

func (*PersistentVolumeSource) GetScaleIO added in v0.3.0

func (*PersistentVolumeSource) GetVsphereVolume

func (*PersistentVolumeSource) Marshal

func (m *PersistentVolumeSource) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeSource) MarshalTo

func (m *PersistentVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeSource) ProtoMessage

func (*PersistentVolumeSource) ProtoMessage()

func (*PersistentVolumeSource) Reset

func (m *PersistentVolumeSource) Reset()

func (*PersistentVolumeSource) Size

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

func (*PersistentVolumeSource) String

func (m *PersistentVolumeSource) String() string

func (*PersistentVolumeSource) Unmarshal

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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 136-byte string literal not displayed */
	// The actual volume backing the persistent volume.
	PersistentVolumeSource *PersistentVolumeSource `protobuf:"bytes,2,opt,name=persistentVolumeSource" json:"persistentVolumeSource,omitempty"`
	// AccessModes contains all ways the volume can be mounted.
	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes
	// +optional
	AccessModes []string `protobuf:"bytes,3,rep,name=accessModes" json:"accessModes,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=claimRef" json:"claimRef,omitempty"`
	// 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 *string `protobuf:"bytes,5,opt,name=persistentVolumeReclaimPolicy" json:"persistentVolumeReclaimPolicy,omitempty"`
	// Name of StorageClass to which this persistent volume belongs. Empty value
	// means that this volume does not belong to any StorageClass.
	// +optional
	StorageClassName *string `protobuf:"bytes,6,opt,name=storageClassName" json:"storageClassName,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PersistentVolumeSpec is the specification of a persistent volume.

func (*PersistentVolumeSpec) Descriptor

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

func (*PersistentVolumeSpec) GetAccessModes

func (m *PersistentVolumeSpec) GetAccessModes() []string

func (*PersistentVolumeSpec) GetCapacity

func (*PersistentVolumeSpec) GetClaimRef

func (m *PersistentVolumeSpec) GetClaimRef() *ObjectReference

func (*PersistentVolumeSpec) GetPersistentVolumeReclaimPolicy

func (m *PersistentVolumeSpec) GetPersistentVolumeReclaimPolicy() string

func (*PersistentVolumeSpec) GetPersistentVolumeSource

func (m *PersistentVolumeSpec) GetPersistentVolumeSource() *PersistentVolumeSource

func (*PersistentVolumeSpec) GetStorageClassName added in v0.3.0

func (m *PersistentVolumeSpec) GetStorageClassName() string

func (*PersistentVolumeSpec) Marshal

func (m *PersistentVolumeSpec) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeSpec) MarshalTo

func (m *PersistentVolumeSpec) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeSpec) ProtoMessage

func (*PersistentVolumeSpec) ProtoMessage()

func (*PersistentVolumeSpec) Reset

func (m *PersistentVolumeSpec) Reset()

func (*PersistentVolumeSpec) Size

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

func (*PersistentVolumeSpec) String

func (m *PersistentVolumeSpec) String() string

func (*PersistentVolumeSpec) Unmarshal

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 *string `protobuf:"bytes,1,opt,name=phase" json:"phase,omitempty"`
	// A human-readable message indicating details about why the volume is in this state.
	// +optional
	Message *string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PersistentVolumeStatus is the current status of a persistent volume.

func (*PersistentVolumeStatus) Descriptor

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

func (*PersistentVolumeStatus) GetMessage

func (m *PersistentVolumeStatus) GetMessage() string

func (*PersistentVolumeStatus) GetPhase

func (m *PersistentVolumeStatus) GetPhase() string

func (*PersistentVolumeStatus) GetReason

func (m *PersistentVolumeStatus) GetReason() string

func (*PersistentVolumeStatus) Marshal

func (m *PersistentVolumeStatus) Marshal() (dAtA []byte, err error)

func (*PersistentVolumeStatus) MarshalTo

func (m *PersistentVolumeStatus) MarshalTo(dAtA []byte) (int, error)

func (*PersistentVolumeStatus) ProtoMessage

func (*PersistentVolumeStatus) ProtoMessage()

func (*PersistentVolumeStatus) Reset

func (m *PersistentVolumeStatus) Reset()

func (*PersistentVolumeStatus) Size

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

func (*PersistentVolumeStatus) String

func (m *PersistentVolumeStatus) String() string

func (*PersistentVolumeStatus) Unmarshal

func (m *PersistentVolumeStatus) Unmarshal(dAtA []byte) error

type PhotonPersistentDiskVolumeSource

type PhotonPersistentDiskVolumeSource struct {
	// ID that identifies Photon Controller persistent disk
	PdID *string `protobuf:"bytes,1,opt,name=pdID" json:"pdID,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

Represents a Photon Controller persistent disk resource.

func (*PhotonPersistentDiskVolumeSource) Descriptor

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

func (*PhotonPersistentDiskVolumeSource) GetFsType

func (*PhotonPersistentDiskVolumeSource) GetPdID

func (*PhotonPersistentDiskVolumeSource) Marshal

func (m *PhotonPersistentDiskVolumeSource) Marshal() (dAtA []byte, err error)

func (*PhotonPersistentDiskVolumeSource) MarshalTo

func (m *PhotonPersistentDiskVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*PhotonPersistentDiskVolumeSource) ProtoMessage

func (*PhotonPersistentDiskVolumeSource) ProtoMessage()

func (*PhotonPersistentDiskVolumeSource) Reset

func (*PhotonPersistentDiskVolumeSource) Size

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

func (*PhotonPersistentDiskVolumeSource) String

func (*PhotonPersistentDiskVolumeSource) Unmarshal

func (m *PhotonPersistentDiskVolumeSource) Unmarshal(dAtA []byte) error

type Pod

type Pod struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte     `json:"-"`
}

Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

func (*Pod) Descriptor

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

func (*Pod) GetMetadata

func (*Pod) GetSpec

func (m *Pod) GetSpec() *PodSpec

func (*Pod) GetStatus

func (m *Pod) GetStatus() *PodStatus

func (*Pod) Marshal

func (m *Pod) Marshal() (dAtA []byte, err error)

func (*Pod) MarshalTo

func (m *Pod) MarshalTo(dAtA []byte) (int, error)

func (*Pod) ProtoMessage

func (*Pod) ProtoMessage()

func (*Pod) Reset

func (m *Pod) Reset()

func (*Pod) Size

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

func (*Pod) String

func (m *Pod) String() string

func (*Pod) Unmarshal

func (m *Pod) Unmarshal(dAtA []byte) error

type PodAffinity

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 */
	XXX_unrecognized                                []byte                     `json:"-"`
}

Pod affinity is a group of inter pod affinity scheduling rules.

func (*PodAffinity) Descriptor

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

func (*PodAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution

func (m *PodAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*WeightedPodAffinityTerm

func (*PodAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution

func (m *PodAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() []*PodAffinityTerm

func (*PodAffinity) Marshal

func (m *PodAffinity) Marshal() (dAtA []byte, err error)

func (*PodAffinity) MarshalTo

func (m *PodAffinity) MarshalTo(dAtA []byte) (int, error)

func (*PodAffinity) ProtoMessage

func (*PodAffinity) ProtoMessage()

func (*PodAffinity) Reset

func (m *PodAffinity) Reset()

func (*PodAffinity) Size

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

func (*PodAffinity) String

func (m *PodAffinity) String() string

func (*PodAffinity) Unmarshal

func (m *PodAffinity) Unmarshal(dAtA []byte) error

type PodAffinityTerm

type PodAffinityTerm struct {
	// A label query over a set of resources, in this case pods.
	// +optional
	LabelSelector *k8s_io_kubernetes_pkg_apis_meta_v1.LabelSelector `protobuf:"bytes,1,opt,name=labelSelector" json:"labelSelector,omitempty"`
	// namespaces specifies which namespaces the labelSelector applies to (matches against);
	// null or empty list means "this pod's namespace"
	Namespaces []string `protobuf:"bytes,2,rep,name=namespaces" json:"namespaces,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=topologyKey" json:"topologyKey,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*PodAffinityTerm) GetLabelSelector

func (*PodAffinityTerm) GetNamespaces

func (m *PodAffinityTerm) GetNamespaces() []string

func (*PodAffinityTerm) GetTopologyKey

func (m *PodAffinityTerm) GetTopologyKey() string

func (*PodAffinityTerm) Marshal

func (m *PodAffinityTerm) Marshal() (dAtA []byte, err error)

func (*PodAffinityTerm) MarshalTo

func (m *PodAffinityTerm) MarshalTo(dAtA []byte) (int, error)

func (*PodAffinityTerm) ProtoMessage

func (*PodAffinityTerm) ProtoMessage()

func (*PodAffinityTerm) Reset

func (m *PodAffinityTerm) Reset()

func (*PodAffinityTerm) Size

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

func (*PodAffinityTerm) String

func (m *PodAffinityTerm) String() string

func (*PodAffinityTerm) Unmarshal

func (m *PodAffinityTerm) Unmarshal(dAtA []byte) error

type PodAntiAffinity

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 */
	XXX_unrecognized                                []byte                     `json:"-"`
}

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

func (*PodAntiAffinity) Descriptor

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

func (*PodAntiAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution

func (m *PodAntiAffinity) GetPreferredDuringSchedulingIgnoredDuringExecution() []*WeightedPodAffinityTerm

func (*PodAntiAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution

func (m *PodAntiAffinity) GetRequiredDuringSchedulingIgnoredDuringExecution() []*PodAffinityTerm

func (*PodAntiAffinity) Marshal

func (m *PodAntiAffinity) Marshal() (dAtA []byte, err error)

func (*PodAntiAffinity) MarshalTo

func (m *PodAntiAffinity) MarshalTo(dAtA []byte) (int, error)

func (*PodAntiAffinity) ProtoMessage

func (*PodAntiAffinity) ProtoMessage()

func (*PodAntiAffinity) Reset

func (m *PodAntiAffinity) Reset()

func (*PodAntiAffinity) Size

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

func (*PodAntiAffinity) String

func (m *PodAntiAffinity) String() string

func (*PodAntiAffinity) Unmarshal

func (m *PodAntiAffinity) Unmarshal(dAtA []byte) error

type PodAttachOptions

type PodAttachOptions struct {
	// Stdin if true, redirects the standard input stream of the pod for this call.
	// Defaults to false.
	// +optional
	Stdin *bool `protobuf:"varint,1,opt,name=stdin" json:"stdin,omitempty"`
	// Stdout if true indicates that stdout is to be redirected for the attach call.
	// Defaults to true.
	// +optional
	Stdout *bool `protobuf:"varint,2,opt,name=stdout" json:"stdout,omitempty"`
	// Stderr if true indicates that stderr is to be redirected for the attach call.
	// Defaults to true.
	// +optional
	Stderr *bool `protobuf:"varint,3,opt,name=stderr" json:"stderr,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=tty" json:"tty,omitempty"`
	// The container in which to execute the command.
	// Defaults to only container if there is only one container in the pod.
	// +optional
	Container        *string `protobuf:"bytes,5,opt,name=container" json:"container,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*PodAttachOptions) GetContainer

func (m *PodAttachOptions) GetContainer() string

func (*PodAttachOptions) GetStderr

func (m *PodAttachOptions) GetStderr() bool

func (*PodAttachOptions) GetStdin

func (m *PodAttachOptions) GetStdin() bool

func (*PodAttachOptions) GetStdout

func (m *PodAttachOptions) GetStdout() bool

func (*PodAttachOptions) GetTty

func (m *PodAttachOptions) GetTty() bool

func (*PodAttachOptions) Marshal

func (m *PodAttachOptions) Marshal() (dAtA []byte, err error)

func (*PodAttachOptions) MarshalTo

func (m *PodAttachOptions) MarshalTo(dAtA []byte) (int, error)

func (*PodAttachOptions) ProtoMessage

func (*PodAttachOptions) ProtoMessage()

func (*PodAttachOptions) Reset

func (m *PodAttachOptions) Reset()

func (*PodAttachOptions) Size

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

func (*PodAttachOptions) String

func (m *PodAttachOptions) String() string

func (*PodAttachOptions) Unmarshal

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 *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// 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 *string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
	// Last time we probed the condition.
	// +optional
	LastProbeTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,3,opt,name=lastProbeTime" json:"lastProbeTime,omitempty"`
	// Last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,4,opt,name=lastTransitionTime" json:"lastTransitionTime,omitempty"`
	// Unique, one-word, CamelCase reason for the condition's last transition.
	// +optional
	Reason *string `protobuf:"bytes,5,opt,name=reason" json:"reason,omitempty"`
	// Human-readable message indicating details about last transition.
	// +optional
	Message          *string `protobuf:"bytes,6,opt,name=message" json:"message,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PodCondition contains details for the current condition of this pod.

func (*PodCondition) Descriptor

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

func (*PodCondition) GetLastProbeTime

func (m *PodCondition) GetLastProbeTime() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*PodCondition) GetLastTransitionTime

func (m *PodCondition) GetLastTransitionTime() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*PodCondition) GetMessage

func (m *PodCondition) GetMessage() string

func (*PodCondition) GetReason

func (m *PodCondition) GetReason() string

func (*PodCondition) GetStatus

func (m *PodCondition) GetStatus() string

func (*PodCondition) GetType

func (m *PodCondition) GetType() string

func (*PodCondition) Marshal

func (m *PodCondition) Marshal() (dAtA []byte, err error)

func (*PodCondition) MarshalTo

func (m *PodCondition) MarshalTo(dAtA []byte) (int, error)

func (*PodCondition) ProtoMessage

func (*PodCondition) ProtoMessage()

func (*PodCondition) Reset

func (m *PodCondition) Reset()

func (*PodCondition) Size

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

func (*PodCondition) String

func (m *PodCondition) String() string

func (*PodCondition) Unmarshal

func (m *PodCondition) Unmarshal(dAtA []byte) error

type PodExecOptions

type PodExecOptions struct {
	// Redirect the standard input stream of the pod for this call.
	// Defaults to false.
	// +optional
	Stdin *bool `protobuf:"varint,1,opt,name=stdin" json:"stdin,omitempty"`
	// Redirect the standard output stream of the pod for this call.
	// Defaults to true.
	// +optional
	Stdout *bool `protobuf:"varint,2,opt,name=stdout" json:"stdout,omitempty"`
	// Redirect the standard error stream of the pod for this call.
	// Defaults to true.
	// +optional
	Stderr *bool `protobuf:"varint,3,opt,name=stderr" json:"stderr,omitempty"`
	// TTY if true indicates that a tty will be allocated for the exec call.
	// Defaults to false.
	// +optional
	Tty *bool `protobuf:"varint,4,opt,name=tty" json:"tty,omitempty"`
	// Container in which to execute the command.
	// Defaults to only container if there is only one container in the pod.
	// +optional
	Container *string `protobuf:"bytes,5,opt,name=container" json:"container,omitempty"`
	// Command is the remote command to execute. argv array. Not executed within a shell.
	Command          []string `protobuf:"bytes,6,rep,name=command" json:"command,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

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) Descriptor

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

func (*PodExecOptions) GetCommand

func (m *PodExecOptions) GetCommand() []string

func (*PodExecOptions) GetContainer

func (m *PodExecOptions) GetContainer() string

func (*PodExecOptions) GetStderr

func (m *PodExecOptions) GetStderr() bool

func (*PodExecOptions) GetStdin

func (m *PodExecOptions) GetStdin() bool

func (*PodExecOptions) GetStdout

func (m *PodExecOptions) GetStdout() bool

func (*PodExecOptions) GetTty

func (m *PodExecOptions) GetTty() bool

func (*PodExecOptions) Marshal

func (m *PodExecOptions) Marshal() (dAtA []byte, err error)

func (*PodExecOptions) MarshalTo

func (m *PodExecOptions) MarshalTo(dAtA []byte) (int, error)

func (*PodExecOptions) ProtoMessage

func (*PodExecOptions) ProtoMessage()

func (*PodExecOptions) Reset

func (m *PodExecOptions) Reset()

func (*PodExecOptions) Size

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

func (*PodExecOptions) String

func (m *PodExecOptions) String() string

func (*PodExecOptions) Unmarshal

func (m *PodExecOptions) Unmarshal(dAtA []byte) error

type PodList

type PodList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of pods.
	// More info: http://kubernetes.io/docs/user-guide/pods
	Items            []*Pod `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

PodList is a list of Pods.

func (*PodList) Descriptor

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

func (*PodList) GetItems

func (m *PodList) GetItems() []*Pod

func (*PodList) GetMetadata

func (*PodList) Marshal

func (m *PodList) Marshal() (dAtA []byte, err error)

func (*PodList) MarshalTo

func (m *PodList) MarshalTo(dAtA []byte) (int, error)

func (*PodList) ProtoMessage

func (*PodList) ProtoMessage()

func (*PodList) Reset

func (m *PodList) Reset()

func (*PodList) Size

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

func (*PodList) String

func (m *PodList) String() string

func (*PodList) Unmarshal

func (m *PodList) Unmarshal(dAtA []byte) error

type PodLogOptions

type PodLogOptions struct {
	// The container for which to stream logs. Defaults to only container if there is one container in the pod.
	// +optional
	Container *string `protobuf:"bytes,1,opt,name=container" json:"container,omitempty"`
	// Follow the log stream of the pod. Defaults to false.
	// +optional
	Follow *bool `protobuf:"varint,2,opt,name=follow" json:"follow,omitempty"`
	// Return previous terminated container logs. Defaults to false.
	// +optional
	Previous *bool `protobuf:"varint,3,opt,name=previous" json:"previous,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=sinceSeconds" json:"sinceSeconds,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,5,opt,name=sinceTime" json:"sinceTime,omitempty"`
	// If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
	// of log output. Defaults to false.
	// +optional
	Timestamps *bool `protobuf:"varint,6,opt,name=timestamps" json:"timestamps,omitempty"`
	// 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 `protobuf:"varint,7,opt,name=tailLines" json:"tailLines,omitempty"`
	// 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 `protobuf:"varint,8,opt,name=limitBytes" json:"limitBytes,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

PodLogOptions is the query options for a Pod's logs REST call.

func (*PodLogOptions) Descriptor

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

func (*PodLogOptions) GetContainer

func (m *PodLogOptions) GetContainer() string

func (*PodLogOptions) GetFollow

func (m *PodLogOptions) GetFollow() bool

func (*PodLogOptions) GetLimitBytes

func (m *PodLogOptions) GetLimitBytes() int64

func (*PodLogOptions) GetPrevious

func (m *PodLogOptions) GetPrevious() bool

func (*PodLogOptions) GetSinceSeconds

func (m *PodLogOptions) GetSinceSeconds() int64

func (*PodLogOptions) GetSinceTime

func (*PodLogOptions) GetTailLines

func (m *PodLogOptions) GetTailLines() int64

func (*PodLogOptions) GetTimestamps

func (m *PodLogOptions) GetTimestamps() bool

func (*PodLogOptions) Marshal

func (m *PodLogOptions) Marshal() (dAtA []byte, err error)

func (*PodLogOptions) MarshalTo

func (m *PodLogOptions) MarshalTo(dAtA []byte) (int, error)

func (*PodLogOptions) ProtoMessage

func (*PodLogOptions) ProtoMessage()

func (*PodLogOptions) Reset

func (m *PodLogOptions) Reset()

func (*PodLogOptions) Size

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

func (*PodLogOptions) String

func (m *PodLogOptions) String() string

func (*PodLogOptions) Unmarshal

func (m *PodLogOptions) Unmarshal(dAtA []byte) error

type PodPortForwardOptions added in v0.3.0

type PodPortForwardOptions struct {
	// List of ports to forward
	// Required when using WebSockets
	// +optional
	Ports            []int32 `protobuf:"varint,1,rep,name=ports" json:"ports,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PodPortForwardOptions is the query options to a Pod's port forward call when using WebSockets. The `port` query parameter must specify the port or ports (comma separated) to forward over. Port forwarding over SPDY does not use these options. It requires the port to be passed in the `port` header as part of request.

func (*PodPortForwardOptions) Descriptor added in v0.3.0

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

func (*PodPortForwardOptions) GetPorts added in v0.3.0

func (m *PodPortForwardOptions) GetPorts() []int32

func (*PodPortForwardOptions) Marshal added in v0.3.0

func (m *PodPortForwardOptions) Marshal() (dAtA []byte, err error)

func (*PodPortForwardOptions) MarshalTo added in v0.3.0

func (m *PodPortForwardOptions) MarshalTo(dAtA []byte) (int, error)

func (*PodPortForwardOptions) ProtoMessage added in v0.3.0

func (*PodPortForwardOptions) ProtoMessage()

func (*PodPortForwardOptions) Reset added in v0.3.0

func (m *PodPortForwardOptions) Reset()

func (*PodPortForwardOptions) Size added in v0.3.0

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

func (*PodPortForwardOptions) String added in v0.3.0

func (m *PodPortForwardOptions) String() string

func (*PodPortForwardOptions) Unmarshal added in v0.3.0

func (m *PodPortForwardOptions) Unmarshal(dAtA []byte) error

type PodProxyOptions

type PodProxyOptions struct {
	// Path is the URL path to use for the current proxy request to pod.
	// +optional
	Path             *string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PodProxyOptions is the query options to a Pod's proxy call.

func (*PodProxyOptions) Descriptor

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

func (*PodProxyOptions) GetPath

func (m *PodProxyOptions) GetPath() string

func (*PodProxyOptions) Marshal

func (m *PodProxyOptions) Marshal() (dAtA []byte, err error)

func (*PodProxyOptions) MarshalTo

func (m *PodProxyOptions) MarshalTo(dAtA []byte) (int, error)

func (*PodProxyOptions) ProtoMessage

func (*PodProxyOptions) ProtoMessage()

func (*PodProxyOptions) Reset

func (m *PodProxyOptions) Reset()

func (*PodProxyOptions) Size

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

func (*PodProxyOptions) String

func (m *PodProxyOptions) String() string

func (*PodProxyOptions) Unmarshal

func (m *PodProxyOptions) Unmarshal(dAtA []byte) error

type PodSecurityContext

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 `protobuf:"bytes,1,opt,name=seLinuxOptions" json:"seLinuxOptions,omitempty"`
	// 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 `protobuf:"varint,2,opt,name=runAsUser" json:"runAsUser,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=runAsNonRoot" json:"runAsNonRoot,omitempty"`
	// 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 `protobuf:"varint,4,rep,name=supplementalGroups" json:"supplementalGroups,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=fsGroup" json:"fsGroup,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*PodSecurityContext) GetFsGroup

func (m *PodSecurityContext) GetFsGroup() int64

func (*PodSecurityContext) GetRunAsNonRoot

func (m *PodSecurityContext) GetRunAsNonRoot() bool

func (*PodSecurityContext) GetRunAsUser

func (m *PodSecurityContext) GetRunAsUser() int64

func (*PodSecurityContext) GetSeLinuxOptions

func (m *PodSecurityContext) GetSeLinuxOptions() *SELinuxOptions

func (*PodSecurityContext) GetSupplementalGroups

func (m *PodSecurityContext) GetSupplementalGroups() []int64

func (*PodSecurityContext) Marshal

func (m *PodSecurityContext) Marshal() (dAtA []byte, err error)

func (*PodSecurityContext) MarshalTo

func (m *PodSecurityContext) MarshalTo(dAtA []byte) (int, error)

func (*PodSecurityContext) ProtoMessage

func (*PodSecurityContext) ProtoMessage()

func (*PodSecurityContext) Reset

func (m *PodSecurityContext) Reset()

func (*PodSecurityContext) Size

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

func (*PodSecurityContext) String

func (m *PodSecurityContext) String() string

func (*PodSecurityContext) Unmarshal

func (m *PodSecurityContext) Unmarshal(dAtA []byte) error

type PodSignature

type PodSignature struct {
	// Reference to controller whose pods should avoid this node.
	// +optional
	PodController    *k8s_io_kubernetes_pkg_apis_meta_v1.OwnerReference `protobuf:"bytes,1,opt,name=podController" json:"podController,omitempty"`
	XXX_unrecognized []byte                                             `json:"-"`
}

Describes the class of pods that should avoid this node. Exactly one field should be set.

func (*PodSignature) Descriptor

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

func (*PodSignature) GetPodController

func (*PodSignature) Marshal

func (m *PodSignature) Marshal() (dAtA []byte, err error)

func (*PodSignature) MarshalTo

func (m *PodSignature) MarshalTo(dAtA []byte) (int, error)

func (*PodSignature) ProtoMessage

func (*PodSignature) ProtoMessage()

func (*PodSignature) Reset

func (m *PodSignature) Reset()

func (*PodSignature) Size

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

func (*PodSignature) String

func (m *PodSignature) String() string

func (*PodSignature) Unmarshal

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 `protobuf:"bytes,1,rep,name=volumes" json:"volumes,omitempty"`
	// 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.
	// Cannot be updated.
	// More info: http://kubernetes.io/docs/user-guide/containers
	InitContainers []*Container `protobuf:"bytes,20,rep,name=initContainers" json:"initContainers,omitempty"`
	// 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 `protobuf:"bytes,2,rep,name=containers" json:"containers,omitempty"`
	// 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 *string `protobuf:"bytes,3,opt,name=restartPolicy" json:"restartPolicy,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=terminationGracePeriodSeconds" json:"terminationGracePeriodSeconds,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=activeDeadlineSeconds" json:"activeDeadlineSeconds,omitempty"`
	// Set DNS policy for containers within the pod.
	// One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'.
	// Defaults to "ClusterFirst".
	// To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.
	// +optional
	DnsPolicy *string `protobuf:"bytes,6,opt,name=dnsPolicy" json:"dnsPolicy,omitempty"`
	// 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 `` /* 144-byte string literal not displayed */
	// 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 `protobuf:"bytes,8,opt,name=serviceAccountName" json:"serviceAccountName,omitempty"`
	// DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
	// Deprecated: Use serviceAccountName instead.
	// +k8s:conversion-gen=false
	// +optional
	ServiceAccount *string `protobuf:"bytes,9,opt,name=serviceAccount" json:"serviceAccount,omitempty"`
	// AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.
	// +optional
	AutomountServiceAccountToken *bool `protobuf:"varint,21,opt,name=automountServiceAccountToken" json:"automountServiceAccountToken,omitempty"`
	// 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 `protobuf:"bytes,10,opt,name=nodeName" json:"nodeName,omitempty"`
	// 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 `protobuf:"varint,11,opt,name=hostNetwork" json:"hostNetwork,omitempty"`
	// Use the host's pid namespace.
	// Optional: Default to false.
	// +k8s:conversion-gen=false
	// +optional
	HostPID *bool `protobuf:"varint,12,opt,name=hostPID" json:"hostPID,omitempty"`
	// Use the host's ipc namespace.
	// Optional: Default to false.
	// +k8s:conversion-gen=false
	// +optional
	HostIPC *bool `protobuf:"varint,13,opt,name=hostIPC" json:"hostIPC,omitempty"`
	// 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 `protobuf:"bytes,14,opt,name=securityContext" json:"securityContext,omitempty"`
	// 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 `protobuf:"bytes,15,rep,name=imagePullSecrets" json:"imagePullSecrets,omitempty"`
	// Specifies the hostname of the Pod
	// If not specified, the pod's hostname will be set to a system-defined value.
	// +optional
	Hostname *string `protobuf:"bytes,16,opt,name=hostname" json:"hostname,omitempty"`
	// 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 `protobuf:"bytes,17,opt,name=subdomain" json:"subdomain,omitempty"`
	// If specified, the pod's scheduling constraints
	// +optional
	Affinity *Affinity `protobuf:"bytes,18,opt,name=affinity" json:"affinity,omitempty"`
	// If specified, the pod will be dispatched by specified scheduler.
	// If not specified, the pod will be dispatched by default scheduler.
	// +optional
	SchedulerName *string `protobuf:"bytes,19,opt,name=schedulerName" json:"schedulerName,omitempty"`
	// If specified, the pod's tolerations.
	// +optional
	Tolerations      []*Toleration `protobuf:"bytes,22,rep,name=tolerations" json:"tolerations,omitempty"`
	XXX_unrecognized []byte        `json:"-"`
}

PodSpec is a description of a pod.

func (*PodSpec) Descriptor

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

func (*PodSpec) GetActiveDeadlineSeconds

func (m *PodSpec) GetActiveDeadlineSeconds() int64

func (*PodSpec) GetAffinity added in v0.3.0

func (m *PodSpec) GetAffinity() *Affinity

func (*PodSpec) GetAutomountServiceAccountToken added in v0.3.0

func (m *PodSpec) GetAutomountServiceAccountToken() bool

func (*PodSpec) GetContainers

func (m *PodSpec) GetContainers() []*Container

func (*PodSpec) GetDnsPolicy

func (m *PodSpec) GetDnsPolicy() string

func (*PodSpec) GetHostIPC

func (m *PodSpec) GetHostIPC() bool

func (*PodSpec) GetHostNetwork

func (m *PodSpec) GetHostNetwork() bool

func (*PodSpec) GetHostPID

func (m *PodSpec) GetHostPID() bool

func (*PodSpec) GetHostname

func (m *PodSpec) GetHostname() string

func (*PodSpec) GetImagePullSecrets

func (m *PodSpec) GetImagePullSecrets() []*LocalObjectReference

func (*PodSpec) GetInitContainers added in v0.3.0

func (m *PodSpec) GetInitContainers() []*Container

func (*PodSpec) GetNodeName

func (m *PodSpec) GetNodeName() string

func (*PodSpec) GetNodeSelector

func (m *PodSpec) GetNodeSelector() map[string]string

func (*PodSpec) GetRestartPolicy

func (m *PodSpec) GetRestartPolicy() string

func (*PodSpec) GetSchedulerName added in v0.3.0

func (m *PodSpec) GetSchedulerName() string

func (*PodSpec) GetSecurityContext

func (m *PodSpec) GetSecurityContext() *PodSecurityContext

func (*PodSpec) GetServiceAccount

func (m *PodSpec) GetServiceAccount() string

func (*PodSpec) GetServiceAccountName

func (m *PodSpec) GetServiceAccountName() string

func (*PodSpec) GetSubdomain

func (m *PodSpec) GetSubdomain() string

func (*PodSpec) GetTerminationGracePeriodSeconds

func (m *PodSpec) GetTerminationGracePeriodSeconds() int64

func (*PodSpec) GetTolerations added in v0.3.0

func (m *PodSpec) GetTolerations() []*Toleration

func (*PodSpec) GetVolumes

func (m *PodSpec) GetVolumes() []*Volume

func (*PodSpec) Marshal

func (m *PodSpec) Marshal() (dAtA []byte, err error)

func (*PodSpec) MarshalTo

func (m *PodSpec) MarshalTo(dAtA []byte) (int, error)

func (*PodSpec) ProtoMessage

func (*PodSpec) ProtoMessage()

func (*PodSpec) Reset

func (m *PodSpec) Reset()

func (*PodSpec) Size

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

func (*PodSpec) String

func (m *PodSpec) String() string

func (*PodSpec) Unmarshal

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 *string `protobuf:"bytes,1,opt,name=phase" json:"phase,omitempty"`
	// Current service state of pod.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
	// +optional
	Conditions []*PodCondition `protobuf:"bytes,2,rep,name=conditions" json:"conditions,omitempty"`
	// A human readable message indicating details about why the pod is in this condition.
	// +optional
	Message *string `protobuf:"bytes,3,opt,name=message" json:"message,omitempty"`
	// A brief CamelCase message indicating details about why the pod is in this state.
	// e.g. 'OutOfDisk'
	// +optional
	Reason *string `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"`
	// IP address of the host to which the pod is assigned. Empty if not yet scheduled.
	// +optional
	HostIP *string `protobuf:"bytes,5,opt,name=hostIP" json:"hostIP,omitempty"`
	// IP address allocated to the pod. Routable at least within the cluster.
	// Empty if not yet allocated.
	// +optional
	PodIP *string `protobuf:"bytes,6,opt,name=podIP" json:"podIP,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,7,opt,name=startTime" json:"startTime,omitempty"`
	// 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.
	// More info: http://kubernetes.io/docs/user-guide/pod-states#container-statuses
	InitContainerStatuses []*ContainerStatus `protobuf:"bytes,10,rep,name=initContainerStatuses" json:"initContainerStatuses,omitempty"`
	// 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 `protobuf:"bytes,8,rep,name=containerStatuses" json:"containerStatuses,omitempty"`
	// The Quality of Service (QOS) classification assigned to the pod based on resource requirements
	// See PodQOSClass type for available QOS classes
	// More info: https://github.com/kubernetes/kubernetes/blob/master/docs/design/resource-qos.md
	// +optional
	QosClass         *string `protobuf:"bytes,9,opt,name=qosClass" json:"qosClass,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

PodStatus represents information about the status of a pod. Status may trail the actual state of a system.

func (*PodStatus) Descriptor

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

func (*PodStatus) GetConditions

func (m *PodStatus) GetConditions() []*PodCondition

func (*PodStatus) GetContainerStatuses

func (m *PodStatus) GetContainerStatuses() []*ContainerStatus

func (*PodStatus) GetHostIP

func (m *PodStatus) GetHostIP() string

func (*PodStatus) GetInitContainerStatuses added in v0.3.0

func (m *PodStatus) GetInitContainerStatuses() []*ContainerStatus

func (*PodStatus) GetMessage

func (m *PodStatus) GetMessage() string

func (*PodStatus) GetPhase

func (m *PodStatus) GetPhase() string

func (*PodStatus) GetPodIP

func (m *PodStatus) GetPodIP() string

func (*PodStatus) GetQosClass added in v0.3.0

func (m *PodStatus) GetQosClass() string

func (*PodStatus) GetReason

func (m *PodStatus) GetReason() string

func (*PodStatus) GetStartTime

func (*PodStatus) Marshal

func (m *PodStatus) Marshal() (dAtA []byte, err error)

func (*PodStatus) MarshalTo

func (m *PodStatus) MarshalTo(dAtA []byte) (int, error)

func (*PodStatus) ProtoMessage

func (*PodStatus) ProtoMessage()

func (*PodStatus) Reset

func (m *PodStatus) Reset()

func (*PodStatus) Size

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

func (*PodStatus) String

func (m *PodStatus) String() string

func (*PodStatus) Unmarshal

func (m *PodStatus) Unmarshal(dAtA []byte) error

type PodStatusResult

type PodStatusResult struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte     `json:"-"`
}

PodStatusResult is a wrapper for PodStatus returned by kubelet that can be encode/decoded

func (*PodStatusResult) Descriptor

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

func (*PodStatusResult) GetMetadata

func (*PodStatusResult) GetStatus

func (m *PodStatusResult) GetStatus() *PodStatus

func (*PodStatusResult) Marshal

func (m *PodStatusResult) Marshal() (dAtA []byte, err error)

func (*PodStatusResult) MarshalTo

func (m *PodStatusResult) MarshalTo(dAtA []byte) (int, error)

func (*PodStatusResult) ProtoMessage

func (*PodStatusResult) ProtoMessage()

func (*PodStatusResult) Reset

func (m *PodStatusResult) Reset()

func (*PodStatusResult) Size

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

func (*PodStatusResult) String

func (m *PodStatusResult) String() string

func (*PodStatusResult) Unmarshal

func (m *PodStatusResult) Unmarshal(dAtA []byte) error

type PodTemplate

type PodTemplate struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=template" json:"template,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

PodTemplate describes a template for creating copies of a predefined pod.

func (*PodTemplate) Descriptor

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

func (*PodTemplate) GetMetadata

func (*PodTemplate) GetTemplate

func (m *PodTemplate) GetTemplate() *PodTemplateSpec

func (*PodTemplate) Marshal

func (m *PodTemplate) Marshal() (dAtA []byte, err error)

func (*PodTemplate) MarshalTo

func (m *PodTemplate) MarshalTo(dAtA []byte) (int, error)

func (*PodTemplate) ProtoMessage

func (*PodTemplate) ProtoMessage()

func (*PodTemplate) Reset

func (m *PodTemplate) Reset()

func (*PodTemplate) Size

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

func (*PodTemplate) String

func (m *PodTemplate) String() string

func (*PodTemplate) Unmarshal

func (m *PodTemplate) Unmarshal(dAtA []byte) error

type PodTemplateList

type PodTemplateList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of pod templates
	Items            []*PodTemplate `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte         `json:"-"`
}

PodTemplateList is a list of PodTemplates.

func (*PodTemplateList) Descriptor

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

func (*PodTemplateList) GetItems

func (m *PodTemplateList) GetItems() []*PodTemplate

func (*PodTemplateList) GetMetadata

func (*PodTemplateList) Marshal

func (m *PodTemplateList) Marshal() (dAtA []byte, err error)

func (*PodTemplateList) MarshalTo

func (m *PodTemplateList) MarshalTo(dAtA []byte) (int, error)

func (*PodTemplateList) ProtoMessage

func (*PodTemplateList) ProtoMessage()

func (*PodTemplateList) Reset

func (m *PodTemplateList) Reset()

func (*PodTemplateList) Size

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

func (*PodTemplateList) String

func (m *PodTemplateList) String() string

func (*PodTemplateList) Unmarshal

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
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

PodTemplateSpec describes the data a pod should have when created from a template

func (*PodTemplateSpec) Descriptor

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

func (*PodTemplateSpec) GetMetadata

func (*PodTemplateSpec) GetSpec

func (m *PodTemplateSpec) GetSpec() *PodSpec

func (*PodTemplateSpec) Marshal

func (m *PodTemplateSpec) Marshal() (dAtA []byte, err error)

func (*PodTemplateSpec) MarshalTo

func (m *PodTemplateSpec) MarshalTo(dAtA []byte) (int, error)

func (*PodTemplateSpec) ProtoMessage

func (*PodTemplateSpec) ProtoMessage()

func (*PodTemplateSpec) Reset

func (m *PodTemplateSpec) Reset()

func (*PodTemplateSpec) Size

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

func (*PodTemplateSpec) String

func (m *PodTemplateSpec) String() string

func (*PodTemplateSpec) Unmarshal

func (m *PodTemplateSpec) Unmarshal(dAtA []byte) error

type PortworxVolumeSource added in v0.3.0

type PortworxVolumeSource struct {
	// VolumeID uniquely identifies a Portworx volume
	VolumeID *string `protobuf:"bytes,1,opt,name=volumeID" json:"volumeID,omitempty"`
	// FSType represents the filesystem type to mount
	// Must be a filesystem type supported by the host operating system.
	// Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
	FsType *string `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	// Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly         *bool  `protobuf:"varint,3,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

PortworxVolumeSource represents a Portworx volume resource.

func (*PortworxVolumeSource) Descriptor added in v0.3.0

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

func (*PortworxVolumeSource) GetFsType added in v0.3.0

func (m *PortworxVolumeSource) GetFsType() string

func (*PortworxVolumeSource) GetReadOnly added in v0.3.0

func (m *PortworxVolumeSource) GetReadOnly() bool

func (*PortworxVolumeSource) GetVolumeID added in v0.3.0

func (m *PortworxVolumeSource) GetVolumeID() string

func (*PortworxVolumeSource) Marshal added in v0.3.0

func (m *PortworxVolumeSource) Marshal() (dAtA []byte, err error)

func (*PortworxVolumeSource) MarshalTo added in v0.3.0

func (m *PortworxVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*PortworxVolumeSource) ProtoMessage added in v0.3.0

func (*PortworxVolumeSource) ProtoMessage()

func (*PortworxVolumeSource) Reset added in v0.3.0

func (m *PortworxVolumeSource) Reset()

func (*PortworxVolumeSource) Size added in v0.3.0

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

func (*PortworxVolumeSource) String added in v0.3.0

func (m *PortworxVolumeSource) String() string

func (*PortworxVolumeSource) Unmarshal added in v0.3.0

func (m *PortworxVolumeSource) Unmarshal(dAtA []byte) error

type Preconditions

type Preconditions struct {
	// Specifies the target UID.
	// +optional
	Uid              *string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. +k8s:openapi-gen=false

func (*Preconditions) Descriptor

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

func (*Preconditions) GetUid

func (m *Preconditions) GetUid() string

func (*Preconditions) Marshal

func (m *Preconditions) Marshal() (dAtA []byte, err error)

func (*Preconditions) MarshalTo

func (m *Preconditions) MarshalTo(dAtA []byte) (int, error)

func (*Preconditions) ProtoMessage

func (*Preconditions) ProtoMessage()

func (*Preconditions) Reset

func (m *Preconditions) Reset()

func (*Preconditions) Size

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

func (*Preconditions) String

func (m *Preconditions) String() string

func (*Preconditions) Unmarshal

func (m *Preconditions) Unmarshal(dAtA []byte) error

type PreferAvoidPodsEntry

type PreferAvoidPodsEntry struct {
	// The class of pods.
	PodSignature *PodSignature `protobuf:"bytes,1,opt,name=podSignature" json:"podSignature,omitempty"`
	// Time at which this entry was added to the list.
	// +optional
	EvictionTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,2,opt,name=evictionTime" json:"evictionTime,omitempty"`
	// (brief) reason why this entry was added to the list.
	// +optional
	Reason *string `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
	// Human readable message indicating why this entry was added to the list.
	// +optional
	Message          *string `protobuf:"bytes,4,opt,name=message" json:"message,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

Describes a class of pods that should avoid this node.

func (*PreferAvoidPodsEntry) Descriptor

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

func (*PreferAvoidPodsEntry) GetEvictionTime

func (*PreferAvoidPodsEntry) GetMessage

func (m *PreferAvoidPodsEntry) GetMessage() string

func (*PreferAvoidPodsEntry) GetPodSignature

func (m *PreferAvoidPodsEntry) GetPodSignature() *PodSignature

func (*PreferAvoidPodsEntry) GetReason

func (m *PreferAvoidPodsEntry) GetReason() string

func (*PreferAvoidPodsEntry) Marshal

func (m *PreferAvoidPodsEntry) Marshal() (dAtA []byte, err error)

func (*PreferAvoidPodsEntry) MarshalTo

func (m *PreferAvoidPodsEntry) MarshalTo(dAtA []byte) (int, error)

func (*PreferAvoidPodsEntry) ProtoMessage

func (*PreferAvoidPodsEntry) ProtoMessage()

func (*PreferAvoidPodsEntry) Reset

func (m *PreferAvoidPodsEntry) Reset()

func (*PreferAvoidPodsEntry) Size

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

func (*PreferAvoidPodsEntry) String

func (m *PreferAvoidPodsEntry) String() string

func (*PreferAvoidPodsEntry) Unmarshal

func (m *PreferAvoidPodsEntry) Unmarshal(dAtA []byte) error

type PreferredSchedulingTerm

type PreferredSchedulingTerm struct {
	// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
	Weight *int32 `protobuf:"varint,1,opt,name=weight" json:"weight,omitempty"`
	// A node selector term, associated with the corresponding weight.
	Preference       *NodeSelectorTerm `protobuf:"bytes,2,opt,name=preference" json:"preference,omitempty"`
	XXX_unrecognized []byte            `json:"-"`
}

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) Descriptor

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

func (*PreferredSchedulingTerm) GetPreference

func (m *PreferredSchedulingTerm) GetPreference() *NodeSelectorTerm

func (*PreferredSchedulingTerm) GetWeight

func (m *PreferredSchedulingTerm) GetWeight() int32

func (*PreferredSchedulingTerm) Marshal

func (m *PreferredSchedulingTerm) Marshal() (dAtA []byte, err error)

func (*PreferredSchedulingTerm) MarshalTo

func (m *PreferredSchedulingTerm) MarshalTo(dAtA []byte) (int, error)

func (*PreferredSchedulingTerm) ProtoMessage

func (*PreferredSchedulingTerm) ProtoMessage()

func (*PreferredSchedulingTerm) Reset

func (m *PreferredSchedulingTerm) Reset()

func (*PreferredSchedulingTerm) Size

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

func (*PreferredSchedulingTerm) String

func (m *PreferredSchedulingTerm) String() string

func (*PreferredSchedulingTerm) Unmarshal

func (m *PreferredSchedulingTerm) Unmarshal(dAtA []byte) error

type Probe

type Probe struct {
	// The action taken to determine the health of a container
	Handler *Handler `protobuf:"bytes,1,opt,name=handler" json:"handler,omitempty"`
	// 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 `protobuf:"varint,2,opt,name=initialDelaySeconds" json:"initialDelaySeconds,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=timeoutSeconds" json:"timeoutSeconds,omitempty"`
	// How often (in seconds) to perform the probe.
	// Default to 10 seconds. Minimum value is 1.
	// +optional
	PeriodSeconds *int32 `protobuf:"varint,4,opt,name=periodSeconds" json:"periodSeconds,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=successThreshold" json:"successThreshold,omitempty"`
	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
	// Defaults to 3. Minimum value is 1.
	// +optional
	FailureThreshold *int32 `protobuf:"varint,6,opt,name=failureThreshold" json:"failureThreshold,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

func (*Probe) Descriptor

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

func (*Probe) GetFailureThreshold

func (m *Probe) GetFailureThreshold() int32

func (*Probe) GetHandler

func (m *Probe) GetHandler() *Handler

func (*Probe) GetInitialDelaySeconds

func (m *Probe) GetInitialDelaySeconds() int32

func (*Probe) GetPeriodSeconds

func (m *Probe) GetPeriodSeconds() int32

func (*Probe) GetSuccessThreshold

func (m *Probe) GetSuccessThreshold() int32

func (*Probe) GetTimeoutSeconds

func (m *Probe) GetTimeoutSeconds() int32

func (*Probe) Marshal

func (m *Probe) Marshal() (dAtA []byte, err error)

func (*Probe) MarshalTo

func (m *Probe) MarshalTo(dAtA []byte) (int, error)

func (*Probe) ProtoMessage

func (*Probe) ProtoMessage()

func (*Probe) Reset

func (m *Probe) Reset()

func (*Probe) Size

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

func (*Probe) String

func (m *Probe) String() string

func (*Probe) Unmarshal

func (m *Probe) Unmarshal(dAtA []byte) error

type ProjectedVolumeSource added in v0.3.0

type ProjectedVolumeSource struct {
	// list of volume projections
	Sources []*VolumeProjection `protobuf:"bytes,1,rep,name=sources" json:"sources,omitempty"`
	// Mode bits to use on created files by default. Must be a value between
	// 0 and 0777.
	// 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 `protobuf:"varint,2,opt,name=defaultMode" json:"defaultMode,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Represents a projected volume source

func (*ProjectedVolumeSource) Descriptor added in v0.3.0

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

func (*ProjectedVolumeSource) GetDefaultMode added in v0.3.0

func (m *ProjectedVolumeSource) GetDefaultMode() int32

func (*ProjectedVolumeSource) GetSources added in v0.3.0

func (m *ProjectedVolumeSource) GetSources() []*VolumeProjection

func (*ProjectedVolumeSource) Marshal added in v0.3.0

func (m *ProjectedVolumeSource) Marshal() (dAtA []byte, err error)

func (*ProjectedVolumeSource) MarshalTo added in v0.3.0

func (m *ProjectedVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*ProjectedVolumeSource) ProtoMessage added in v0.3.0

func (*ProjectedVolumeSource) ProtoMessage()

func (*ProjectedVolumeSource) Reset added in v0.3.0

func (m *ProjectedVolumeSource) Reset()

func (*ProjectedVolumeSource) Size added in v0.3.0

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

func (*ProjectedVolumeSource) String added in v0.3.0

func (m *ProjectedVolumeSource) String() string

func (*ProjectedVolumeSource) Unmarshal added in v0.3.0

func (m *ProjectedVolumeSource) Unmarshal(dAtA []byte) error

type QuobyteVolumeSource

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 `protobuf:"bytes,1,opt,name=registry" json:"registry,omitempty"`
	// Volume is a string that references an already created Quobyte volume by name.
	Volume *string `protobuf:"bytes,2,opt,name=volume" json:"volume,omitempty"`
	// ReadOnly here will force the Quobyte volume to be mounted with read-only permissions.
	// Defaults to false.
	// +optional
	ReadOnly *bool `protobuf:"varint,3,opt,name=readOnly" json:"readOnly,omitempty"`
	// User to map volume access to
	// Defaults to serivceaccount user
	// +optional
	User *string `protobuf:"bytes,4,opt,name=user" json:"user,omitempty"`
	// Group to map volume access to
	// Default is no group
	// +optional
	Group            *string `protobuf:"bytes,5,opt,name=group" json:"group,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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

func (*QuobyteVolumeSource) Descriptor

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

func (*QuobyteVolumeSource) GetGroup

func (m *QuobyteVolumeSource) GetGroup() string

func (*QuobyteVolumeSource) GetReadOnly

func (m *QuobyteVolumeSource) GetReadOnly() bool

func (*QuobyteVolumeSource) GetRegistry

func (m *QuobyteVolumeSource) GetRegistry() string

func (*QuobyteVolumeSource) GetUser

func (m *QuobyteVolumeSource) GetUser() string

func (*QuobyteVolumeSource) GetVolume

func (m *QuobyteVolumeSource) GetVolume() string

func (*QuobyteVolumeSource) Marshal

func (m *QuobyteVolumeSource) Marshal() (dAtA []byte, err error)

func (*QuobyteVolumeSource) MarshalTo

func (m *QuobyteVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*QuobyteVolumeSource) ProtoMessage

func (*QuobyteVolumeSource) ProtoMessage()

func (*QuobyteVolumeSource) Reset

func (m *QuobyteVolumeSource) Reset()

func (*QuobyteVolumeSource) Size

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

func (*QuobyteVolumeSource) String

func (m *QuobyteVolumeSource) String() string

func (*QuobyteVolumeSource) Unmarshal

func (m *QuobyteVolumeSource) Unmarshal(dAtA []byte) error

type RBDVolumeSource

type RBDVolumeSource struct {
	// A collection of Ceph monitors.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	Monitors []string `protobuf:"bytes,1,rep,name=monitors" json:"monitors,omitempty"`
	// The rados image name.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	Image *string `protobuf:"bytes,2,opt,name=image" json:"image,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=fsType" json:"fsType,omitempty"`
	// The rados pool name.
	// Default is rbd.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it.
	// +optional
	Pool *string `protobuf:"bytes,4,opt,name=pool" json:"pool,omitempty"`
	// The rados user name.
	// Default is admin.
	// More info: http://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
	// +optional
	User *string `protobuf:"bytes,5,opt,name=user" json:"user,omitempty"`
	// 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 `protobuf:"bytes,6,opt,name=keyring" json:"keyring,omitempty"`
	// 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 `protobuf:"bytes,7,opt,name=secretRef" json:"secretRef,omitempty"`
	// 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  `protobuf:"varint,8,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

func (*RBDVolumeSource) Descriptor

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

func (*RBDVolumeSource) GetFsType

func (m *RBDVolumeSource) GetFsType() string

func (*RBDVolumeSource) GetImage

func (m *RBDVolumeSource) GetImage() string

func (*RBDVolumeSource) GetKeyring

func (m *RBDVolumeSource) GetKeyring() string

func (*RBDVolumeSource) GetMonitors

func (m *RBDVolumeSource) GetMonitors() []string

func (*RBDVolumeSource) GetPool

func (m *RBDVolumeSource) GetPool() string

func (*RBDVolumeSource) GetReadOnly

func (m *RBDVolumeSource) GetReadOnly() bool

func (*RBDVolumeSource) GetSecretRef

func (m *RBDVolumeSource) GetSecretRef() *LocalObjectReference

func (*RBDVolumeSource) GetUser

func (m *RBDVolumeSource) GetUser() string

func (*RBDVolumeSource) Marshal

func (m *RBDVolumeSource) Marshal() (dAtA []byte, err error)

func (*RBDVolumeSource) MarshalTo

func (m *RBDVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*RBDVolumeSource) ProtoMessage

func (*RBDVolumeSource) ProtoMessage()

func (*RBDVolumeSource) Reset

func (m *RBDVolumeSource) Reset()

func (*RBDVolumeSource) Size

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

func (*RBDVolumeSource) String

func (m *RBDVolumeSource) String() string

func (*RBDVolumeSource) Unmarshal

func (m *RBDVolumeSource) Unmarshal(dAtA []byte) error

type RangeAllocation

type RangeAllocation struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Range is string that identifies the range represented by 'data'.
	Range *string `protobuf:"bytes,2,opt,name=range" json:"range,omitempty"`
	// Data is a bit array containing all allocated addresses in the previous segment.
	Data             []byte `protobuf:"bytes,3,opt,name=data" json:"data,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

RangeAllocation is not a public type.

func (*RangeAllocation) Descriptor

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

func (*RangeAllocation) GetData

func (m *RangeAllocation) GetData() []byte

func (*RangeAllocation) GetMetadata

func (*RangeAllocation) GetRange

func (m *RangeAllocation) GetRange() string

func (*RangeAllocation) Marshal

func (m *RangeAllocation) Marshal() (dAtA []byte, err error)

func (*RangeAllocation) MarshalTo

func (m *RangeAllocation) MarshalTo(dAtA []byte) (int, error)

func (*RangeAllocation) ProtoMessage

func (*RangeAllocation) ProtoMessage()

func (*RangeAllocation) Reset

func (m *RangeAllocation) Reset()

func (*RangeAllocation) Size

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

func (*RangeAllocation) String

func (m *RangeAllocation) String() string

func (*RangeAllocation) Unmarshal

func (m *RangeAllocation) Unmarshal(dAtA []byte) error

type ReplicationController

type ReplicationController struct {
	// 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
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte                       `json:"-"`
}

ReplicationController represents the configuration of a replication controller.

func (*ReplicationController) Descriptor

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

func (*ReplicationController) GetMetadata

func (*ReplicationController) GetSpec

func (*ReplicationController) GetStatus

func (*ReplicationController) Marshal

func (m *ReplicationController) Marshal() (dAtA []byte, err error)

func (*ReplicationController) MarshalTo

func (m *ReplicationController) MarshalTo(dAtA []byte) (int, error)

func (*ReplicationController) ProtoMessage

func (*ReplicationController) ProtoMessage()

func (*ReplicationController) Reset

func (m *ReplicationController) Reset()

func (*ReplicationController) Size

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

func (*ReplicationController) String

func (m *ReplicationController) String() string

func (*ReplicationController) Unmarshal

func (m *ReplicationController) Unmarshal(dAtA []byte) error

type ReplicationControllerCondition

type ReplicationControllerCondition struct {
	// Type of replication controller condition.
	Type *string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
	// Status of the condition, one of True, False, Unknown.
	Status *string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
	// The last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,3,opt,name=lastTransitionTime" json:"lastTransitionTime,omitempty"`
	// The reason for the condition's last transition.
	// +optional
	Reason *string `protobuf:"bytes,4,opt,name=reason" json:"reason,omitempty"`
	// A human readable message indicating details about the transition.
	// +optional
	Message          *string `protobuf:"bytes,5,opt,name=message" json:"message,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ReplicationControllerCondition describes the state of a replication controller at a certain point.

func (*ReplicationControllerCondition) Descriptor

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

func (*ReplicationControllerCondition) GetLastTransitionTime

func (*ReplicationControllerCondition) GetMessage

func (m *ReplicationControllerCondition) GetMessage() string

func (*ReplicationControllerCondition) GetReason

func (m *ReplicationControllerCondition) GetReason() string

func (*ReplicationControllerCondition) GetStatus

func (m *ReplicationControllerCondition) GetStatus() string

func (*ReplicationControllerCondition) GetType

func (*ReplicationControllerCondition) Marshal

func (m *ReplicationControllerCondition) Marshal() (dAtA []byte, err error)

func (*ReplicationControllerCondition) MarshalTo

func (m *ReplicationControllerCondition) MarshalTo(dAtA []byte) (int, error)

func (*ReplicationControllerCondition) ProtoMessage

func (*ReplicationControllerCondition) ProtoMessage()

func (*ReplicationControllerCondition) Reset

func (m *ReplicationControllerCondition) Reset()

func (*ReplicationControllerCondition) Size

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

func (*ReplicationControllerCondition) String

func (*ReplicationControllerCondition) Unmarshal

func (m *ReplicationControllerCondition) Unmarshal(dAtA []byte) error

type ReplicationControllerList

type ReplicationControllerList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of replication controllers.
	// More info: http://kubernetes.io/docs/user-guide/replication-controller
	Items            []*ReplicationController `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte                   `json:"-"`
}

ReplicationControllerList is a collection of replication controllers.

func (*ReplicationControllerList) Descriptor

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

func (*ReplicationControllerList) GetItems

func (*ReplicationControllerList) GetMetadata

func (*ReplicationControllerList) Marshal

func (m *ReplicationControllerList) Marshal() (dAtA []byte, err error)

func (*ReplicationControllerList) MarshalTo

func (m *ReplicationControllerList) MarshalTo(dAtA []byte) (int, error)

func (*ReplicationControllerList) ProtoMessage

func (*ReplicationControllerList) ProtoMessage()

func (*ReplicationControllerList) Reset

func (m *ReplicationControllerList) Reset()

func (*ReplicationControllerList) Size

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

func (*ReplicationControllerList) String

func (m *ReplicationControllerList) String() string

func (*ReplicationControllerList) Unmarshal

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 `protobuf:"varint,1,opt,name=replicas" json:"replicas,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=minReadySeconds" json:"minReadySeconds,omitempty"`
	// 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 `` /* 136-byte string literal not displayed */
	// 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 `protobuf:"bytes,3,opt,name=template" json:"template,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

ReplicationControllerSpec is the specification of a replication controller.

func (*ReplicationControllerSpec) Descriptor

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

func (*ReplicationControllerSpec) GetMinReadySeconds

func (m *ReplicationControllerSpec) GetMinReadySeconds() int32

func (*ReplicationControllerSpec) GetReplicas

func (m *ReplicationControllerSpec) GetReplicas() int32

func (*ReplicationControllerSpec) GetSelector

func (m *ReplicationControllerSpec) GetSelector() map[string]string

func (*ReplicationControllerSpec) GetTemplate

func (m *ReplicationControllerSpec) GetTemplate() *PodTemplateSpec

func (*ReplicationControllerSpec) Marshal

func (m *ReplicationControllerSpec) Marshal() (dAtA []byte, err error)

func (*ReplicationControllerSpec) MarshalTo

func (m *ReplicationControllerSpec) MarshalTo(dAtA []byte) (int, error)

func (*ReplicationControllerSpec) ProtoMessage

func (*ReplicationControllerSpec) ProtoMessage()

func (*ReplicationControllerSpec) Reset

func (m *ReplicationControllerSpec) Reset()

func (*ReplicationControllerSpec) Size

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

func (*ReplicationControllerSpec) String

func (m *ReplicationControllerSpec) String() string

func (*ReplicationControllerSpec) Unmarshal

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 `protobuf:"varint,1,opt,name=replicas" json:"replicas,omitempty"`
	// The number of pods that have labels matching the labels of the pod template of the replication controller.
	// +optional
	FullyLabeledReplicas *int32 `protobuf:"varint,2,opt,name=fullyLabeledReplicas" json:"fullyLabeledReplicas,omitempty"`
	// The number of ready replicas for this replication controller.
	// +optional
	ReadyReplicas *int32 `protobuf:"varint,4,opt,name=readyReplicas" json:"readyReplicas,omitempty"`
	// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
	// +optional
	AvailableReplicas *int32 `protobuf:"varint,5,opt,name=availableReplicas" json:"availableReplicas,omitempty"`
	// ObservedGeneration reflects the generation of the most recently observed replication controller.
	// +optional
	ObservedGeneration *int64 `protobuf:"varint,3,opt,name=observedGeneration" json:"observedGeneration,omitempty"`
	// Represents the latest available observations of a replication controller's current state.
	// +optional
	Conditions       []*ReplicationControllerCondition `protobuf:"bytes,6,rep,name=conditions" json:"conditions,omitempty"`
	XXX_unrecognized []byte                            `json:"-"`
}

ReplicationControllerStatus represents the current status of a replication controller.

func (*ReplicationControllerStatus) Descriptor

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

func (*ReplicationControllerStatus) GetAvailableReplicas

func (m *ReplicationControllerStatus) GetAvailableReplicas() int32

func (*ReplicationControllerStatus) GetConditions

func (*ReplicationControllerStatus) GetFullyLabeledReplicas

func (m *ReplicationControllerStatus) GetFullyLabeledReplicas() int32

func (*ReplicationControllerStatus) GetObservedGeneration

func (m *ReplicationControllerStatus) GetObservedGeneration() int64

func (*ReplicationControllerStatus) GetReadyReplicas

func (m *ReplicationControllerStatus) GetReadyReplicas() int32

func (*ReplicationControllerStatus) GetReplicas

func (m *ReplicationControllerStatus) GetReplicas() int32

func (*ReplicationControllerStatus) Marshal

func (m *ReplicationControllerStatus) Marshal() (dAtA []byte, err error)

func (*ReplicationControllerStatus) MarshalTo

func (m *ReplicationControllerStatus) MarshalTo(dAtA []byte) (int, error)

func (*ReplicationControllerStatus) ProtoMessage

func (*ReplicationControllerStatus) ProtoMessage()

func (*ReplicationControllerStatus) Reset

func (m *ReplicationControllerStatus) Reset()

func (*ReplicationControllerStatus) Size

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

func (*ReplicationControllerStatus) String

func (m *ReplicationControllerStatus) String() string

func (*ReplicationControllerStatus) Unmarshal

func (m *ReplicationControllerStatus) Unmarshal(dAtA []byte) error

type ResourceFieldSelector

type ResourceFieldSelector struct {
	// Container name: required for volumes, optional for env vars
	// +optional
	ContainerName *string `protobuf:"bytes,1,opt,name=containerName" json:"containerName,omitempty"`
	// Required: resource to select
	Resource *string `protobuf:"bytes,2,opt,name=resource" json:"resource,omitempty"`
	// Specifies the output format of the exposed resources, defaults to "1"
	// +optional
	Divisor          *k8s_io_kubernetes_pkg_api_resource.Quantity `protobuf:"bytes,3,opt,name=divisor" json:"divisor,omitempty"`
	XXX_unrecognized []byte                                       `json:"-"`
}

ResourceFieldSelector represents container resources (cpu, memory) and their output format

func (*ResourceFieldSelector) Descriptor

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

func (*ResourceFieldSelector) GetContainerName

func (m *ResourceFieldSelector) GetContainerName() string

func (*ResourceFieldSelector) GetDivisor

func (*ResourceFieldSelector) GetResource

func (m *ResourceFieldSelector) GetResource() string

func (*ResourceFieldSelector) Marshal

func (m *ResourceFieldSelector) Marshal() (dAtA []byte, err error)

func (*ResourceFieldSelector) MarshalTo

func (m *ResourceFieldSelector) MarshalTo(dAtA []byte) (int, error)

func (*ResourceFieldSelector) ProtoMessage

func (*ResourceFieldSelector) ProtoMessage()

func (*ResourceFieldSelector) Reset

func (m *ResourceFieldSelector) Reset()

func (*ResourceFieldSelector) Size

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

func (*ResourceFieldSelector) String

func (m *ResourceFieldSelector) String() string

func (*ResourceFieldSelector) Unmarshal

func (m *ResourceFieldSelector) Unmarshal(dAtA []byte) error

type ResourceQuota

type ResourceQuota struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec defines the desired quota.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec *ResourceQuotaSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte               `json:"-"`
}

ResourceQuota sets aggregate quota restrictions enforced per namespace

func (*ResourceQuota) Descriptor

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

func (*ResourceQuota) GetMetadata

func (*ResourceQuota) GetSpec

func (m *ResourceQuota) GetSpec() *ResourceQuotaSpec

func (*ResourceQuota) GetStatus

func (m *ResourceQuota) GetStatus() *ResourceQuotaStatus

func (*ResourceQuota) Marshal

func (m *ResourceQuota) Marshal() (dAtA []byte, err error)

func (*ResourceQuota) MarshalTo

func (m *ResourceQuota) MarshalTo(dAtA []byte) (int, error)

func (*ResourceQuota) ProtoMessage

func (*ResourceQuota) ProtoMessage()

func (*ResourceQuota) Reset

func (m *ResourceQuota) Reset()

func (*ResourceQuota) Size

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

func (*ResourceQuota) String

func (m *ResourceQuota) String() string

func (*ResourceQuota) Unmarshal

func (m *ResourceQuota) Unmarshal(dAtA []byte) error

type ResourceQuotaList

type ResourceQuotaList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

ResourceQuotaList is a list of ResourceQuota items.

func (*ResourceQuotaList) Descriptor

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

func (*ResourceQuotaList) GetItems

func (m *ResourceQuotaList) GetItems() []*ResourceQuota

func (*ResourceQuotaList) GetMetadata

func (*ResourceQuotaList) Marshal

func (m *ResourceQuotaList) Marshal() (dAtA []byte, err error)

func (*ResourceQuotaList) MarshalTo

func (m *ResourceQuotaList) MarshalTo(dAtA []byte) (int, error)

func (*ResourceQuotaList) ProtoMessage

func (*ResourceQuotaList) ProtoMessage()

func (*ResourceQuotaList) Reset

func (m *ResourceQuotaList) Reset()

func (*ResourceQuotaList) Size

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

func (*ResourceQuotaList) String

func (m *ResourceQuotaList) String() string

func (*ResourceQuotaList) Unmarshal

func (m *ResourceQuotaList) Unmarshal(dAtA []byte) error

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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 128-byte string literal not displayed */
	// A collection of filters that must match each object tracked by a quota.
	// If not specified, the quota matches all objects.
	// +optional
	Scopes           []string `protobuf:"bytes,2,rep,name=scopes" json:"scopes,omitempty"`
	XXX_unrecognized []byte   `json:"-"`
}

ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

func (*ResourceQuotaSpec) Descriptor

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

func (*ResourceQuotaSpec) GetHard

func (*ResourceQuotaSpec) GetScopes

func (m *ResourceQuotaSpec) GetScopes() []string

func (*ResourceQuotaSpec) Marshal

func (m *ResourceQuotaSpec) Marshal() (dAtA []byte, err error)

func (*ResourceQuotaSpec) MarshalTo

func (m *ResourceQuotaSpec) MarshalTo(dAtA []byte) (int, error)

func (*ResourceQuotaSpec) ProtoMessage

func (*ResourceQuotaSpec) ProtoMessage()

func (*ResourceQuotaSpec) Reset

func (m *ResourceQuotaSpec) Reset()

func (*ResourceQuotaSpec) Size

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

func (*ResourceQuotaSpec) String

func (m *ResourceQuotaSpec) String() string

func (*ResourceQuotaSpec) Unmarshal

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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 128-byte string literal not displayed */
	// Used is the current observed total usage of the resource in the namespace.
	// +optional
	Used             map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 128-byte string literal not displayed */
	XXX_unrecognized []byte                                                  `json:"-"`
}

ResourceQuotaStatus defines the enforced hard limits and observed use.

func (*ResourceQuotaStatus) Descriptor

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

func (*ResourceQuotaStatus) GetHard

func (*ResourceQuotaStatus) GetUsed

func (*ResourceQuotaStatus) Marshal

func (m *ResourceQuotaStatus) Marshal() (dAtA []byte, err error)

func (*ResourceQuotaStatus) MarshalTo

func (m *ResourceQuotaStatus) MarshalTo(dAtA []byte) (int, error)

func (*ResourceQuotaStatus) ProtoMessage

func (*ResourceQuotaStatus) ProtoMessage()

func (*ResourceQuotaStatus) Reset

func (m *ResourceQuotaStatus) Reset()

func (*ResourceQuotaStatus) Size

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

func (*ResourceQuotaStatus) String

func (m *ResourceQuotaStatus) String() string

func (*ResourceQuotaStatus) Unmarshal

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 map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 132-byte string literal not displayed */
	// 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         map[string]*k8s_io_kubernetes_pkg_api_resource.Quantity `` /* 136-byte string literal not displayed */
	XXX_unrecognized []byte                                                  `json:"-"`
}

ResourceRequirements describes the compute resource requirements.

func (*ResourceRequirements) Descriptor

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

func (*ResourceRequirements) GetLimits

func (*ResourceRequirements) GetRequests

func (*ResourceRequirements) Marshal

func (m *ResourceRequirements) Marshal() (dAtA []byte, err error)

func (*ResourceRequirements) MarshalTo

func (m *ResourceRequirements) MarshalTo(dAtA []byte) (int, error)

func (*ResourceRequirements) ProtoMessage

func (*ResourceRequirements) ProtoMessage()

func (*ResourceRequirements) Reset

func (m *ResourceRequirements) Reset()

func (*ResourceRequirements) Size

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

func (*ResourceRequirements) String

func (m *ResourceRequirements) String() string

func (*ResourceRequirements) Unmarshal

func (m *ResourceRequirements) Unmarshal(dAtA []byte) error

type SELinuxOptions

type SELinuxOptions struct {
	// User is a SELinux user label that applies to the container.
	// +optional
	User *string `protobuf:"bytes,1,opt,name=user" json:"user,omitempty"`
	// Role is a SELinux role label that applies to the container.
	// +optional
	Role *string `protobuf:"bytes,2,opt,name=role" json:"role,omitempty"`
	// Type is a SELinux type label that applies to the container.
	// +optional
	Type *string `protobuf:"bytes,3,opt,name=type" json:"type,omitempty"`
	// Level is SELinux level label that applies to the container.
	// +optional
	Level            *string `protobuf:"bytes,4,opt,name=level" json:"level,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

SELinuxOptions are the labels to be applied to the container

func (*SELinuxOptions) Descriptor

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

func (*SELinuxOptions) GetLevel

func (m *SELinuxOptions) GetLevel() string

func (*SELinuxOptions) GetRole

func (m *SELinuxOptions) GetRole() string

func (*SELinuxOptions) GetType

func (m *SELinuxOptions) GetType() string

func (*SELinuxOptions) GetUser

func (m *SELinuxOptions) GetUser() string

func (*SELinuxOptions) Marshal

func (m *SELinuxOptions) Marshal() (dAtA []byte, err error)

func (*SELinuxOptions) MarshalTo

func (m *SELinuxOptions) MarshalTo(dAtA []byte) (int, error)

func (*SELinuxOptions) ProtoMessage

func (*SELinuxOptions) ProtoMessage()

func (*SELinuxOptions) Reset

func (m *SELinuxOptions) Reset()

func (*SELinuxOptions) Size

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

func (*SELinuxOptions) String

func (m *SELinuxOptions) String() string

func (*SELinuxOptions) Unmarshal

func (m *SELinuxOptions) Unmarshal(dAtA []byte) error

type ScaleIOVolumeSource added in v0.3.0

type ScaleIOVolumeSource struct {
	// The host address of the ScaleIO API Gateway.
	Gateway *string `protobuf:"bytes,1,opt,name=gateway" json:"gateway,omitempty"`
	// The name of the storage system as configured in ScaleIO.
	System *string `protobuf:"bytes,2,opt,name=system" json:"system,omitempty"`
	// SecretRef references to the secret for ScaleIO user and other
	// sensitive information. If this is not provided, Login operation will fail.
	SecretRef *LocalObjectReference `protobuf:"bytes,3,opt,name=secretRef" json:"secretRef,omitempty"`
	// Flag to enable/disable SSL communication with Gateway, default false
	// +optional
	SslEnabled *bool `protobuf:"varint,4,opt,name=sslEnabled" json:"sslEnabled,omitempty"`
	// The name of the Protection Domain for the configured storage (defaults to "default").
	// +optional
	ProtectionDomain *string `protobuf:"bytes,5,opt,name=protectionDomain" json:"protectionDomain,omitempty"`
	// The Storage Pool associated with the protection domain (defaults to "default").
	// +optional
	StoragePool *string `protobuf:"bytes,6,opt,name=storagePool" json:"storagePool,omitempty"`
	// Indicates whether the storage for a volume should be thick or thin (defaults to "thin").
	// +optional
	StorageMode *string `protobuf:"bytes,7,opt,name=storageMode" json:"storageMode,omitempty"`
	// The name of a volume already created in the ScaleIO system
	// that is associated with this volume source.
	VolumeName *string `protobuf:"bytes,8,opt,name=volumeName" json:"volumeName,omitempty"`
	// 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 `protobuf:"bytes,9,opt,name=fsType" json:"fsType,omitempty"`
	// Defaults to false (read/write). ReadOnly here will force
	// the ReadOnly setting in VolumeMounts.
	// +optional
	ReadOnly         *bool  `protobuf:"varint,10,opt,name=readOnly" json:"readOnly,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

ScaleIOVolumeSource represents a persistent ScaleIO volume

func (*ScaleIOVolumeSource) Descriptor added in v0.3.0

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

func (*ScaleIOVolumeSource) GetFsType added in v0.3.0

func (m *ScaleIOVolumeSource) GetFsType() string

func (*ScaleIOVolumeSource) GetGateway added in v0.3.0

func (m *ScaleIOVolumeSource) GetGateway() string

func (*ScaleIOVolumeSource) GetProtectionDomain added in v0.3.0

func (m *ScaleIOVolumeSource) GetProtectionDomain() string

func (*ScaleIOVolumeSource) GetReadOnly added in v0.3.0

func (m *ScaleIOVolumeSource) GetReadOnly() bool

func (*ScaleIOVolumeSource) GetSecretRef added in v0.3.0

func (m *ScaleIOVolumeSource) GetSecretRef() *LocalObjectReference

func (*ScaleIOVolumeSource) GetSslEnabled added in v0.3.0

func (m *ScaleIOVolumeSource) GetSslEnabled() bool

func (*ScaleIOVolumeSource) GetStorageMode added in v0.3.0

func (m *ScaleIOVolumeSource) GetStorageMode() string

func (*ScaleIOVolumeSource) GetStoragePool added in v0.3.0

func (m *ScaleIOVolumeSource) GetStoragePool() string

func (*ScaleIOVolumeSource) GetSystem added in v0.3.0

func (m *ScaleIOVolumeSource) GetSystem() string

func (*ScaleIOVolumeSource) GetVolumeName added in v0.3.0

func (m *ScaleIOVolumeSource) GetVolumeName() string

func (*ScaleIOVolumeSource) Marshal added in v0.3.0

func (m *ScaleIOVolumeSource) Marshal() (dAtA []byte, err error)

func (*ScaleIOVolumeSource) MarshalTo added in v0.3.0

func (m *ScaleIOVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*ScaleIOVolumeSource) ProtoMessage added in v0.3.0

func (*ScaleIOVolumeSource) ProtoMessage()

func (*ScaleIOVolumeSource) Reset added in v0.3.0

func (m *ScaleIOVolumeSource) Reset()

func (*ScaleIOVolumeSource) Size added in v0.3.0

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

func (*ScaleIOVolumeSource) String added in v0.3.0

func (m *ScaleIOVolumeSource) String() string

func (*ScaleIOVolumeSource) Unmarshal added in v0.3.0

func (m *ScaleIOVolumeSource) Unmarshal(dAtA []byte) error

type Secret

type Secret struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `` /* 128-byte string literal not displayed */
	// 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 `` /* 140-byte string literal not displayed */
	// Used to facilitate programmatic handling of secret data.
	// +optional
	Type             *string `protobuf:"bytes,3,opt,name=type" json:"type,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

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) Descriptor

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

func (*Secret) GetData

func (m *Secret) GetData() map[string][]byte

func (*Secret) GetMetadata

func (*Secret) GetStringData

func (m *Secret) GetStringData() map[string]string

func (*Secret) GetType

func (m *Secret) GetType() string

func (*Secret) Marshal

func (m *Secret) Marshal() (dAtA []byte, err error)

func (*Secret) MarshalTo

func (m *Secret) MarshalTo(dAtA []byte) (int, error)

func (*Secret) ProtoMessage

func (*Secret) ProtoMessage()

func (*Secret) Reset

func (m *Secret) Reset()

func (*Secret) Size

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

func (*Secret) String

func (m *Secret) String() string

func (*Secret) Unmarshal

func (m *Secret) Unmarshal(dAtA []byte) error

type SecretEnvSource added in v0.3.0

type SecretEnvSource struct {
	// The Secret to select from.
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// Specify whether the Secret must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,2,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

SecretEnvSource selects a Secret to populate the environment variables with.

The contents of the target Secret's Data field will represent the key-value pairs as environment variables.

func (*SecretEnvSource) Descriptor added in v0.3.0

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

func (*SecretEnvSource) GetLocalObjectReference added in v0.3.0

func (m *SecretEnvSource) GetLocalObjectReference() *LocalObjectReference

func (*SecretEnvSource) GetOptional added in v0.3.0

func (m *SecretEnvSource) GetOptional() bool

func (*SecretEnvSource) Marshal added in v0.3.0

func (m *SecretEnvSource) Marshal() (dAtA []byte, err error)

func (*SecretEnvSource) MarshalTo added in v0.3.0

func (m *SecretEnvSource) MarshalTo(dAtA []byte) (int, error)

func (*SecretEnvSource) ProtoMessage added in v0.3.0

func (*SecretEnvSource) ProtoMessage()

func (*SecretEnvSource) Reset added in v0.3.0

func (m *SecretEnvSource) Reset()

func (*SecretEnvSource) Size added in v0.3.0

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

func (*SecretEnvSource) String added in v0.3.0

func (m *SecretEnvSource) String() string

func (*SecretEnvSource) Unmarshal added in v0.3.0

func (m *SecretEnvSource) Unmarshal(dAtA []byte) error

type SecretKeySelector

type SecretKeySelector struct {
	// The name of the secret in the pod's namespace to select from.
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// The key of the secret to select from.  Must be a valid secret key.
	Key *string `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"`
	// Specify whether the Secret or it's key must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,3,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

SecretKeySelector selects a key of a Secret.

func (*SecretKeySelector) Descriptor

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

func (*SecretKeySelector) GetKey

func (m *SecretKeySelector) GetKey() string

func (*SecretKeySelector) GetLocalObjectReference

func (m *SecretKeySelector) GetLocalObjectReference() *LocalObjectReference

func (*SecretKeySelector) GetOptional added in v0.3.0

func (m *SecretKeySelector) GetOptional() bool

func (*SecretKeySelector) Marshal

func (m *SecretKeySelector) Marshal() (dAtA []byte, err error)

func (*SecretKeySelector) MarshalTo

func (m *SecretKeySelector) MarshalTo(dAtA []byte) (int, error)

func (*SecretKeySelector) ProtoMessage

func (*SecretKeySelector) ProtoMessage()

func (*SecretKeySelector) Reset

func (m *SecretKeySelector) Reset()

func (*SecretKeySelector) Size

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

func (*SecretKeySelector) String

func (m *SecretKeySelector) String() string

func (*SecretKeySelector) Unmarshal

func (m *SecretKeySelector) Unmarshal(dAtA []byte) error

type SecretList

type SecretList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is a list of secret objects.
	// More info: http://kubernetes.io/docs/user-guide/secrets
	Items            []*Secret `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte    `json:"-"`
}

SecretList is a list of Secret.

func (*SecretList) Descriptor

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

func (*SecretList) GetItems

func (m *SecretList) GetItems() []*Secret

func (*SecretList) GetMetadata

func (*SecretList) Marshal

func (m *SecretList) Marshal() (dAtA []byte, err error)

func (*SecretList) MarshalTo

func (m *SecretList) MarshalTo(dAtA []byte) (int, error)

func (*SecretList) ProtoMessage

func (*SecretList) ProtoMessage()

func (*SecretList) Reset

func (m *SecretList) Reset()

func (*SecretList) Size

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

func (*SecretList) String

func (m *SecretList) String() string

func (*SecretList) Unmarshal

func (m *SecretList) Unmarshal(dAtA []byte) error

type SecretProjection added in v0.3.0

type SecretProjection struct {
	LocalObjectReference *LocalObjectReference `protobuf:"bytes,1,opt,name=localObjectReference" json:"localObjectReference,omitempty"`
	// 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 unless it is marked optional. Paths must be
	// relative and may not contain the '..' path or start with '..'.
	// +optional
	Items []*KeyToPath `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	// Specify whether the Secret or its key must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,4,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

Adapts a secret into a projected volume.

The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.

func (*SecretProjection) Descriptor added in v0.3.0

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

func (*SecretProjection) GetItems added in v0.3.0

func (m *SecretProjection) GetItems() []*KeyToPath

func (*SecretProjection) GetLocalObjectReference added in v0.3.0

func (m *SecretProjection) GetLocalObjectReference() *LocalObjectReference

func (*SecretProjection) GetOptional added in v0.3.0

func (m *SecretProjection) GetOptional() bool

func (*SecretProjection) Marshal added in v0.3.0

func (m *SecretProjection) Marshal() (dAtA []byte, err error)

func (*SecretProjection) MarshalTo added in v0.3.0

func (m *SecretProjection) MarshalTo(dAtA []byte) (int, error)

func (*SecretProjection) ProtoMessage added in v0.3.0

func (*SecretProjection) ProtoMessage()

func (*SecretProjection) Reset added in v0.3.0

func (m *SecretProjection) Reset()

func (*SecretProjection) Size added in v0.3.0

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

func (*SecretProjection) String added in v0.3.0

func (m *SecretProjection) String() string

func (*SecretProjection) Unmarshal added in v0.3.0

func (m *SecretProjection) Unmarshal(dAtA []byte) error

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 `protobuf:"bytes,1,opt,name=secretName" json:"secretName,omitempty"`
	// 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 unless it is marked optional. Paths must be
	// relative and may not contain the '..' path or start with '..'.
	// +optional
	Items []*KeyToPath `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	// 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 `protobuf:"varint,3,opt,name=defaultMode" json:"defaultMode,omitempty"`
	// Specify whether the Secret or it's keys must be defined
	// +optional
	Optional         *bool  `protobuf:"varint,4,opt,name=optional" json:"optional,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

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) Descriptor

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

func (*SecretVolumeSource) GetDefaultMode

func (m *SecretVolumeSource) GetDefaultMode() int32

func (*SecretVolumeSource) GetItems

func (m *SecretVolumeSource) GetItems() []*KeyToPath

func (*SecretVolumeSource) GetOptional added in v0.3.0

func (m *SecretVolumeSource) GetOptional() bool

func (*SecretVolumeSource) GetSecretName

func (m *SecretVolumeSource) GetSecretName() string

func (*SecretVolumeSource) Marshal

func (m *SecretVolumeSource) Marshal() (dAtA []byte, err error)

func (*SecretVolumeSource) MarshalTo

func (m *SecretVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*SecretVolumeSource) ProtoMessage

func (*SecretVolumeSource) ProtoMessage()

func (*SecretVolumeSource) Reset

func (m *SecretVolumeSource) Reset()

func (*SecretVolumeSource) Size

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

func (*SecretVolumeSource) String

func (m *SecretVolumeSource) String() string

func (*SecretVolumeSource) Unmarshal

func (m *SecretVolumeSource) Unmarshal(dAtA []byte) error

type SecurityContext

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 `protobuf:"bytes,1,opt,name=capabilities" json:"capabilities,omitempty"`
	// Run container in privileged mode.
	// Processes in privileged containers are essentially equivalent to root on the host.
	// Defaults to false.
	// +optional
	Privileged *bool `protobuf:"varint,2,opt,name=privileged" json:"privileged,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=seLinuxOptions" json:"seLinuxOptions,omitempty"`
	// 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 `protobuf:"varint,4,opt,name=runAsUser" json:"runAsUser,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=runAsNonRoot" json:"runAsNonRoot,omitempty"`
	// Whether this container has a read-only root filesystem.
	// Default is false.
	// +optional
	ReadOnlyRootFilesystem *bool  `protobuf:"varint,6,opt,name=readOnlyRootFilesystem" json:"readOnlyRootFilesystem,omitempty"`
	XXX_unrecognized       []byte `json:"-"`
}

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) Descriptor

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

func (*SecurityContext) GetCapabilities

func (m *SecurityContext) GetCapabilities() *Capabilities

func (*SecurityContext) GetPrivileged

func (m *SecurityContext) GetPrivileged() bool

func (*SecurityContext) GetReadOnlyRootFilesystem

func (m *SecurityContext) GetReadOnlyRootFilesystem() bool

func (*SecurityContext) GetRunAsNonRoot

func (m *SecurityContext) GetRunAsNonRoot() bool

func (*SecurityContext) GetRunAsUser

func (m *SecurityContext) GetRunAsUser() int64

func (*SecurityContext) GetSeLinuxOptions

func (m *SecurityContext) GetSeLinuxOptions() *SELinuxOptions

func (*SecurityContext) Marshal

func (m *SecurityContext) Marshal() (dAtA []byte, err error)

func (*SecurityContext) MarshalTo

func (m *SecurityContext) MarshalTo(dAtA []byte) (int, error)

func (*SecurityContext) ProtoMessage

func (*SecurityContext) ProtoMessage()

func (*SecurityContext) Reset

func (m *SecurityContext) Reset()

func (*SecurityContext) Size

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

func (*SecurityContext) String

func (m *SecurityContext) String() string

func (*SecurityContext) Unmarshal

func (m *SecurityContext) Unmarshal(dAtA []byte) error

type SerializedReference

type SerializedReference struct {
	// The reference to an object in the system.
	// +optional
	Reference        *ObjectReference `protobuf:"bytes,1,opt,name=reference" json:"reference,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

SerializedReference is a reference to serialized object.

func (*SerializedReference) Descriptor

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

func (*SerializedReference) GetReference

func (m *SerializedReference) GetReference() *ObjectReference

func (*SerializedReference) Marshal

func (m *SerializedReference) Marshal() (dAtA []byte, err error)

func (*SerializedReference) MarshalTo

func (m *SerializedReference) MarshalTo(dAtA []byte) (int, error)

func (*SerializedReference) ProtoMessage

func (*SerializedReference) ProtoMessage()

func (*SerializedReference) Reset

func (m *SerializedReference) Reset()

func (*SerializedReference) Size

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

func (*SerializedReference) String

func (m *SerializedReference) String() string

func (*SerializedReference) Unmarshal

func (m *SerializedReference) Unmarshal(dAtA []byte) error

type Service

type Service struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec defines the behavior of a service.
	// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status
	// +optional
	Spec *ServiceSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte         `json:"-"`
}

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) Descriptor

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

func (*Service) GetMetadata

func (*Service) GetSpec

func (m *Service) GetSpec() *ServiceSpec

func (*Service) GetStatus

func (m *Service) GetStatus() *ServiceStatus

func (*Service) Marshal

func (m *Service) Marshal() (dAtA []byte, err error)

func (*Service) MarshalTo

func (m *Service) MarshalTo(dAtA []byte) (int, error)

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) Reset

func (m *Service) Reset()

func (*Service) Size

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

func (*Service) String

func (m *Service) String() string

func (*Service) Unmarshal

func (m *Service) Unmarshal(dAtA []byte) error

type ServiceAccount

type ServiceAccount struct {
	// Standard object's metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// 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 `protobuf:"bytes,2,rep,name=secrets" json:"secrets,omitempty"`
	// 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 `protobuf:"bytes,3,rep,name=imagePullSecrets" json:"imagePullSecrets,omitempty"`
	// AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted.
	// Can be overridden at the pod level.
	// +optional
	AutomountServiceAccountToken *bool  `protobuf:"varint,4,opt,name=automountServiceAccountToken" json:"automountServiceAccountToken,omitempty"`
	XXX_unrecognized             []byte `json:"-"`
}

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) Descriptor

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

func (*ServiceAccount) GetAutomountServiceAccountToken added in v0.3.0

func (m *ServiceAccount) GetAutomountServiceAccountToken() bool

func (*ServiceAccount) GetImagePullSecrets

func (m *ServiceAccount) GetImagePullSecrets() []*LocalObjectReference

func (*ServiceAccount) GetMetadata

func (*ServiceAccount) GetSecrets

func (m *ServiceAccount) GetSecrets() []*ObjectReference

func (*ServiceAccount) Marshal

func (m *ServiceAccount) Marshal() (dAtA []byte, err error)

func (*ServiceAccount) MarshalTo

func (m *ServiceAccount) MarshalTo(dAtA []byte) (int, error)

func (*ServiceAccount) ProtoMessage

func (*ServiceAccount) ProtoMessage()

func (*ServiceAccount) Reset

func (m *ServiceAccount) Reset()

func (*ServiceAccount) Size

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

func (*ServiceAccount) String

func (m *ServiceAccount) String() string

func (*ServiceAccount) Unmarshal

func (m *ServiceAccount) Unmarshal(dAtA []byte) error

type ServiceAccountList

type ServiceAccountList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of ServiceAccounts.
	// More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts
	Items            []*ServiceAccount `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte            `json:"-"`
}

ServiceAccountList is a list of ServiceAccount objects

func (*ServiceAccountList) Descriptor

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

func (*ServiceAccountList) GetItems

func (m *ServiceAccountList) GetItems() []*ServiceAccount

func (*ServiceAccountList) GetMetadata

func (*ServiceAccountList) Marshal

func (m *ServiceAccountList) Marshal() (dAtA []byte, err error)

func (*ServiceAccountList) MarshalTo

func (m *ServiceAccountList) MarshalTo(dAtA []byte) (int, error)

func (*ServiceAccountList) ProtoMessage

func (*ServiceAccountList) ProtoMessage()

func (*ServiceAccountList) Reset

func (m *ServiceAccountList) Reset()

func (*ServiceAccountList) Size

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

func (*ServiceAccountList) String

func (m *ServiceAccountList) String() string

func (*ServiceAccountList) Unmarshal

func (m *ServiceAccountList) Unmarshal(dAtA []byte) error

type ServiceList

type ServiceList struct {
	// Standard list metadata.
	// More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
	// +optional
	Metadata *k8s_io_kubernetes_pkg_apis_meta_v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// List of services
	Items            []*Service `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_unrecognized []byte     `json:"-"`
}

ServiceList holds a list of services.

func (*ServiceList) Descriptor

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

func (*ServiceList) GetItems

func (m *ServiceList) GetItems() []*Service

func (*ServiceList) GetMetadata

func (*ServiceList) Marshal

func (m *ServiceList) Marshal() (dAtA []byte, err error)

func (*ServiceList) MarshalTo

func (m *ServiceList) MarshalTo(dAtA []byte) (int, error)

func (*ServiceList) ProtoMessage

func (*ServiceList) ProtoMessage()

func (*ServiceList) Reset

func (m *ServiceList) Reset()

func (*ServiceList) Size

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

func (*ServiceList) String

func (m *ServiceList) String() string

func (*ServiceList) Unmarshal

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// The IP protocol for this port. Supports "TCP" and "UDP".
	// Default is TCP.
	// +optional
	Protocol *string `protobuf:"bytes,2,opt,name=protocol" json:"protocol,omitempty"`
	// The port that will be exposed by this service.
	Port *int32 `protobuf:"varint,3,opt,name=port" json:"port,omitempty"`
	// 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 *k8s_io_kubernetes_pkg_util_intstr.IntOrString `protobuf:"bytes,4,opt,name=targetPort" json:"targetPort,omitempty"`
	// 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 `protobuf:"varint,5,opt,name=nodePort" json:"nodePort,omitempty"`
	XXX_unrecognized []byte `json:"-"`
}

ServicePort contains information on service's port.

func (*ServicePort) Descriptor

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

func (*ServicePort) GetName

func (m *ServicePort) GetName() string

func (*ServicePort) GetNodePort

func (m *ServicePort) GetNodePort() int32

func (*ServicePort) GetPort

func (m *ServicePort) GetPort() int32

func (*ServicePort) GetProtocol

func (m *ServicePort) GetProtocol() string

func (*ServicePort) GetTargetPort

func (*ServicePort) Marshal

func (m *ServicePort) Marshal() (dAtA []byte, err error)

func (*ServicePort) MarshalTo

func (m *ServicePort) MarshalTo(dAtA []byte) (int, error)

func (*ServicePort) ProtoMessage

func (*ServicePort) ProtoMessage()

func (*ServicePort) Reset

func (m *ServicePort) Reset()

func (*ServicePort) Size

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

func (*ServicePort) String

func (m *ServicePort) String() string

func (*ServicePort) Unmarshal

func (m *ServicePort) Unmarshal(dAtA []byte) error

type ServiceProxyOptions

type ServiceProxyOptions struct {
	// 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 `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ServiceProxyOptions is the query options to a Service's proxy call.

func (*ServiceProxyOptions) Descriptor

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

func (*ServiceProxyOptions) GetPath

func (m *ServiceProxyOptions) GetPath() string

func (*ServiceProxyOptions) Marshal

func (m *ServiceProxyOptions) Marshal() (dAtA []byte, err error)

func (*ServiceProxyOptions) MarshalTo

func (m *ServiceProxyOptions) MarshalTo(dAtA []byte) (int, error)

func (*ServiceProxyOptions) ProtoMessage

func (*ServiceProxyOptions) ProtoMessage()

func (*ServiceProxyOptions) Reset

func (m *ServiceProxyOptions) Reset()

func (*ServiceProxyOptions) Size

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

func (*ServiceProxyOptions) String

func (m *ServiceProxyOptions) String() string

func (*ServiceProxyOptions) Unmarshal

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 `protobuf:"bytes,1,rep,name=ports" json:"ports,omitempty"`
	// 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 `` /* 136-byte string literal not displayed */
	// 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 `protobuf:"bytes,3,opt,name=clusterIP" json:"clusterIP,omitempty"`
	// 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 *string `protobuf:"bytes,4,opt,name=type" json:"type,omitempty"`
	// 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 `protobuf:"bytes,5,rep,name=externalIPs" json:"externalIPs,omitempty"`
	// 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 `protobuf:"bytes,6,rep,name=deprecatedPublicIPs" json:"deprecatedPublicIPs,omitempty"`
	// 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 *string `protobuf:"bytes,7,opt,name=sessionAffinity" json:"sessionAffinity,omitempty"`
	// 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 `protobuf:"bytes,8,opt,name=loadBalancerIP" json:"loadBalancerIP,omitempty"`
	// 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 `protobuf:"bytes,9,rep,name=loadBalancerSourceRanges" json:"loadBalancerSourceRanges,omitempty"`
	// 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 `protobuf:"bytes,10,opt,name=externalName" json:"externalName,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ServiceSpec describes the attributes that a user creates on a service.

func (*ServiceSpec) Descriptor

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

func (*ServiceSpec) GetClusterIP

func (m *ServiceSpec) GetClusterIP() string

func (*ServiceSpec) GetDeprecatedPublicIPs

func (m *ServiceSpec) GetDeprecatedPublicIPs() []string

func (*ServiceSpec) GetExternalIPs

func (m *ServiceSpec) GetExternalIPs() []string

func (*ServiceSpec) GetExternalName

func (m *ServiceSpec) GetExternalName() string

func (*ServiceSpec) GetLoadBalancerIP

func (m *ServiceSpec) GetLoadBalancerIP() string

func (*ServiceSpec) GetLoadBalancerSourceRanges

func (m *ServiceSpec) GetLoadBalancerSourceRanges() []string

func (*ServiceSpec) GetPorts

func (m *ServiceSpec) GetPorts() []*ServicePort

func (*ServiceSpec) GetSelector

func (m *ServiceSpec) GetSelector() map[string]string

func (*ServiceSpec) GetSessionAffinity

func (m *ServiceSpec) GetSessionAffinity() string

func (*ServiceSpec) GetType

func (m *ServiceSpec) GetType() string

func (*ServiceSpec) Marshal

func (m *ServiceSpec) Marshal() (dAtA []byte, err error)

func (*ServiceSpec) MarshalTo

func (m *ServiceSpec) MarshalTo(dAtA []byte) (int, error)

func (*ServiceSpec) ProtoMessage

func (*ServiceSpec) ProtoMessage()

func (*ServiceSpec) Reset

func (m *ServiceSpec) Reset()

func (*ServiceSpec) Size

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

func (*ServiceSpec) String

func (m *ServiceSpec) String() string

func (*ServiceSpec) Unmarshal

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 `protobuf:"bytes,1,opt,name=loadBalancer" json:"loadBalancer,omitempty"`
	XXX_unrecognized []byte              `json:"-"`
}

ServiceStatus represents the current status of a service.

func (*ServiceStatus) Descriptor

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

func (*ServiceStatus) GetLoadBalancer

func (m *ServiceStatus) GetLoadBalancer() *LoadBalancerStatus

func (*ServiceStatus) Marshal

func (m *ServiceStatus) Marshal() (dAtA []byte, err error)

func (*ServiceStatus) MarshalTo

func (m *ServiceStatus) MarshalTo(dAtA []byte) (int, error)

func (*ServiceStatus) ProtoMessage

func (*ServiceStatus) ProtoMessage()

func (*ServiceStatus) Reset

func (m *ServiceStatus) Reset()

func (*ServiceStatus) Size

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

func (*ServiceStatus) String

func (m *ServiceStatus) String() string

func (*ServiceStatus) Unmarshal

func (m *ServiceStatus) Unmarshal(dAtA []byte) error

type Sysctl added in v0.3.0

type Sysctl struct {
	Name             *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Value            *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

func (*Sysctl) Descriptor added in v0.3.0

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

func (*Sysctl) GetName added in v0.3.0

func (m *Sysctl) GetName() string

func (*Sysctl) GetValue added in v0.3.0

func (m *Sysctl) GetValue() string

func (*Sysctl) Marshal added in v0.3.0

func (m *Sysctl) Marshal() (dAtA []byte, err error)

func (*Sysctl) MarshalTo added in v0.3.0

func (m *Sysctl) MarshalTo(dAtA []byte) (int, error)

func (*Sysctl) ProtoMessage added in v0.3.0

func (*Sysctl) ProtoMessage()

func (*Sysctl) Reset added in v0.3.0

func (m *Sysctl) Reset()

func (*Sysctl) Size added in v0.3.0

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

func (*Sysctl) String added in v0.3.0

func (m *Sysctl) String() string

func (*Sysctl) Unmarshal added in v0.3.0

func (m *Sysctl) Unmarshal(dAtA []byte) error

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             *k8s_io_kubernetes_pkg_util_intstr.IntOrString `protobuf:"bytes,1,opt,name=port" json:"port,omitempty"`
	XXX_unrecognized []byte                                         `json:"-"`
}

TCPSocketAction describes an action based on opening a socket

func (*TCPSocketAction) Descriptor

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

func (*TCPSocketAction) GetPort

func (*TCPSocketAction) Marshal

func (m *TCPSocketAction) Marshal() (dAtA []byte, err error)

func (*TCPSocketAction) MarshalTo

func (m *TCPSocketAction) MarshalTo(dAtA []byte) (int, error)

func (*TCPSocketAction) ProtoMessage

func (*TCPSocketAction) ProtoMessage()

func (*TCPSocketAction) Reset

func (m *TCPSocketAction) Reset()

func (*TCPSocketAction) Size

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

func (*TCPSocketAction) String

func (m *TCPSocketAction) String() string

func (*TCPSocketAction) Unmarshal

func (m *TCPSocketAction) Unmarshal(dAtA []byte) error

type Taint

type Taint struct {
	// Required. The taint key to be applied to a node.
	Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
	// Required. The taint value corresponding to the taint key.
	// +optional
	Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
	// Required. The effect of the taint on pods
	// that do not tolerate the taint.
	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
	Effect *string `protobuf:"bytes,3,opt,name=effect" json:"effect,omitempty"`
	// TimeAdded represents the time at which the taint was added.
	// It is only written for NoExecute taints.
	// +optional
	TimeAdded        *k8s_io_kubernetes_pkg_apis_meta_v1.Time `protobuf:"bytes,4,opt,name=timeAdded" json:"timeAdded,omitempty"`
	XXX_unrecognized []byte                                   `json:"-"`
}

The node this Taint is attached to has the effect "effect" on any pod that that does not tolerate the Taint.

func (*Taint) Descriptor

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

func (*Taint) GetEffect

func (m *Taint) GetEffect() string

func (*Taint) GetKey

func (m *Taint) GetKey() string

func (*Taint) GetTimeAdded added in v0.3.0

func (m *Taint) GetTimeAdded() *k8s_io_kubernetes_pkg_apis_meta_v1.Time

func (*Taint) GetValue

func (m *Taint) GetValue() string

func (*Taint) Marshal

func (m *Taint) Marshal() (dAtA []byte, err error)

func (*Taint) MarshalTo

func (m *Taint) MarshalTo(dAtA []byte) (int, error)

func (*Taint) ProtoMessage

func (*Taint) ProtoMessage()

func (*Taint) Reset

func (m *Taint) Reset()

func (*Taint) Size

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

func (*Taint) String

func (m *Taint) String() string

func (*Taint) Unmarshal

func (m *Taint) Unmarshal(dAtA []byte) error

type Toleration

type Toleration struct {
	// Key is the taint key that the toleration applies to. Empty means match all taint keys.
	// If the key is empty, operator must be Exists; this combination means to match all values and all keys.
	// +optional
	Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
	// 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 *string `protobuf:"bytes,2,opt,name=operator" json:"operator,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
	// Effect indicates the taint effect to match. Empty means match all taint effects.
	// When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
	// +optional
	Effect *string `protobuf:"bytes,4,opt,name=effect" json:"effect,omitempty"`
	// TolerationSeconds represents the period of time the toleration (which must be
	// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
	// it is not set, which means tolerate the taint forever (do not evict). Zero and
	// negative values will be treated as 0 (evict immediately) by the system.
	// +optional
	TolerationSeconds *int64 `protobuf:"varint,5,opt,name=tolerationSeconds" json:"tolerationSeconds,omitempty"`
	XXX_unrecognized  []byte `json:"-"`
}

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

func (*Toleration) Descriptor

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

func (*Toleration) GetEffect

func (m *Toleration) GetEffect() string

func (*Toleration) GetKey

func (m *Toleration) GetKey() string

func (*Toleration) GetOperator

func (m *Toleration) GetOperator() string

func (*Toleration) GetTolerationSeconds added in v0.3.0

func (m *Toleration) GetTolerationSeconds() int64

func (*Toleration) GetValue

func (m *Toleration) GetValue() string

func (*Toleration) Marshal

func (m *Toleration) Marshal() (dAtA []byte, err error)

func (*Toleration) MarshalTo

func (m *Toleration) MarshalTo(dAtA []byte) (int, error)

func (*Toleration) ProtoMessage

func (*Toleration) ProtoMessage()

func (*Toleration) Reset

func (m *Toleration) Reset()

func (*Toleration) Size

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

func (*Toleration) String

func (m *Toleration) String() string

func (*Toleration) Unmarshal

func (m *Toleration) Unmarshal(dAtA []byte) error

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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     *VolumeSource `protobuf:"bytes,2,opt,name=volumeSource" json:"volumeSource,omitempty"`
	XXX_unrecognized []byte        `json:"-"`
}

Volume represents a named volume in a pod that may be accessed by any container in the pod.

func (*Volume) Descriptor

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

func (*Volume) GetName

func (m *Volume) GetName() string

func (*Volume) GetVolumeSource

func (m *Volume) GetVolumeSource() *VolumeSource

func (*Volume) Marshal

func (m *Volume) Marshal() (dAtA []byte, err error)

func (*Volume) MarshalTo

func (m *Volume) MarshalTo(dAtA []byte) (int, error)

func (*Volume) ProtoMessage

func (*Volume) ProtoMessage()

func (*Volume) Reset

func (m *Volume) Reset()

func (*Volume) Size

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

func (*Volume) String

func (m *Volume) String() string

func (*Volume) Unmarshal

func (m *Volume) Unmarshal(dAtA []byte) error

type VolumeMount

type VolumeMount struct {
	// This must match the Name of a Volume.
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Mounted read-only if true, read-write otherwise (false or unspecified).
	// Defaults to false.
	// +optional
	ReadOnly *bool `protobuf:"varint,2,opt,name=readOnly" json:"readOnly,omitempty"`
	// Path within the container at which the volume should be mounted.  Must
	// not contain ':'.
	MountPath *string `protobuf:"bytes,3,opt,name=mountPath" json:"mountPath,omitempty"`
	// Path within the volume from which the container's volume should be mounted.
	// Defaults to "" (volume's root).
	// +optional
	SubPath          *string `protobuf:"bytes,4,opt,name=subPath" json:"subPath,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

VolumeMount describes a mounting of a Volume within a container.

func (*VolumeMount) Descriptor

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

func (*VolumeMount) GetMountPath

func (m *VolumeMount) GetMountPath() string

func (*VolumeMount) GetName

func (m *VolumeMount) GetName() string

func (*VolumeMount) GetReadOnly

func (m *VolumeMount) GetReadOnly() bool

func (*VolumeMount) GetSubPath

func (m *VolumeMount) GetSubPath() string

func (*VolumeMount) Marshal

func (m *VolumeMount) Marshal() (dAtA []byte, err error)

func (*VolumeMount) MarshalTo

func (m *VolumeMount) MarshalTo(dAtA []byte) (int, error)

func (*VolumeMount) ProtoMessage

func (*VolumeMount) ProtoMessage()

func (*VolumeMount) Reset

func (m *VolumeMount) Reset()

func (*VolumeMount) Size

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

func (*VolumeMount) String

func (m *VolumeMount) String() string

func (*VolumeMount) Unmarshal

func (m *VolumeMount) Unmarshal(dAtA []byte) error

type VolumeProjection added in v0.3.0

type VolumeProjection struct {
	// information about the secret data to project
	Secret *SecretProjection `protobuf:"bytes,1,opt,name=secret" json:"secret,omitempty"`
	// information about the downwardAPI data to project
	DownwardAPI *DownwardAPIProjection `protobuf:"bytes,2,opt,name=downwardAPI" json:"downwardAPI,omitempty"`
	// information about the configMap data to project
	ConfigMap        *ConfigMapProjection `protobuf:"bytes,3,opt,name=configMap" json:"configMap,omitempty"`
	XXX_unrecognized []byte               `json:"-"`
}

Projection that may be projected along with other supported volume types

func (*VolumeProjection) Descriptor added in v0.3.0

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

func (*VolumeProjection) GetConfigMap added in v0.3.0

func (m *VolumeProjection) GetConfigMap() *ConfigMapProjection

func (*VolumeProjection) GetDownwardAPI added in v0.3.0

func (m *VolumeProjection) GetDownwardAPI() *DownwardAPIProjection

func (*VolumeProjection) GetSecret added in v0.3.0

func (m *VolumeProjection) GetSecret() *SecretProjection

func (*VolumeProjection) Marshal added in v0.3.0

func (m *VolumeProjection) Marshal() (dAtA []byte, err error)

func (*VolumeProjection) MarshalTo added in v0.3.0

func (m *VolumeProjection) MarshalTo(dAtA []byte) (int, error)

func (*VolumeProjection) ProtoMessage added in v0.3.0

func (*VolumeProjection) ProtoMessage()

func (*VolumeProjection) Reset added in v0.3.0

func (m *VolumeProjection) Reset()

func (*VolumeProjection) Size added in v0.3.0

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

func (*VolumeProjection) String added in v0.3.0

func (m *VolumeProjection) String() string

func (*VolumeProjection) Unmarshal added in v0.3.0

func (m *VolumeProjection) 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 `protobuf:"bytes,1,opt,name=hostPath" json:"hostPath,omitempty"`
	// EmptyDir represents a temporary directory that shares a pod's lifetime.
	// More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
	// +optional
	EmptyDir *EmptyDirVolumeSource `protobuf:"bytes,2,opt,name=emptyDir" json:"emptyDir,omitempty"`
	// 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 `protobuf:"bytes,3,opt,name=gcePersistentDisk" json:"gcePersistentDisk,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=awsElasticBlockStore" json:"awsElasticBlockStore,omitempty"`
	// GitRepo represents a git repository at a particular revision.
	// +optional
	GitRepo *GitRepoVolumeSource `protobuf:"bytes,5,opt,name=gitRepo" json:"gitRepo,omitempty"`
	// Secret represents a secret that should populate this volume.
	// More info: http://kubernetes.io/docs/user-guide/volumes#secrets
	// +optional
	Secret *SecretVolumeSource `protobuf:"bytes,6,opt,name=secret" json:"secret,omitempty"`
	// 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 `protobuf:"bytes,7,opt,name=nfs" json:"nfs,omitempty"`
	// 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 `protobuf:"bytes,8,opt,name=iscsi" json:"iscsi,omitempty"`
	// 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 `protobuf:"bytes,9,opt,name=glusterfs" json:"glusterfs,omitempty"`
	// 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 `protobuf:"bytes,10,opt,name=persistentVolumeClaim" json:"persistentVolumeClaim,omitempty"`
	// 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 `protobuf:"bytes,11,opt,name=rbd" json:"rbd,omitempty"`
	// 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 `protobuf:"bytes,12,opt,name=flexVolume" json:"flexVolume,omitempty"`
	// 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 `protobuf:"bytes,13,opt,name=cinder" json:"cinder,omitempty"`
	// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
	// +optional
	Cephfs *CephFSVolumeSource `protobuf:"bytes,14,opt,name=cephfs" json:"cephfs,omitempty"`
	// Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
	// +optional
	Flocker *FlockerVolumeSource `protobuf:"bytes,15,opt,name=flocker" json:"flocker,omitempty"`
	// DownwardAPI represents downward API about the pod that should populate this volume
	// +optional
	DownwardAPI *DownwardAPIVolumeSource `protobuf:"bytes,16,opt,name=downwardAPI" json:"downwardAPI,omitempty"`
	// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
	// +optional
	Fc *FCVolumeSource `protobuf:"bytes,17,opt,name=fc" json:"fc,omitempty"`
	// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
	// +optional
	AzureFile *AzureFileVolumeSource `protobuf:"bytes,18,opt,name=azureFile" json:"azureFile,omitempty"`
	// ConfigMap represents a configMap that should populate this volume
	// +optional
	ConfigMap *ConfigMapVolumeSource `protobuf:"bytes,19,opt,name=configMap" json:"configMap,omitempty"`
	// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
	// +optional
	VsphereVolume *VsphereVirtualDiskVolumeSource `protobuf:"bytes,20,opt,name=vsphereVolume" json:"vsphereVolume,omitempty"`
	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
	// +optional
	Quobyte *QuobyteVolumeSource `protobuf:"bytes,21,opt,name=quobyte" json:"quobyte,omitempty"`
	// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
	// +optional
	AzureDisk *AzureDiskVolumeSource `protobuf:"bytes,22,opt,name=azureDisk" json:"azureDisk,omitempty"`
	// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
	PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `protobuf:"bytes,23,opt,name=photonPersistentDisk" json:"photonPersistentDisk,omitempty"`
	// Items for all in one resources secrets, configmaps, and downward API
	Projected *ProjectedVolumeSource `protobuf:"bytes,26,opt,name=projected" json:"projected,omitempty"`
	// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
	// +optional
	PortworxVolume *PortworxVolumeSource `protobuf:"bytes,24,opt,name=portworxVolume" json:"portworxVolume,omitempty"`
	// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
	// +optional
	ScaleIO          *ScaleIOVolumeSource `protobuf:"bytes,25,opt,name=scaleIO" json:"scaleIO,omitempty"`
	XXX_unrecognized []byte               `json:"-"`
}

Represents the source of a volume to mount. Only one of its members may be specified.

func (*VolumeSource) Descriptor

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

func (*VolumeSource) GetAwsElasticBlockStore

func (m *VolumeSource) GetAwsElasticBlockStore() *AWSElasticBlockStoreVolumeSource

func (*VolumeSource) GetAzureDisk

func (m *VolumeSource) GetAzureDisk() *AzureDiskVolumeSource

func (*VolumeSource) GetAzureFile

func (m *VolumeSource) GetAzureFile() *AzureFileVolumeSource

func (*VolumeSource) GetCephfs

func (m *VolumeSource) GetCephfs() *CephFSVolumeSource

func (*VolumeSource) GetCinder

func (m *VolumeSource) GetCinder() *CinderVolumeSource

func (*VolumeSource) GetConfigMap

func (m *VolumeSource) GetConfigMap() *ConfigMapVolumeSource

func (*VolumeSource) GetDownwardAPI

func (m *VolumeSource) GetDownwardAPI() *DownwardAPIVolumeSource

func (*VolumeSource) GetEmptyDir

func (m *VolumeSource) GetEmptyDir() *EmptyDirVolumeSource

func (*VolumeSource) GetFc

func (m *VolumeSource) GetFc() *FCVolumeSource

func (*VolumeSource) GetFlexVolume

func (m *VolumeSource) GetFlexVolume() *FlexVolumeSource

func (*VolumeSource) GetFlocker

func (m *VolumeSource) GetFlocker() *FlockerVolumeSource

func (*VolumeSource) GetGcePersistentDisk

func (m *VolumeSource) GetGcePersistentDisk() *GCEPersistentDiskVolumeSource

func (*VolumeSource) GetGitRepo

func (m *VolumeSource) GetGitRepo() *GitRepoVolumeSource

func (*VolumeSource) GetGlusterfs

func (m *VolumeSource) GetGlusterfs() *GlusterfsVolumeSource

func (*VolumeSource) GetHostPath

func (m *VolumeSource) GetHostPath() *HostPathVolumeSource

func (*VolumeSource) GetIscsi

func (m *VolumeSource) GetIscsi() *ISCSIVolumeSource

func (*VolumeSource) GetNfs

func (m *VolumeSource) GetNfs() *NFSVolumeSource

func (*VolumeSource) GetPersistentVolumeClaim

func (m *VolumeSource) GetPersistentVolumeClaim() *PersistentVolumeClaimVolumeSource

func (*VolumeSource) GetPhotonPersistentDisk

func (m *VolumeSource) GetPhotonPersistentDisk() *PhotonPersistentDiskVolumeSource

func (*VolumeSource) GetPortworxVolume added in v0.3.0

func (m *VolumeSource) GetPortworxVolume() *PortworxVolumeSource

func (*VolumeSource) GetProjected added in v0.3.0

func (m *VolumeSource) GetProjected() *ProjectedVolumeSource

func (*VolumeSource) GetQuobyte

func (m *VolumeSource) GetQuobyte() *QuobyteVolumeSource

func (*VolumeSource) GetRbd

func (m *VolumeSource) GetRbd() *RBDVolumeSource

func (*VolumeSource) GetScaleIO added in v0.3.0

func (m *VolumeSource) GetScaleIO() *ScaleIOVolumeSource

func (*VolumeSource) GetSecret

func (m *VolumeSource) GetSecret() *SecretVolumeSource

func (*VolumeSource) GetVsphereVolume

func (m *VolumeSource) GetVsphereVolume() *VsphereVirtualDiskVolumeSource

func (*VolumeSource) Marshal

func (m *VolumeSource) Marshal() (dAtA []byte, err error)

func (*VolumeSource) MarshalTo

func (m *VolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*VolumeSource) ProtoMessage

func (*VolumeSource) ProtoMessage()

func (*VolumeSource) Reset

func (m *VolumeSource) Reset()

func (*VolumeSource) Size

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

func (*VolumeSource) String

func (m *VolumeSource) String() string

func (*VolumeSource) Unmarshal

func (m *VolumeSource) Unmarshal(dAtA []byte) error

type VsphereVirtualDiskVolumeSource

type VsphereVirtualDiskVolumeSource struct {
	// Path that identifies vSphere volume vmdk
	VolumePath *string `protobuf:"bytes,1,opt,name=volumePath" json:"volumePath,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=fsType" json:"fsType,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

Represents a vSphere volume resource.

func (*VsphereVirtualDiskVolumeSource) Descriptor

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

func (*VsphereVirtualDiskVolumeSource) GetFsType

func (m *VsphereVirtualDiskVolumeSource) GetFsType() string

func (*VsphereVirtualDiskVolumeSource) GetVolumePath

func (m *VsphereVirtualDiskVolumeSource) GetVolumePath() string

func (*VsphereVirtualDiskVolumeSource) Marshal

func (m *VsphereVirtualDiskVolumeSource) Marshal() (dAtA []byte, err error)

func (*VsphereVirtualDiskVolumeSource) MarshalTo

func (m *VsphereVirtualDiskVolumeSource) MarshalTo(dAtA []byte) (int, error)

func (*VsphereVirtualDiskVolumeSource) ProtoMessage

func (*VsphereVirtualDiskVolumeSource) ProtoMessage()

func (*VsphereVirtualDiskVolumeSource) Reset

func (m *VsphereVirtualDiskVolumeSource) Reset()

func (*VsphereVirtualDiskVolumeSource) Size

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

func (*VsphereVirtualDiskVolumeSource) String

func (*VsphereVirtualDiskVolumeSource) Unmarshal

func (m *VsphereVirtualDiskVolumeSource) Unmarshal(dAtA []byte) error

type WeightedPodAffinityTerm

type WeightedPodAffinityTerm struct {
	// weight associated with matching the corresponding podAffinityTerm,
	// in the range 1-100.
	Weight *int32 `protobuf:"varint,1,opt,name=weight" json:"weight,omitempty"`
	// Required. A pod affinity term, associated with the corresponding weight.
	PodAffinityTerm  *PodAffinityTerm `protobuf:"bytes,2,opt,name=podAffinityTerm" json:"podAffinityTerm,omitempty"`
	XXX_unrecognized []byte           `json:"-"`
}

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

func (*WeightedPodAffinityTerm) Descriptor

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

func (*WeightedPodAffinityTerm) GetPodAffinityTerm

func (m *WeightedPodAffinityTerm) GetPodAffinityTerm() *PodAffinityTerm

func (*WeightedPodAffinityTerm) GetWeight

func (m *WeightedPodAffinityTerm) GetWeight() int32

func (*WeightedPodAffinityTerm) Marshal

func (m *WeightedPodAffinityTerm) Marshal() (dAtA []byte, err error)

func (*WeightedPodAffinityTerm) MarshalTo

func (m *WeightedPodAffinityTerm) MarshalTo(dAtA []byte) (int, error)

func (*WeightedPodAffinityTerm) ProtoMessage

func (*WeightedPodAffinityTerm) ProtoMessage()

func (*WeightedPodAffinityTerm) Reset

func (m *WeightedPodAffinityTerm) Reset()

func (*WeightedPodAffinityTerm) Size

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

func (*WeightedPodAffinityTerm) String

func (m *WeightedPodAffinityTerm) String() string

func (*WeightedPodAffinityTerm) Unmarshal

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