v1

package
v0.26.2 Latest Latest
Warning

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

Go to latest
Published: Mar 1, 2023 License: Apache-2.0 Imports: 12 Imported by: 14,232

Documentation

Index

Constants

View Source
const (
	ControllerRevisionHashLabelKey = "controller-revision-hash"
	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
	DeprecatedRollbackTo           = "deprecated.deployment.rollback.to"
	DeprecatedTemplateGeneration   = "deprecated.daemonset.template.generation"
	StatefulSetPodNameLabel        = "statefulset.kubernetes.io/pod-name"
)
View Source
const (
	// DefaultDaemonSetUniqueLabelKey is the default label key that is added
	// to existing DaemonSet pods to distinguish between old and new
	// DaemonSet pods during DaemonSet template updates.
	DefaultDaemonSetUniqueLabelKey = ControllerRevisionHashLabelKey
)
View Source
const (
	// DefaultDeploymentUniqueLabelKey is the default key of the selector that is added
	// to existing ReplicaSets (and label key that is added to its pods) to prevent the existing ReplicaSets
	// to select new pods (and old pods being select by new ReplicaSet).
	DefaultDeploymentUniqueLabelKey string = "pod-template-hash"
)
View Source
const GroupName = "apps"

GroupName is the group name use in this package

Variables

View Source
var (
	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)

	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type ControllerRevision

type ControllerRevision struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Data is the serialized representation of the state.
	Data runtime.RawExtension `json:"data,omitempty" protobuf:"bytes,2,opt,name=data"`

	// Revision indicates the revision of the state represented by Data.
	Revision int64 `json:"revision" protobuf:"varint,3,opt,name=revision"`
}

ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

func (*ControllerRevision) DeepCopy

func (in *ControllerRevision) DeepCopy() *ControllerRevision

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevision.

func (*ControllerRevision) DeepCopyInto

func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ControllerRevision) DeepCopyObject

func (in *ControllerRevision) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ControllerRevision) Descriptor

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

func (*ControllerRevision) Marshal

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

func (*ControllerRevision) MarshalTo

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

func (*ControllerRevision) MarshalToSizedBuffer added in v0.16.4

func (m *ControllerRevision) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ControllerRevision) ProtoMessage

func (*ControllerRevision) ProtoMessage()

func (*ControllerRevision) Reset

func (m *ControllerRevision) Reset()

func (*ControllerRevision) Size

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

func (*ControllerRevision) String

func (this *ControllerRevision) String() string

func (ControllerRevision) SwaggerDoc

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

func (*ControllerRevision) Unmarshal

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

func (*ControllerRevision) XXX_DiscardUnknown added in v0.16.4

func (m *ControllerRevision) XXX_DiscardUnknown()

func (*ControllerRevision) XXX_Marshal added in v0.16.4

func (m *ControllerRevision) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ControllerRevision) XXX_Merge added in v0.16.4

func (m *ControllerRevision) XXX_Merge(src proto.Message)

func (*ControllerRevision) XXX_Size added in v0.16.4

func (m *ControllerRevision) XXX_Size() int

func (*ControllerRevision) XXX_Unmarshal added in v0.16.4

func (m *ControllerRevision) XXX_Unmarshal(b []byte) error

type ControllerRevisionList

type ControllerRevisionList struct {
	metav1.TypeMeta `json:",inline"`

	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

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

ControllerRevisionList is a resource containing a list of ControllerRevision objects.

func (*ControllerRevisionList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevisionList.

func (*ControllerRevisionList) DeepCopyInto

func (in *ControllerRevisionList) DeepCopyInto(out *ControllerRevisionList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ControllerRevisionList) DeepCopyObject

func (in *ControllerRevisionList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ControllerRevisionList) Descriptor

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

func (*ControllerRevisionList) Marshal

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

func (*ControllerRevisionList) MarshalTo

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

func (*ControllerRevisionList) MarshalToSizedBuffer added in v0.16.4

func (m *ControllerRevisionList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ControllerRevisionList) ProtoMessage

func (*ControllerRevisionList) ProtoMessage()

func (*ControllerRevisionList) Reset

func (m *ControllerRevisionList) Reset()

func (*ControllerRevisionList) Size

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

func (*ControllerRevisionList) String

func (this *ControllerRevisionList) String() string

func (ControllerRevisionList) SwaggerDoc

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

func (*ControllerRevisionList) Unmarshal

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

func (*ControllerRevisionList) XXX_DiscardUnknown added in v0.16.4

func (m *ControllerRevisionList) XXX_DiscardUnknown()

func (*ControllerRevisionList) XXX_Marshal added in v0.16.4

func (m *ControllerRevisionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ControllerRevisionList) XXX_Merge added in v0.16.4

func (m *ControllerRevisionList) XXX_Merge(src proto.Message)

func (*ControllerRevisionList) XXX_Size added in v0.16.4

func (m *ControllerRevisionList) XXX_Size() int

func (*ControllerRevisionList) XXX_Unmarshal added in v0.16.4

func (m *ControllerRevisionList) XXX_Unmarshal(b []byte) error

type DaemonSet

type DaemonSet struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// The desired behavior of this daemon set.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	// +optional
	Spec DaemonSetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// The current status of this daemon set. This data may be
	// out of date by some window of time.
	// Populated by the system.
	// Read-only.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	// +optional
	Status DaemonSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

DaemonSet represents the configuration of a daemon set.

func (*DaemonSet) DeepCopy

func (in *DaemonSet) DeepCopy() *DaemonSet

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSet.

func (*DaemonSet) DeepCopyInto

func (in *DaemonSet) DeepCopyInto(out *DaemonSet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSet) DeepCopyObject

func (in *DaemonSet) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*DaemonSet) Descriptor

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

func (*DaemonSet) Marshal

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

func (*DaemonSet) MarshalTo

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

func (*DaemonSet) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSet) ProtoMessage

func (*DaemonSet) ProtoMessage()

func (*DaemonSet) Reset

func (m *DaemonSet) Reset()

func (*DaemonSet) Size

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

func (*DaemonSet) String

func (this *DaemonSet) String() string

func (DaemonSet) SwaggerDoc

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

func (*DaemonSet) Unmarshal

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

func (*DaemonSet) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSet) XXX_DiscardUnknown()

func (*DaemonSet) XXX_Marshal added in v0.16.4

func (m *DaemonSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSet) XXX_Merge added in v0.16.4

func (m *DaemonSet) XXX_Merge(src proto.Message)

func (*DaemonSet) XXX_Size added in v0.16.4

func (m *DaemonSet) XXX_Size() int

func (*DaemonSet) XXX_Unmarshal added in v0.16.4

func (m *DaemonSet) XXX_Unmarshal(b []byte) error

type DaemonSetCondition

type DaemonSetCondition struct {
	// Type of DaemonSet condition.
	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status v1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
	// Last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
	// The reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// A human readable message indicating details about the transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

DaemonSetCondition describes the state of a DaemonSet at a certain point.

func (*DaemonSetCondition) DeepCopy

func (in *DaemonSetCondition) DeepCopy() *DaemonSetCondition

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetCondition.

func (*DaemonSetCondition) DeepCopyInto

func (in *DaemonSetCondition) DeepCopyInto(out *DaemonSetCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSetCondition) Descriptor

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

func (*DaemonSetCondition) Marshal

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

func (*DaemonSetCondition) MarshalTo

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

func (*DaemonSetCondition) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSetCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSetCondition) ProtoMessage

func (*DaemonSetCondition) ProtoMessage()

func (*DaemonSetCondition) Reset

func (m *DaemonSetCondition) Reset()

func (*DaemonSetCondition) Size

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

func (*DaemonSetCondition) String

func (this *DaemonSetCondition) String() string

func (DaemonSetCondition) SwaggerDoc

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

func (*DaemonSetCondition) Unmarshal

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

func (*DaemonSetCondition) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSetCondition) XXX_DiscardUnknown()

func (*DaemonSetCondition) XXX_Marshal added in v0.16.4

func (m *DaemonSetCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSetCondition) XXX_Merge added in v0.16.4

func (m *DaemonSetCondition) XXX_Merge(src proto.Message)

func (*DaemonSetCondition) XXX_Size added in v0.16.4

func (m *DaemonSetCondition) XXX_Size() int

func (*DaemonSetCondition) XXX_Unmarshal added in v0.16.4

func (m *DaemonSetCondition) XXX_Unmarshal(b []byte) error

type DaemonSetConditionType

type DaemonSetConditionType string

type DaemonSetList

type DaemonSetList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// A list of daemon sets.
	Items []DaemonSet `json:"items" protobuf:"bytes,2,rep,name=items"`
}

DaemonSetList is a collection of daemon sets.

func (*DaemonSetList) DeepCopy

func (in *DaemonSetList) DeepCopy() *DaemonSetList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetList.

func (*DaemonSetList) DeepCopyInto

func (in *DaemonSetList) DeepCopyInto(out *DaemonSetList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSetList) DeepCopyObject

func (in *DaemonSetList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*DaemonSetList) Descriptor

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

func (*DaemonSetList) Marshal

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

func (*DaemonSetList) MarshalTo

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

func (*DaemonSetList) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSetList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSetList) ProtoMessage

func (*DaemonSetList) ProtoMessage()

func (*DaemonSetList) Reset

func (m *DaemonSetList) Reset()

func (*DaemonSetList) Size

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

func (*DaemonSetList) String

func (this *DaemonSetList) String() string

func (DaemonSetList) SwaggerDoc

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

func (*DaemonSetList) Unmarshal

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

func (*DaemonSetList) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSetList) XXX_DiscardUnknown()

func (*DaemonSetList) XXX_Marshal added in v0.16.4

func (m *DaemonSetList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSetList) XXX_Merge added in v0.16.4

func (m *DaemonSetList) XXX_Merge(src proto.Message)

func (*DaemonSetList) XXX_Size added in v0.16.4

func (m *DaemonSetList) XXX_Size() int

func (*DaemonSetList) XXX_Unmarshal added in v0.16.4

func (m *DaemonSetList) XXX_Unmarshal(b []byte) error

type DaemonSetSpec

type DaemonSetSpec struct {
	// A label query over pods that are managed by the daemon set.
	// Must match in order to be controlled.
	// It must match the pod template's labels.
	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,1,opt,name=selector"`

	// An object that describes the pod that will be created.
	// The DaemonSet will create exactly one copy of this pod on every node
	// that matches the template's node selector (or on every node if no node
	// selector is specified).
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,2,opt,name=template"`

	// An update strategy to replace existing DaemonSet pods with new pods.
	// +optional
	UpdateStrategy DaemonSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,3,opt,name=updateStrategy"`

	// The minimum number of seconds for which a newly created DaemonSet pod should
	// be ready without any of its container crashing, for it to be considered
	// available. Defaults to 0 (pod will be considered available as soon as it
	// is ready).
	// +optional
	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,4,opt,name=minReadySeconds"`

	// The number of old history to retain to allow rollback.
	// This is a pointer to distinguish between explicit zero and not specified.
	// Defaults to 10.
	// +optional
	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
}

DaemonSetSpec is the specification of a daemon set.

func (*DaemonSetSpec) DeepCopy

func (in *DaemonSetSpec) DeepCopy() *DaemonSetSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetSpec.

func (*DaemonSetSpec) DeepCopyInto

func (in *DaemonSetSpec) DeepCopyInto(out *DaemonSetSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSetSpec) Descriptor

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

func (*DaemonSetSpec) Marshal

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

func (*DaemonSetSpec) MarshalTo

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

func (*DaemonSetSpec) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSetSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSetSpec) ProtoMessage

func (*DaemonSetSpec) ProtoMessage()

func (*DaemonSetSpec) Reset

func (m *DaemonSetSpec) Reset()

func (*DaemonSetSpec) Size

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

func (*DaemonSetSpec) String

func (this *DaemonSetSpec) String() string

func (DaemonSetSpec) SwaggerDoc

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

func (*DaemonSetSpec) Unmarshal

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

func (*DaemonSetSpec) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSetSpec) XXX_DiscardUnknown()

func (*DaemonSetSpec) XXX_Marshal added in v0.16.4

func (m *DaemonSetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSetSpec) XXX_Merge added in v0.16.4

func (m *DaemonSetSpec) XXX_Merge(src proto.Message)

func (*DaemonSetSpec) XXX_Size added in v0.16.4

func (m *DaemonSetSpec) XXX_Size() int

func (*DaemonSetSpec) XXX_Unmarshal added in v0.16.4

func (m *DaemonSetSpec) XXX_Unmarshal(b []byte) error

type DaemonSetStatus

type DaemonSetStatus struct {
	// The number of nodes that are running at least 1
	// daemon pod and are supposed to run the daemon pod.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
	CurrentNumberScheduled int32 `json:"currentNumberScheduled" protobuf:"varint,1,opt,name=currentNumberScheduled"`

	// The number of nodes that are running the daemon pod, but are
	// not supposed to run the daemon pod.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
	NumberMisscheduled int32 `json:"numberMisscheduled" protobuf:"varint,2,opt,name=numberMisscheduled"`

	// The total number of nodes that should be running the daemon
	// pod (including nodes correctly running the daemon pod).
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
	DesiredNumberScheduled int32 `json:"desiredNumberScheduled" protobuf:"varint,3,opt,name=desiredNumberScheduled"`

	// numberReady is the number of nodes that should be running the daemon pod and have one
	// or more of the daemon pod running with a Ready Condition.
	NumberReady int32 `json:"numberReady" protobuf:"varint,4,opt,name=numberReady"`

	// The most recent generation observed by the daemon set controller.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,5,opt,name=observedGeneration"`

	// The total number of nodes that are running updated daemon pod
	// +optional
	UpdatedNumberScheduled int32 `json:"updatedNumberScheduled,omitempty" protobuf:"varint,6,opt,name=updatedNumberScheduled"`

	// The number of nodes that should be running the
	// daemon pod and have one or more of the daemon pod running and
	// available (ready for at least spec.minReadySeconds)
	// +optional
	NumberAvailable int32 `json:"numberAvailable,omitempty" protobuf:"varint,7,opt,name=numberAvailable"`

	// The number of nodes that should be running the
	// daemon pod and have none of the daemon pod running and available
	// (ready for at least spec.minReadySeconds)
	// +optional
	NumberUnavailable int32 `json:"numberUnavailable,omitempty" protobuf:"varint,8,opt,name=numberUnavailable"`

	// Count of hash collisions for the DaemonSet. The DaemonSet controller
	// uses this field as a collision avoidance mechanism when it needs to
	// create the name for the newest ControllerRevision.
	// +optional
	CollisionCount *int32 `json:"collisionCount,omitempty" protobuf:"varint,9,opt,name=collisionCount"`

	// Represents the latest available observations of a DaemonSet's current state.
	// +optional
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []DaemonSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,10,rep,name=conditions"`
}

DaemonSetStatus represents the current status of a daemon set.

func (*DaemonSetStatus) DeepCopy

func (in *DaemonSetStatus) DeepCopy() *DaemonSetStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetStatus.

func (*DaemonSetStatus) DeepCopyInto

func (in *DaemonSetStatus) DeepCopyInto(out *DaemonSetStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSetStatus) Descriptor

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

func (*DaemonSetStatus) Marshal

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

func (*DaemonSetStatus) MarshalTo

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

func (*DaemonSetStatus) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSetStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSetStatus) ProtoMessage

func (*DaemonSetStatus) ProtoMessage()

func (*DaemonSetStatus) Reset

func (m *DaemonSetStatus) Reset()

func (*DaemonSetStatus) Size

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

func (*DaemonSetStatus) String

func (this *DaemonSetStatus) String() string

func (DaemonSetStatus) SwaggerDoc

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

func (*DaemonSetStatus) Unmarshal

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

func (*DaemonSetStatus) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSetStatus) XXX_DiscardUnknown()

func (*DaemonSetStatus) XXX_Marshal added in v0.16.4

func (m *DaemonSetStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSetStatus) XXX_Merge added in v0.16.4

func (m *DaemonSetStatus) XXX_Merge(src proto.Message)

func (*DaemonSetStatus) XXX_Size added in v0.16.4

func (m *DaemonSetStatus) XXX_Size() int

func (*DaemonSetStatus) XXX_Unmarshal added in v0.16.4

func (m *DaemonSetStatus) XXX_Unmarshal(b []byte) error

type DaemonSetUpdateStrategy

type DaemonSetUpdateStrategy struct {
	// Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
	// +optional
	Type DaemonSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type"`

	// Rolling update config params. Present only if type = "RollingUpdate".
	//---
	// TODO: Update this to follow our convention for oneOf, whatever we decide it
	// to be. Same as Deployment `strategy.rollingUpdate`.
	// See https://github.com/kubernetes/kubernetes/issues/35345
	// +optional
	RollingUpdate *RollingUpdateDaemonSet `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
}

DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

func (*DaemonSetUpdateStrategy) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DaemonSetUpdateStrategy.

func (*DaemonSetUpdateStrategy) DeepCopyInto

func (in *DaemonSetUpdateStrategy) DeepCopyInto(out *DaemonSetUpdateStrategy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DaemonSetUpdateStrategy) Descriptor

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

func (*DaemonSetUpdateStrategy) Marshal

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

func (*DaemonSetUpdateStrategy) MarshalTo

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

func (*DaemonSetUpdateStrategy) MarshalToSizedBuffer added in v0.16.4

func (m *DaemonSetUpdateStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DaemonSetUpdateStrategy) ProtoMessage

func (*DaemonSetUpdateStrategy) ProtoMessage()

func (*DaemonSetUpdateStrategy) Reset

func (m *DaemonSetUpdateStrategy) Reset()

func (*DaemonSetUpdateStrategy) Size

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

func (*DaemonSetUpdateStrategy) String

func (this *DaemonSetUpdateStrategy) String() string

func (DaemonSetUpdateStrategy) SwaggerDoc

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

func (*DaemonSetUpdateStrategy) Unmarshal

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

func (*DaemonSetUpdateStrategy) XXX_DiscardUnknown added in v0.16.4

func (m *DaemonSetUpdateStrategy) XXX_DiscardUnknown()

func (*DaemonSetUpdateStrategy) XXX_Marshal added in v0.16.4

func (m *DaemonSetUpdateStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DaemonSetUpdateStrategy) XXX_Merge added in v0.16.4

func (m *DaemonSetUpdateStrategy) XXX_Merge(src proto.Message)

func (*DaemonSetUpdateStrategy) XXX_Size added in v0.16.4

func (m *DaemonSetUpdateStrategy) XXX_Size() int

func (*DaemonSetUpdateStrategy) XXX_Unmarshal added in v0.16.4

func (m *DaemonSetUpdateStrategy) XXX_Unmarshal(b []byte) error

type DaemonSetUpdateStrategyType

type DaemonSetUpdateStrategyType string

+enum

const (
	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"

	// Replace the old daemons only when it's killed
	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
)

type Deployment

type Deployment struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Specification of the desired behavior of the Deployment.
	// +optional
	Spec DeploymentSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Most recently observed status of the Deployment.
	// +optional
	Status DeploymentStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

Deployment enables declarative updates for Pods and ReplicaSets.

func (*Deployment) DeepCopy

func (in *Deployment) DeepCopy() *Deployment

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Deployment.

func (*Deployment) DeepCopyInto

func (in *Deployment) DeepCopyInto(out *Deployment)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Deployment) DeepCopyObject

func (in *Deployment) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Deployment) Descriptor

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

func (*Deployment) Marshal

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

func (*Deployment) MarshalTo

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

func (*Deployment) MarshalToSizedBuffer added in v0.16.4

func (m *Deployment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) Reset

func (m *Deployment) Reset()

func (*Deployment) Size

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

func (*Deployment) String

func (this *Deployment) String() string

func (Deployment) SwaggerDoc

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

func (*Deployment) Unmarshal

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

func (*Deployment) XXX_DiscardUnknown added in v0.16.4

func (m *Deployment) XXX_DiscardUnknown()

func (*Deployment) XXX_Marshal added in v0.16.4

func (m *Deployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Deployment) XXX_Merge added in v0.16.4

func (m *Deployment) XXX_Merge(src proto.Message)

func (*Deployment) XXX_Size added in v0.16.4

func (m *Deployment) XXX_Size() int

func (*Deployment) XXX_Unmarshal added in v0.16.4

func (m *Deployment) XXX_Unmarshal(b []byte) error

type DeploymentCondition

type DeploymentCondition struct {
	// Type of deployment condition.
	Type DeploymentConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DeploymentConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status v1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
	// The last time this condition was updated.
	LastUpdateTime metav1.Time `json:"lastUpdateTime,omitempty" protobuf:"bytes,6,opt,name=lastUpdateTime"`
	// Last time the condition transitioned from one status to another.
	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,7,opt,name=lastTransitionTime"`
	// The reason for the condition's last transition.
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// A human readable message indicating details about the transition.
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

DeploymentCondition describes the state of a deployment at a certain point.

func (*DeploymentCondition) DeepCopy

func (in *DeploymentCondition) DeepCopy() *DeploymentCondition

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentCondition.

func (*DeploymentCondition) DeepCopyInto

func (in *DeploymentCondition) DeepCopyInto(out *DeploymentCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeploymentCondition) Descriptor

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

func (*DeploymentCondition) Marshal

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

func (*DeploymentCondition) MarshalTo

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

func (*DeploymentCondition) MarshalToSizedBuffer added in v0.16.4

func (m *DeploymentCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentCondition) ProtoMessage

func (*DeploymentCondition) ProtoMessage()

func (*DeploymentCondition) Reset

func (m *DeploymentCondition) Reset()

func (*DeploymentCondition) Size

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

func (*DeploymentCondition) String

func (this *DeploymentCondition) String() string

func (DeploymentCondition) SwaggerDoc

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

func (*DeploymentCondition) Unmarshal

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

func (*DeploymentCondition) XXX_DiscardUnknown added in v0.16.4

func (m *DeploymentCondition) XXX_DiscardUnknown()

func (*DeploymentCondition) XXX_Marshal added in v0.16.4

func (m *DeploymentCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentCondition) XXX_Merge added in v0.16.4

func (m *DeploymentCondition) XXX_Merge(src proto.Message)

func (*DeploymentCondition) XXX_Size added in v0.16.4

func (m *DeploymentCondition) XXX_Size() int

func (*DeploymentCondition) XXX_Unmarshal added in v0.16.4

func (m *DeploymentCondition) XXX_Unmarshal(b []byte) error

type DeploymentConditionType

type DeploymentConditionType string
const (
	// Available means the deployment is available, ie. at least the minimum available
	// replicas required are up and running for at least minReadySeconds.
	DeploymentAvailable DeploymentConditionType = "Available"
	// Progressing means the deployment is progressing. Progress for a deployment is
	// considered when a new replica set is created or adopted, and when new pods scale
	// up or old pods scale down. Progress is not estimated for paused deployments or
	// when progressDeadlineSeconds is not specified.
	DeploymentProgressing DeploymentConditionType = "Progressing"
	// ReplicaFailure is added in a deployment when one of its pods fails to be created
	// or deleted.
	DeploymentReplicaFailure DeploymentConditionType = "ReplicaFailure"
)

These are valid conditions of a deployment.

type DeploymentList

type DeploymentList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

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

DeploymentList is a list of Deployments.

func (*DeploymentList) DeepCopy

func (in *DeploymentList) DeepCopy() *DeploymentList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentList.

func (*DeploymentList) DeepCopyInto

func (in *DeploymentList) DeepCopyInto(out *DeploymentList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeploymentList) DeepCopyObject

func (in *DeploymentList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*DeploymentList) Descriptor

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

func (*DeploymentList) Marshal

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

func (*DeploymentList) MarshalTo

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

func (*DeploymentList) MarshalToSizedBuffer added in v0.16.4

func (m *DeploymentList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentList) ProtoMessage

func (*DeploymentList) ProtoMessage()

func (*DeploymentList) Reset

func (m *DeploymentList) Reset()

func (*DeploymentList) Size

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

func (*DeploymentList) String

func (this *DeploymentList) String() string

func (DeploymentList) SwaggerDoc

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

func (*DeploymentList) Unmarshal

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

func (*DeploymentList) XXX_DiscardUnknown added in v0.16.4

func (m *DeploymentList) XXX_DiscardUnknown()

func (*DeploymentList) XXX_Marshal added in v0.16.4

func (m *DeploymentList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentList) XXX_Merge added in v0.16.4

func (m *DeploymentList) XXX_Merge(src proto.Message)

func (*DeploymentList) XXX_Size added in v0.16.4

func (m *DeploymentList) XXX_Size() int

func (*DeploymentList) XXX_Unmarshal added in v0.16.4

func (m *DeploymentList) XXX_Unmarshal(b []byte) error

type DeploymentSpec

type DeploymentSpec struct {
	// Number of desired pods. This is a pointer to distinguish between explicit
	// zero and not specified. Defaults to 1.
	// +optional
	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`

	// Label selector for pods. Existing ReplicaSets whose pods are
	// selected by this will be the ones affected by this deployment.
	// It must match the pod template's labels.
	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,2,opt,name=selector"`

	// Template describes the pods that will be created.
	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`

	// The deployment strategy to use to replace existing pods with new ones.
	// +optional
	// +patchStrategy=retainKeys
	Strategy DeploymentStrategy `json:"strategy,omitempty" patchStrategy:"retainKeys" protobuf:"bytes,4,opt,name=strategy"`

	// Minimum number of seconds for which a newly created pod should be ready
	// without any of its container crashing, for it to be considered available.
	// Defaults to 0 (pod will be considered available as soon as it is ready)
	// +optional
	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,5,opt,name=minReadySeconds"`

	// The number of old ReplicaSets to retain to allow rollback.
	// This is a pointer to distinguish between explicit zero and not specified.
	// Defaults to 10.
	// +optional
	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`

	// Indicates that the deployment is paused.
	// +optional
	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`

	// The maximum time in seconds for a deployment to make progress before it
	// is considered to be failed. The deployment controller will continue to
	// process failed deployments and a condition with a ProgressDeadlineExceeded
	// reason will be surfaced in the deployment status. Note that progress will
	// not be estimated during the time a deployment is paused. Defaults to 600s.
	ProgressDeadlineSeconds *int32 `json:"progressDeadlineSeconds,omitempty" protobuf:"varint,9,opt,name=progressDeadlineSeconds"`
}

DeploymentSpec is the specification of the desired behavior of the Deployment.

func (*DeploymentSpec) DeepCopy

func (in *DeploymentSpec) DeepCopy() *DeploymentSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.

func (*DeploymentSpec) DeepCopyInto

func (in *DeploymentSpec) DeepCopyInto(out *DeploymentSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeploymentSpec) Descriptor

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

func (*DeploymentSpec) Marshal

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

func (*DeploymentSpec) MarshalTo

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

func (*DeploymentSpec) MarshalToSizedBuffer added in v0.16.4

func (m *DeploymentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentSpec) ProtoMessage

func (*DeploymentSpec) ProtoMessage()

func (*DeploymentSpec) Reset

func (m *DeploymentSpec) Reset()

func (*DeploymentSpec) Size

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

func (*DeploymentSpec) String

func (this *DeploymentSpec) String() string

func (DeploymentSpec) SwaggerDoc

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

func (*DeploymentSpec) Unmarshal

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

func (*DeploymentSpec) XXX_DiscardUnknown added in v0.16.4

func (m *DeploymentSpec) XXX_DiscardUnknown()

func (*DeploymentSpec) XXX_Marshal added in v0.16.4

func (m *DeploymentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentSpec) XXX_Merge added in v0.16.4

func (m *DeploymentSpec) XXX_Merge(src proto.Message)

func (*DeploymentSpec) XXX_Size added in v0.16.4

func (m *DeploymentSpec) XXX_Size() int

func (*DeploymentSpec) XXX_Unmarshal added in v0.16.4

func (m *DeploymentSpec) XXX_Unmarshal(b []byte) error

type DeploymentStatus

type DeploymentStatus struct {
	// The generation observed by the deployment controller.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`

	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
	// +optional
	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`

	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
	// +optional
	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,3,opt,name=updatedReplicas"`

	// readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.
	// +optional
	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,7,opt,name=readyReplicas"`

	// Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
	// +optional
	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,4,opt,name=availableReplicas"`

	// Total number of unavailable pods targeted by this deployment. This is the total number of
	// pods that are still required for the deployment to have 100% available capacity. They may
	// either be pods that are running but not yet available or pods that still have not been created.
	// +optional
	UnavailableReplicas int32 `json:"unavailableReplicas,omitempty" protobuf:"varint,5,opt,name=unavailableReplicas"`

	// Represents the latest available observations of a deployment's current state.
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []DeploymentCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,6,rep,name=conditions"`

	// Count of hash collisions for the Deployment. The Deployment controller uses this
	// field as a collision avoidance mechanism when it needs to create the name for the
	// newest ReplicaSet.
	// +optional
	CollisionCount *int32 `json:"collisionCount,omitempty" protobuf:"varint,8,opt,name=collisionCount"`
}

DeploymentStatus is the most recently observed status of the Deployment.

func (*DeploymentStatus) DeepCopy

func (in *DeploymentStatus) DeepCopy() *DeploymentStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentStatus.

func (*DeploymentStatus) DeepCopyInto

func (in *DeploymentStatus) DeepCopyInto(out *DeploymentStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeploymentStatus) Descriptor

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

func (*DeploymentStatus) Marshal

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

func (*DeploymentStatus) MarshalTo

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

func (*DeploymentStatus) MarshalToSizedBuffer added in v0.16.4

func (m *DeploymentStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentStatus) ProtoMessage

func (*DeploymentStatus) ProtoMessage()

func (*DeploymentStatus) Reset

func (m *DeploymentStatus) Reset()

func (*DeploymentStatus) Size

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

func (*DeploymentStatus) String

func (this *DeploymentStatus) String() string

func (DeploymentStatus) SwaggerDoc

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

func (*DeploymentStatus) Unmarshal

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

func (*DeploymentStatus) XXX_DiscardUnknown added in v0.16.4

func (m *DeploymentStatus) XXX_DiscardUnknown()

func (*DeploymentStatus) XXX_Marshal added in v0.16.4

func (m *DeploymentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentStatus) XXX_Merge added in v0.16.4

func (m *DeploymentStatus) XXX_Merge(src proto.Message)

func (*DeploymentStatus) XXX_Size added in v0.16.4

func (m *DeploymentStatus) XXX_Size() int

func (*DeploymentStatus) XXX_Unmarshal added in v0.16.4

func (m *DeploymentStatus) XXX_Unmarshal(b []byte) error

type DeploymentStrategy

type DeploymentStrategy struct {
	// Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
	// +optional
	Type DeploymentStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=DeploymentStrategyType"`

	// Rolling update config params. Present only if DeploymentStrategyType =
	// RollingUpdate.
	//---
	// TODO: Update this to follow our convention for oneOf, whatever we decide it
	// to be.
	// +optional
	RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
}

DeploymentStrategy describes how to replace existing pods with new ones.

func (*DeploymentStrategy) DeepCopy

func (in *DeploymentStrategy) DeepCopy() *DeploymentStrategy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentStrategy.

func (*DeploymentStrategy) DeepCopyInto

func (in *DeploymentStrategy) DeepCopyInto(out *DeploymentStrategy)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeploymentStrategy) Descriptor

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

func (*DeploymentStrategy) Marshal

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

func (*DeploymentStrategy) MarshalTo

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

func (*DeploymentStrategy) MarshalToSizedBuffer added in v0.16.4

func (m *DeploymentStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeploymentStrategy) ProtoMessage

func (*DeploymentStrategy) ProtoMessage()

func (*DeploymentStrategy) Reset

func (m *DeploymentStrategy) Reset()

func (*DeploymentStrategy) Size

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

func (*DeploymentStrategy) String

func (this *DeploymentStrategy) String() string

func (DeploymentStrategy) SwaggerDoc

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

func (*DeploymentStrategy) Unmarshal

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

func (*DeploymentStrategy) XXX_DiscardUnknown added in v0.16.4

func (m *DeploymentStrategy) XXX_DiscardUnknown()

func (*DeploymentStrategy) XXX_Marshal added in v0.16.4

func (m *DeploymentStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeploymentStrategy) XXX_Merge added in v0.16.4

func (m *DeploymentStrategy) XXX_Merge(src proto.Message)

func (*DeploymentStrategy) XXX_Size added in v0.16.4

func (m *DeploymentStrategy) XXX_Size() int

func (*DeploymentStrategy) XXX_Unmarshal added in v0.16.4

func (m *DeploymentStrategy) XXX_Unmarshal(b []byte) error

type DeploymentStrategyType

type DeploymentStrategyType string

+enum

const (
	// Kill all existing pods before creating new ones.
	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"

	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
)

type PersistentVolumeClaimRetentionPolicyType added in v0.23.0

type PersistentVolumeClaimRetentionPolicyType string

PersistentVolumeClaimRetentionPolicyType is a string enumeration of the policies that will determine when volumes from the VolumeClaimTemplates will be deleted when the controlling StatefulSet is deleted or scaled down.

const (
	// RetainPersistentVolumeClaimRetentionPolicyType is the default
	// PersistentVolumeClaimRetentionPolicy and specifies that
	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
	// will not be deleted.
	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
	// will be deleted in the scenario specified in
	// StatefulSetPersistentVolumeClaimRetentionPolicy.
	DeletePersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Delete"
)

type PodManagementPolicyType

type PodManagementPolicyType string

PodManagementPolicyType defines the policy for creating pods under a stateful set. +enum

const (
	// OrderedReadyPodManagement will create pods in strictly increasing order on
	// scale up and strictly decreasing order on scale down, progressing only when
	// the previous pod is ready or terminated. At most one pod will be changed
	// at any time.
	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
	// ParallelPodManagement will create and delete pods as soon as the stateful set
	// replica count is changed, and will not wait for pods to be ready or complete
	// termination.
	ParallelPodManagement PodManagementPolicyType = "Parallel"
)

type ReplicaSet

type ReplicaSet struct {
	metav1.TypeMeta `json:",inline"`

	// If the Labels of a ReplicaSet are empty, they are defaulted to
	// be the same as the Pod(s) that the ReplicaSet manages.
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the specification of the desired behavior of the ReplicaSet.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	// +optional
	Spec ReplicaSetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status is the most recently observed status of the ReplicaSet.
	// This data may be out of date by some window of time.
	// Populated by the system.
	// Read-only.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	// +optional
	Status ReplicaSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

ReplicaSet ensures that a specified number of pod replicas are running at any given time.

func (*ReplicaSet) DeepCopy

func (in *ReplicaSet) DeepCopy() *ReplicaSet

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSet.

func (*ReplicaSet) DeepCopyInto

func (in *ReplicaSet) DeepCopyInto(out *ReplicaSet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ReplicaSet) DeepCopyObject

func (in *ReplicaSet) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ReplicaSet) Descriptor

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

func (*ReplicaSet) Marshal

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

func (*ReplicaSet) MarshalTo

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

func (*ReplicaSet) MarshalToSizedBuffer added in v0.16.4

func (m *ReplicaSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplicaSet) ProtoMessage

func (*ReplicaSet) ProtoMessage()

func (*ReplicaSet) Reset

func (m *ReplicaSet) Reset()

func (*ReplicaSet) Size

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

func (*ReplicaSet) String

func (this *ReplicaSet) String() string

func (ReplicaSet) SwaggerDoc

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

func (*ReplicaSet) Unmarshal

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

func (*ReplicaSet) XXX_DiscardUnknown added in v0.16.4

func (m *ReplicaSet) XXX_DiscardUnknown()

func (*ReplicaSet) XXX_Marshal added in v0.16.4

func (m *ReplicaSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplicaSet) XXX_Merge added in v0.16.4

func (m *ReplicaSet) XXX_Merge(src proto.Message)

func (*ReplicaSet) XXX_Size added in v0.16.4

func (m *ReplicaSet) XXX_Size() int

func (*ReplicaSet) XXX_Unmarshal added in v0.16.4

func (m *ReplicaSet) XXX_Unmarshal(b []byte) error

type ReplicaSetCondition

type ReplicaSetCondition struct {
	// Type of replica set condition.
	Type ReplicaSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=ReplicaSetConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status v1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
	// The last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
	// The reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// A human readable message indicating details about the transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

ReplicaSetCondition describes the state of a replica set at a certain point.

func (*ReplicaSetCondition) DeepCopy

func (in *ReplicaSetCondition) DeepCopy() *ReplicaSetCondition

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetCondition.

func (*ReplicaSetCondition) DeepCopyInto

func (in *ReplicaSetCondition) DeepCopyInto(out *ReplicaSetCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ReplicaSetCondition) Descriptor

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

func (*ReplicaSetCondition) Marshal

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

func (*ReplicaSetCondition) MarshalTo

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

func (*ReplicaSetCondition) MarshalToSizedBuffer added in v0.16.4

func (m *ReplicaSetCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplicaSetCondition) ProtoMessage

func (*ReplicaSetCondition) ProtoMessage()

func (*ReplicaSetCondition) Reset

func (m *ReplicaSetCondition) Reset()

func (*ReplicaSetCondition) Size

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

func (*ReplicaSetCondition) String

func (this *ReplicaSetCondition) String() string

func (ReplicaSetCondition) SwaggerDoc

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

func (*ReplicaSetCondition) Unmarshal

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

func (*ReplicaSetCondition) XXX_DiscardUnknown added in v0.16.4

func (m *ReplicaSetCondition) XXX_DiscardUnknown()

func (*ReplicaSetCondition) XXX_Marshal added in v0.16.4

func (m *ReplicaSetCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplicaSetCondition) XXX_Merge added in v0.16.4

func (m *ReplicaSetCondition) XXX_Merge(src proto.Message)

func (*ReplicaSetCondition) XXX_Size added in v0.16.4

func (m *ReplicaSetCondition) XXX_Size() int

func (*ReplicaSetCondition) XXX_Unmarshal added in v0.16.4

func (m *ReplicaSetCondition) XXX_Unmarshal(b []byte) error

type ReplicaSetConditionType

type ReplicaSetConditionType string
const (
	// ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created
	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
	// due to kubelet being down or finalizers are failing.
	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
)

These are valid conditions of a replica set.

type ReplicaSetList

type ReplicaSetList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// List of ReplicaSets.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller
	Items []ReplicaSet `json:"items" protobuf:"bytes,2,rep,name=items"`
}

ReplicaSetList is a collection of ReplicaSets.

func (*ReplicaSetList) DeepCopy

func (in *ReplicaSetList) DeepCopy() *ReplicaSetList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetList.

func (*ReplicaSetList) DeepCopyInto

func (in *ReplicaSetList) DeepCopyInto(out *ReplicaSetList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ReplicaSetList) DeepCopyObject

func (in *ReplicaSetList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ReplicaSetList) Descriptor

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

func (*ReplicaSetList) Marshal

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

func (*ReplicaSetList) MarshalTo

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

func (*ReplicaSetList) MarshalToSizedBuffer added in v0.16.4

func (m *ReplicaSetList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplicaSetList) ProtoMessage

func (*ReplicaSetList) ProtoMessage()

func (*ReplicaSetList) Reset

func (m *ReplicaSetList) Reset()

func (*ReplicaSetList) Size

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

func (*ReplicaSetList) String

func (this *ReplicaSetList) String() string

func (ReplicaSetList) SwaggerDoc

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

func (*ReplicaSetList) Unmarshal

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

func (*ReplicaSetList) XXX_DiscardUnknown added in v0.16.4

func (m *ReplicaSetList) XXX_DiscardUnknown()

func (*ReplicaSetList) XXX_Marshal added in v0.16.4

func (m *ReplicaSetList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplicaSetList) XXX_Merge added in v0.16.4

func (m *ReplicaSetList) XXX_Merge(src proto.Message)

func (*ReplicaSetList) XXX_Size added in v0.16.4

func (m *ReplicaSetList) XXX_Size() int

func (*ReplicaSetList) XXX_Unmarshal added in v0.16.4

func (m *ReplicaSetList) XXX_Unmarshal(b []byte) error

type ReplicaSetSpec

type ReplicaSetSpec struct {
	// Replicas is the number of desired replicas.
	// This is a pointer to distinguish between explicit zero and unspecified.
	// Defaults to 1.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
	// +optional
	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`

	// Minimum number of seconds for which a newly created pod should be ready
	// without any of its container crashing, for it to be considered available.
	// Defaults to 0 (pod will be considered available as soon as it is ready)
	// +optional
	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,4,opt,name=minReadySeconds"`

	// Selector is a label query over pods that should match the replica count.
	// Label keys and values that must match in order to be controlled by this replica set.
	// It must match the pod template's labels.
	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,2,opt,name=selector"`

	// Template is the object that describes the pod that will be created if
	// insufficient replicas are detected.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
	// +optional
	Template v1.PodTemplateSpec `json:"template,omitempty" protobuf:"bytes,3,opt,name=template"`
}

ReplicaSetSpec is the specification of a ReplicaSet.

func (*ReplicaSetSpec) DeepCopy

func (in *ReplicaSetSpec) DeepCopy() *ReplicaSetSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetSpec.

func (*ReplicaSetSpec) DeepCopyInto

func (in *ReplicaSetSpec) DeepCopyInto(out *ReplicaSetSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ReplicaSetSpec) Descriptor

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

func (*ReplicaSetSpec) Marshal

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

func (*ReplicaSetSpec) MarshalTo

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

func (*ReplicaSetSpec) MarshalToSizedBuffer added in v0.16.4

func (m *ReplicaSetSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplicaSetSpec) ProtoMessage

func (*ReplicaSetSpec) ProtoMessage()

func (*ReplicaSetSpec) Reset

func (m *ReplicaSetSpec) Reset()

func (*ReplicaSetSpec) Size

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

func (*ReplicaSetSpec) String

func (this *ReplicaSetSpec) String() string

func (ReplicaSetSpec) SwaggerDoc

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

func (*ReplicaSetSpec) Unmarshal

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

func (*ReplicaSetSpec) XXX_DiscardUnknown added in v0.16.4

func (m *ReplicaSetSpec) XXX_DiscardUnknown()

func (*ReplicaSetSpec) XXX_Marshal added in v0.16.4

func (m *ReplicaSetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplicaSetSpec) XXX_Merge added in v0.16.4

func (m *ReplicaSetSpec) XXX_Merge(src proto.Message)

func (*ReplicaSetSpec) XXX_Size added in v0.16.4

func (m *ReplicaSetSpec) XXX_Size() int

func (*ReplicaSetSpec) XXX_Unmarshal added in v0.16.4

func (m *ReplicaSetSpec) XXX_Unmarshal(b []byte) error

type ReplicaSetStatus

type ReplicaSetStatus struct {
	// Replicas is the most recently observed number of replicas.
	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
	Replicas int32 `json:"replicas" protobuf:"varint,1,opt,name=replicas"`

	// The number of pods that have labels matching the labels of the pod template of the replicaset.
	// +optional
	FullyLabeledReplicas int32 `json:"fullyLabeledReplicas,omitempty" protobuf:"varint,2,opt,name=fullyLabeledReplicas"`

	// readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.
	// +optional
	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,4,opt,name=readyReplicas"`

	// The number of available replicas (ready for at least minReadySeconds) for this replica set.
	// +optional
	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,5,opt,name=availableReplicas"`

	// ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"`

	// Represents the latest available observations of a replica set's current state.
	// +optional
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []ReplicaSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,6,rep,name=conditions"`
}

ReplicaSetStatus represents the current status of a ReplicaSet.

func (*ReplicaSetStatus) DeepCopy

func (in *ReplicaSetStatus) DeepCopy() *ReplicaSetStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSetStatus.

func (*ReplicaSetStatus) DeepCopyInto

func (in *ReplicaSetStatus) DeepCopyInto(out *ReplicaSetStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ReplicaSetStatus) Descriptor

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

func (*ReplicaSetStatus) Marshal

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

func (*ReplicaSetStatus) MarshalTo

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

func (*ReplicaSetStatus) MarshalToSizedBuffer added in v0.16.4

func (m *ReplicaSetStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReplicaSetStatus) ProtoMessage

func (*ReplicaSetStatus) ProtoMessage()

func (*ReplicaSetStatus) Reset

func (m *ReplicaSetStatus) Reset()

func (*ReplicaSetStatus) Size

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

func (*ReplicaSetStatus) String

func (this *ReplicaSetStatus) String() string

func (ReplicaSetStatus) SwaggerDoc

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

func (*ReplicaSetStatus) Unmarshal

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

func (*ReplicaSetStatus) XXX_DiscardUnknown added in v0.16.4

func (m *ReplicaSetStatus) XXX_DiscardUnknown()

func (*ReplicaSetStatus) XXX_Marshal added in v0.16.4

func (m *ReplicaSetStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplicaSetStatus) XXX_Merge added in v0.16.4

func (m *ReplicaSetStatus) XXX_Merge(src proto.Message)

func (*ReplicaSetStatus) XXX_Size added in v0.16.4

func (m *ReplicaSetStatus) XXX_Size() int

func (*ReplicaSetStatus) XXX_Unmarshal added in v0.16.4

func (m *ReplicaSetStatus) XXX_Unmarshal(b []byte) error

type RollingUpdateDaemonSet

type RollingUpdateDaemonSet struct {
	// The maximum number of DaemonSet pods that can be unavailable during the
	// update. Value can be an absolute number (ex: 5) or a percentage of total
	// number of DaemonSet pods at the start of the update (ex: 10%). Absolute
	// number is calculated from percentage by rounding up.
	// This cannot be 0 if MaxSurge is 0
	// Default value is 1.
	// Example: when this is set to 30%, at most 30% of the total number of nodes
	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
	// can have their pods stopped for an update at any given time. The update
	// starts by stopping at most 30% of those DaemonSet pods and then brings
	// up new DaemonSet pods in their place. Once the new pods are available,
	// it then proceeds onto other DaemonSet pods, thus ensuring that at least
	// 70% of original number of DaemonSet pods are available at all times during
	// the update.
	// +optional
	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,1,opt,name=maxUnavailable"`

	// The maximum number of nodes with an existing available DaemonSet pod that
	// can have an updated DaemonSet pod during during an update.
	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
	// This can not be 0 if MaxUnavailable is 0.
	// Absolute number is calculated from percentage by rounding up to a minimum of 1.
	// Default value is 0.
	// Example: when this is set to 30%, at most 30% of the total number of nodes
	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
	// can have their a new pod created before the old pod is marked as deleted.
	// The update starts by launching new pods on 30% of nodes. Once an updated
	// pod is available (Ready for at least minReadySeconds) the old DaemonSet pod
	// on that node is marked deleted. If the old pod becomes unavailable for any
	// reason (Ready transitions to false, is evicted, or is drained) an updated
	// pod is immediatedly created on that node without considering surge limits.
	// Allowing surge implies the possibility that the resources consumed by the
	// daemonset on any given node can double if the readiness check fails, and
	// so resource intensive daemonsets should take into account that they may
	// cause evictions during disruption.
	// +optional
	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
}

Spec to control the desired behavior of daemon set rolling update.

func (*RollingUpdateDaemonSet) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollingUpdateDaemonSet.

func (*RollingUpdateDaemonSet) DeepCopyInto

func (in *RollingUpdateDaemonSet) DeepCopyInto(out *RollingUpdateDaemonSet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RollingUpdateDaemonSet) Descriptor

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

func (*RollingUpdateDaemonSet) Marshal

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

func (*RollingUpdateDaemonSet) MarshalTo

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

func (*RollingUpdateDaemonSet) MarshalToSizedBuffer added in v0.16.4

func (m *RollingUpdateDaemonSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RollingUpdateDaemonSet) ProtoMessage

func (*RollingUpdateDaemonSet) ProtoMessage()

func (*RollingUpdateDaemonSet) Reset

func (m *RollingUpdateDaemonSet) Reset()

func (*RollingUpdateDaemonSet) Size

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

func (*RollingUpdateDaemonSet) String

func (this *RollingUpdateDaemonSet) String() string

func (RollingUpdateDaemonSet) SwaggerDoc

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

func (*RollingUpdateDaemonSet) Unmarshal

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

func (*RollingUpdateDaemonSet) XXX_DiscardUnknown added in v0.16.4

func (m *RollingUpdateDaemonSet) XXX_DiscardUnknown()

func (*RollingUpdateDaemonSet) XXX_Marshal added in v0.16.4

func (m *RollingUpdateDaemonSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RollingUpdateDaemonSet) XXX_Merge added in v0.16.4

func (m *RollingUpdateDaemonSet) XXX_Merge(src proto.Message)

func (*RollingUpdateDaemonSet) XXX_Size added in v0.16.4

func (m *RollingUpdateDaemonSet) XXX_Size() int

func (*RollingUpdateDaemonSet) XXX_Unmarshal added in v0.16.4

func (m *RollingUpdateDaemonSet) XXX_Unmarshal(b []byte) error

type RollingUpdateDeployment

type RollingUpdateDeployment struct {
	// The maximum number of pods that can be unavailable during the update.
	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
	// Absolute number is calculated from percentage by rounding down.
	// This can not be 0 if MaxSurge is 0.
	// Defaults to 25%.
	// Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
	// immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
	// can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
	// that the total number of pods available at all times during the update is at
	// least 70% of desired pods.
	// +optional
	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,1,opt,name=maxUnavailable"`

	// The maximum number of pods that can be scheduled above the desired number of
	// pods.
	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
	// This can not be 0 if MaxUnavailable is 0.
	// Absolute number is calculated from percentage by rounding up.
	// Defaults to 25%.
	// Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when
	// the rolling update starts, such that the total number of old and new pods do not exceed
	// 130% of desired pods. Once old pods have been killed,
	// new ReplicaSet can be scaled up further, ensuring that total number of pods running
	// at any time during the update is at most 130% of desired pods.
	// +optional
	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
}

Spec to control the desired behavior of rolling update.

func (*RollingUpdateDeployment) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollingUpdateDeployment.

func (*RollingUpdateDeployment) DeepCopyInto

func (in *RollingUpdateDeployment) DeepCopyInto(out *RollingUpdateDeployment)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RollingUpdateDeployment) Descriptor

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

func (*RollingUpdateDeployment) Marshal

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

func (*RollingUpdateDeployment) MarshalTo

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

func (*RollingUpdateDeployment) MarshalToSizedBuffer added in v0.16.4

func (m *RollingUpdateDeployment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RollingUpdateDeployment) ProtoMessage

func (*RollingUpdateDeployment) ProtoMessage()

func (*RollingUpdateDeployment) Reset

func (m *RollingUpdateDeployment) Reset()

func (*RollingUpdateDeployment) Size

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

func (*RollingUpdateDeployment) String

func (this *RollingUpdateDeployment) String() string

func (RollingUpdateDeployment) SwaggerDoc

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

func (*RollingUpdateDeployment) Unmarshal

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

func (*RollingUpdateDeployment) XXX_DiscardUnknown added in v0.16.4

func (m *RollingUpdateDeployment) XXX_DiscardUnknown()

func (*RollingUpdateDeployment) XXX_Marshal added in v0.16.4

func (m *RollingUpdateDeployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RollingUpdateDeployment) XXX_Merge added in v0.16.4

func (m *RollingUpdateDeployment) XXX_Merge(src proto.Message)

func (*RollingUpdateDeployment) XXX_Size added in v0.16.4

func (m *RollingUpdateDeployment) XXX_Size() int

func (*RollingUpdateDeployment) XXX_Unmarshal added in v0.16.4

func (m *RollingUpdateDeployment) XXX_Unmarshal(b []byte) error

type RollingUpdateStatefulSetStrategy

type RollingUpdateStatefulSetStrategy struct {
	// Partition indicates the ordinal at which the StatefulSet should be partitioned
	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
	// This is helpful in being able to do a canary based deployment. The default value is 0.
	// +optional
	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
	// The maximum number of pods that can be unavailable during the update.
	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
	// Absolute number is calculated from percentage by rounding up. This can not be 0.
	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
	// will be counted towards MaxUnavailable.
	// +optional
	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"varint,2,opt,name=maxUnavailable"`
}

RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

func (*RollingUpdateStatefulSetStrategy) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollingUpdateStatefulSetStrategy.

func (*RollingUpdateStatefulSetStrategy) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RollingUpdateStatefulSetStrategy) Descriptor

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

func (*RollingUpdateStatefulSetStrategy) Marshal

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

func (*RollingUpdateStatefulSetStrategy) MarshalTo

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

func (*RollingUpdateStatefulSetStrategy) MarshalToSizedBuffer added in v0.16.4

func (m *RollingUpdateStatefulSetStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RollingUpdateStatefulSetStrategy) ProtoMessage

func (*RollingUpdateStatefulSetStrategy) ProtoMessage()

func (*RollingUpdateStatefulSetStrategy) Reset

func (*RollingUpdateStatefulSetStrategy) Size

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

func (*RollingUpdateStatefulSetStrategy) String

func (RollingUpdateStatefulSetStrategy) SwaggerDoc

func (*RollingUpdateStatefulSetStrategy) Unmarshal

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

func (*RollingUpdateStatefulSetStrategy) XXX_DiscardUnknown added in v0.16.4

func (m *RollingUpdateStatefulSetStrategy) XXX_DiscardUnknown()

func (*RollingUpdateStatefulSetStrategy) XXX_Marshal added in v0.16.4

func (m *RollingUpdateStatefulSetStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RollingUpdateStatefulSetStrategy) XXX_Merge added in v0.16.4

func (*RollingUpdateStatefulSetStrategy) XXX_Size added in v0.16.4

func (m *RollingUpdateStatefulSetStrategy) XXX_Size() int

func (*RollingUpdateStatefulSetStrategy) XXX_Unmarshal added in v0.16.4

func (m *RollingUpdateStatefulSetStrategy) XXX_Unmarshal(b []byte) error

type StatefulSet

type StatefulSet struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Spec defines the desired identities of pods in this set.
	// +optional
	Spec StatefulSetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`

	// Status is the current status of Pods in this StatefulSet. This data
	// may be out of date by some window of time.
	// +optional
	Status StatefulSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

StatefulSet represents a set of pods with consistent identities. Identities are defined as:

  • Network: A single stable DNS and hostname.
  • Storage: As many VolumeClaims as requested.

The StatefulSet guarantees that a given network identity will always map to the same storage identity.

func (*StatefulSet) DeepCopy

func (in *StatefulSet) DeepCopy() *StatefulSet

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSet.

func (*StatefulSet) DeepCopyInto

func (in *StatefulSet) DeepCopyInto(out *StatefulSet)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSet) DeepCopyObject

func (in *StatefulSet) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StatefulSet) Descriptor

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

func (*StatefulSet) Marshal

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

func (*StatefulSet) MarshalTo

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

func (*StatefulSet) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSet) ProtoMessage

func (*StatefulSet) ProtoMessage()

func (*StatefulSet) Reset

func (m *StatefulSet) Reset()

func (*StatefulSet) Size

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

func (*StatefulSet) String

func (this *StatefulSet) String() string

func (StatefulSet) SwaggerDoc

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

func (*StatefulSet) Unmarshal

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

func (*StatefulSet) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSet) XXX_DiscardUnknown()

func (*StatefulSet) XXX_Marshal added in v0.16.4

func (m *StatefulSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSet) XXX_Merge added in v0.16.4

func (m *StatefulSet) XXX_Merge(src proto.Message)

func (*StatefulSet) XXX_Size added in v0.16.4

func (m *StatefulSet) XXX_Size() int

func (*StatefulSet) XXX_Unmarshal added in v0.16.4

func (m *StatefulSet) XXX_Unmarshal(b []byte) error

type StatefulSetCondition

type StatefulSetCondition struct {
	// Type of statefulset condition.
	Type StatefulSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=StatefulSetConditionType"`
	// Status of the condition, one of True, False, Unknown.
	Status v1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
	// Last time the condition transitioned from one status to another.
	// +optional
	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"`
	// The reason for the condition's last transition.
	// +optional
	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
	// A human readable message indicating details about the transition.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
}

StatefulSetCondition describes the state of a statefulset at a certain point.

func (*StatefulSetCondition) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetCondition.

func (*StatefulSetCondition) DeepCopyInto

func (in *StatefulSetCondition) DeepCopyInto(out *StatefulSetCondition)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetCondition) Descriptor

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

func (*StatefulSetCondition) Marshal

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

func (*StatefulSetCondition) MarshalTo

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

func (*StatefulSetCondition) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSetCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetCondition) ProtoMessage

func (*StatefulSetCondition) ProtoMessage()

func (*StatefulSetCondition) Reset

func (m *StatefulSetCondition) Reset()

func (*StatefulSetCondition) Size

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

func (*StatefulSetCondition) String

func (this *StatefulSetCondition) String() string

func (StatefulSetCondition) SwaggerDoc

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

func (*StatefulSetCondition) Unmarshal

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

func (*StatefulSetCondition) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSetCondition) XXX_DiscardUnknown()

func (*StatefulSetCondition) XXX_Marshal added in v0.16.4

func (m *StatefulSetCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetCondition) XXX_Merge added in v0.16.4

func (m *StatefulSetCondition) XXX_Merge(src proto.Message)

func (*StatefulSetCondition) XXX_Size added in v0.16.4

func (m *StatefulSetCondition) XXX_Size() int

func (*StatefulSetCondition) XXX_Unmarshal added in v0.16.4

func (m *StatefulSetCondition) XXX_Unmarshal(b []byte) error

type StatefulSetConditionType

type StatefulSetConditionType string

type StatefulSetList

type StatefulSetList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

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

StatefulSetList is a collection of StatefulSets.

func (*StatefulSetList) DeepCopy

func (in *StatefulSetList) DeepCopy() *StatefulSetList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetList.

func (*StatefulSetList) DeepCopyInto

func (in *StatefulSetList) DeepCopyInto(out *StatefulSetList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetList) DeepCopyObject

func (in *StatefulSetList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StatefulSetList) Descriptor

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

func (*StatefulSetList) Marshal

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

func (*StatefulSetList) MarshalTo

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

func (*StatefulSetList) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSetList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetList) ProtoMessage

func (*StatefulSetList) ProtoMessage()

func (*StatefulSetList) Reset

func (m *StatefulSetList) Reset()

func (*StatefulSetList) Size

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

func (*StatefulSetList) String

func (this *StatefulSetList) String() string

func (StatefulSetList) SwaggerDoc

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

func (*StatefulSetList) Unmarshal

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

func (*StatefulSetList) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSetList) XXX_DiscardUnknown()

func (*StatefulSetList) XXX_Marshal added in v0.16.4

func (m *StatefulSetList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetList) XXX_Merge added in v0.16.4

func (m *StatefulSetList) XXX_Merge(src proto.Message)

func (*StatefulSetList) XXX_Size added in v0.16.4

func (m *StatefulSetList) XXX_Size() int

func (*StatefulSetList) XXX_Unmarshal added in v0.16.4

func (m *StatefulSetList) XXX_Unmarshal(b []byte) error

type StatefulSetOrdinals added in v0.26.0

type StatefulSetOrdinals struct {
	// start is the number representing the first replica's index. It may be used
	// to number replicas from an alternate index (eg: 1-indexed) over the default
	// 0-indexed names, or to orchestrate progressive movement of replicas from
	// one StatefulSet to another.
	// If set, replica indices will be in the range:
	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
	// If unset, defaults to 0. Replica indices will be in the range:
	//   [0, .spec.replicas).
	// +optional
	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
}

StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.

func (*StatefulSetOrdinals) DeepCopy added in v0.26.0

func (in *StatefulSetOrdinals) DeepCopy() *StatefulSetOrdinals

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetOrdinals.

func (*StatefulSetOrdinals) DeepCopyInto added in v0.26.0

func (in *StatefulSetOrdinals) DeepCopyInto(out *StatefulSetOrdinals)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetOrdinals) Descriptor added in v0.26.0

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

func (*StatefulSetOrdinals) Marshal added in v0.26.0

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

func (*StatefulSetOrdinals) MarshalTo added in v0.26.0

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

func (*StatefulSetOrdinals) MarshalToSizedBuffer added in v0.26.0

func (m *StatefulSetOrdinals) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetOrdinals) ProtoMessage added in v0.26.0

func (*StatefulSetOrdinals) ProtoMessage()

func (*StatefulSetOrdinals) Reset added in v0.26.0

func (m *StatefulSetOrdinals) Reset()

func (*StatefulSetOrdinals) Size added in v0.26.0

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

func (*StatefulSetOrdinals) String added in v0.26.0

func (this *StatefulSetOrdinals) String() string

func (StatefulSetOrdinals) SwaggerDoc added in v0.26.0

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

func (*StatefulSetOrdinals) Unmarshal added in v0.26.0

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

func (*StatefulSetOrdinals) XXX_DiscardUnknown added in v0.26.0

func (m *StatefulSetOrdinals) XXX_DiscardUnknown()

func (*StatefulSetOrdinals) XXX_Marshal added in v0.26.0

func (m *StatefulSetOrdinals) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetOrdinals) XXX_Merge added in v0.26.0

func (m *StatefulSetOrdinals) XXX_Merge(src proto.Message)

func (*StatefulSetOrdinals) XXX_Size added in v0.26.0

func (m *StatefulSetOrdinals) XXX_Size() int

func (*StatefulSetOrdinals) XXX_Unmarshal added in v0.26.0

func (m *StatefulSetOrdinals) XXX_Unmarshal(b []byte) error

type StatefulSetPersistentVolumeClaimRetentionPolicy added in v0.23.0

type StatefulSetPersistentVolumeClaimRetentionPolicy struct {
	// WhenDeleted specifies what happens to PVCs created from StatefulSet
	// VolumeClaimTemplates when the StatefulSet is deleted. The default policy
	// of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
	// `Delete` policy causes those PVCs to be deleted.
	WhenDeleted PersistentVolumeClaimRetentionPolicyType `json:"whenDeleted,omitempty" protobuf:"bytes,1,opt,name=whenDeleted,casttype=PersistentVolumeClaimRetentionPolicyType"`
	// WhenScaled specifies what happens to PVCs created from StatefulSet
	// VolumeClaimTemplates when the StatefulSet is scaled down. The default
	// policy of `Retain` causes PVCs to not be affected by a scaledown. The
	// `Delete` policy causes the associated PVCs for any excess pods above
	// the replica count to be deleted.
	WhenScaled PersistentVolumeClaimRetentionPolicyType `json:"whenScaled,omitempty" protobuf:"bytes,2,opt,name=whenScaled,casttype=PersistentVolumeClaimRetentionPolicyType"`
}

StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) DeepCopy added in v0.23.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetPersistentVolumeClaimRetentionPolicy.

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) DeepCopyInto added in v0.23.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) Descriptor added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) Marshal added in v0.23.0

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

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) MarshalTo added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) MarshalToSizedBuffer added in v0.23.0

func (m *StatefulSetPersistentVolumeClaimRetentionPolicy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) ProtoMessage added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) Reset added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) Size added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) String added in v0.23.0

func (StatefulSetPersistentVolumeClaimRetentionPolicy) SwaggerDoc added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) Unmarshal added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_DiscardUnknown added in v0.23.0

func (m *StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_DiscardUnknown()

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_Marshal added in v0.23.0

func (m *StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_Merge added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_Size added in v0.23.0

func (*StatefulSetPersistentVolumeClaimRetentionPolicy) XXX_Unmarshal added in v0.23.0

type StatefulSetSpec

type StatefulSetSpec struct {
	// replicas is the desired number of replicas of the given Template.
	// These are replicas in the sense that they are instantiations of the
	// same Template, but individual replicas also have a consistent identity.
	// If unspecified, defaults to 1.
	// TODO: Consider a rename of this field.
	// +optional
	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`

	// selector is a label query over pods that should match the replica count.
	// It must match the pod template's labels.
	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,2,opt,name=selector"`

	// template is the object that describes the pod that will be created if
	// insufficient replicas are detected. Each pod stamped out by the StatefulSet
	// will fulfill this Template, but have a unique identity from the rest
	// of the StatefulSet. Each pod will be named with the format
	// <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
	// "web" with index number "3" would be named "web-3".
	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`

	// volumeClaimTemplates is a list of claims that pods are allowed to reference.
	// The StatefulSet controller is responsible for mapping network identities to
	// claims in a way that maintains the identity of a pod. Every claim in
	// this list must have at least one matching (by name) volumeMount in one
	// container in the template. A claim in this list takes precedence over
	// any volumes in the template, with the same name.
	// TODO: Define the behavior if a claim already exists with the same name.
	// +optional
	VolumeClaimTemplates []v1.PersistentVolumeClaim `json:"volumeClaimTemplates,omitempty" protobuf:"bytes,4,rep,name=volumeClaimTemplates"`

	// serviceName is the name of the service that governs this StatefulSet.
	// This service must exist before the StatefulSet, and is responsible for
	// the network identity of the set. Pods get DNS/hostnames that follow the
	// pattern: pod-specific-string.serviceName.default.svc.cluster.local
	// where "pod-specific-string" is managed by the StatefulSet controller.
	ServiceName string `json:"serviceName" protobuf:"bytes,5,opt,name=serviceName"`

	// podManagementPolicy controls how pods are created during initial scale up,
	// when replacing pods on nodes, or when scaling down. The default policy is
	// `OrderedReady`, where pods are created in increasing order (pod-0, then
	// pod-1, etc) and the controller will wait until each pod is ready before
	// continuing. When scaling down, the pods are removed in the opposite order.
	// The alternative policy is `Parallel` which will create pods in parallel
	// to match the desired scale without waiting, and on scale down will delete
	// all pods at once.
	// +optional
	PodManagementPolicy PodManagementPolicyType `json:"podManagementPolicy,omitempty" protobuf:"bytes,6,opt,name=podManagementPolicy,casttype=PodManagementPolicyType"`

	// updateStrategy indicates the StatefulSetUpdateStrategy that will be
	// employed to update Pods in the StatefulSet when a revision is made to
	// Template.
	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`

	// revisionHistoryLimit is the maximum number of revisions that will
	// be maintained in the StatefulSet's revision history. The revision history
	// consists of all revisions not represented by a currently applied
	// StatefulSetSpec version. The default value is 10.
	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,8,opt,name=revisionHistoryLimit"`

	// Minimum number of seconds for which a newly created pod should be ready
	// without any of its container crashing for it to be considered available.
	// Defaults to 0 (pod will be considered available as soon as it is ready)
	// +optional
	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,9,opt,name=minReadySeconds"`

	// persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent
	// volume claims created from volumeClaimTemplates. By default, all persistent
	// volume claims are created as needed and retained until manually deleted. This
	// policy allows the lifecycle to be altered, for example by deleting persistent
	// volume claims when their stateful set is deleted, or when their pod is scaled
	// down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
	// which is alpha.  +optional
	PersistentVolumeClaimRetentionPolicy *StatefulSetPersistentVolumeClaimRetentionPolicy `json:"persistentVolumeClaimRetentionPolicy,omitempty" protobuf:"bytes,10,opt,name=persistentVolumeClaimRetentionPolicy"`

	// ordinals controls the numbering of replica indices in a StatefulSet. The
	// default ordinals behavior assigns a "0" index to the first replica and
	// increments the index by one for each additional replica requested. Using
	// the ordinals field requires the StatefulSetStartOrdinal feature gate to be
	// enabled, which is alpha.
	// +optional
	Ordinals *StatefulSetOrdinals `json:"ordinals,omitempty" protobuf:"bytes,11,opt,name=ordinals"`
}

A StatefulSetSpec is the specification of a StatefulSet.

func (*StatefulSetSpec) DeepCopy

func (in *StatefulSetSpec) DeepCopy() *StatefulSetSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetSpec.

func (*StatefulSetSpec) DeepCopyInto

func (in *StatefulSetSpec) DeepCopyInto(out *StatefulSetSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetSpec) Descriptor

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

func (*StatefulSetSpec) Marshal

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

func (*StatefulSetSpec) MarshalTo

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

func (*StatefulSetSpec) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSetSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetSpec) ProtoMessage

func (*StatefulSetSpec) ProtoMessage()

func (*StatefulSetSpec) Reset

func (m *StatefulSetSpec) Reset()

func (*StatefulSetSpec) Size

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

func (*StatefulSetSpec) String

func (this *StatefulSetSpec) String() string

func (StatefulSetSpec) SwaggerDoc

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

func (*StatefulSetSpec) Unmarshal

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

func (*StatefulSetSpec) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSetSpec) XXX_DiscardUnknown()

func (*StatefulSetSpec) XXX_Marshal added in v0.16.4

func (m *StatefulSetSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetSpec) XXX_Merge added in v0.16.4

func (m *StatefulSetSpec) XXX_Merge(src proto.Message)

func (*StatefulSetSpec) XXX_Size added in v0.16.4

func (m *StatefulSetSpec) XXX_Size() int

func (*StatefulSetSpec) XXX_Unmarshal added in v0.16.4

func (m *StatefulSetSpec) XXX_Unmarshal(b []byte) error

type StatefulSetStatus

type StatefulSetStatus struct {
	// observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
	// StatefulSet's generation, which is updated on mutation by the API Server.
	// +optional
	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`

	// replicas is the number of Pods created by the StatefulSet controller.
	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`

	// readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.
	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`

	// currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
	// indicated by currentRevision.
	CurrentReplicas int32 `json:"currentReplicas,omitempty" protobuf:"varint,4,opt,name=currentReplicas"`

	// updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
	// indicated by updateRevision.
	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,5,opt,name=updatedReplicas"`

	// currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
	// sequence [0,currentReplicas).
	CurrentRevision string `json:"currentRevision,omitempty" protobuf:"bytes,6,opt,name=currentRevision"`

	// updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
	// [replicas-updatedReplicas,replicas)
	UpdateRevision string `json:"updateRevision,omitempty" protobuf:"bytes,7,opt,name=updateRevision"`

	// collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
	// uses this field as a collision avoidance mechanism when it needs to create the name for the
	// newest ControllerRevision.
	// +optional
	CollisionCount *int32 `json:"collisionCount,omitempty" protobuf:"varint,9,opt,name=collisionCount"`

	// Represents the latest available observations of a statefulset's current state.
	// +optional
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions []StatefulSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,10,rep,name=conditions"`

	// Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.
	// +optional
	AvailableReplicas int32 `json:"availableReplicas" protobuf:"varint,11,opt,name=availableReplicas"`
}

StatefulSetStatus represents the current state of a StatefulSet.

func (*StatefulSetStatus) DeepCopy

func (in *StatefulSetStatus) DeepCopy() *StatefulSetStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetStatus.

func (*StatefulSetStatus) DeepCopyInto

func (in *StatefulSetStatus) DeepCopyInto(out *StatefulSetStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetStatus) Descriptor

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

func (*StatefulSetStatus) Marshal

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

func (*StatefulSetStatus) MarshalTo

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

func (*StatefulSetStatus) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSetStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetStatus) ProtoMessage

func (*StatefulSetStatus) ProtoMessage()

func (*StatefulSetStatus) Reset

func (m *StatefulSetStatus) Reset()

func (*StatefulSetStatus) Size

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

func (*StatefulSetStatus) String

func (this *StatefulSetStatus) String() string

func (StatefulSetStatus) SwaggerDoc

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

func (*StatefulSetStatus) Unmarshal

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

func (*StatefulSetStatus) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSetStatus) XXX_DiscardUnknown()

func (*StatefulSetStatus) XXX_Marshal added in v0.16.4

func (m *StatefulSetStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetStatus) XXX_Merge added in v0.16.4

func (m *StatefulSetStatus) XXX_Merge(src proto.Message)

func (*StatefulSetStatus) XXX_Size added in v0.16.4

func (m *StatefulSetStatus) XXX_Size() int

func (*StatefulSetStatus) XXX_Unmarshal added in v0.16.4

func (m *StatefulSetStatus) XXX_Unmarshal(b []byte) error

type StatefulSetUpdateStrategy

type StatefulSetUpdateStrategy struct {
	// Type indicates the type of the StatefulSetUpdateStrategy.
	// Default is RollingUpdate.
	// +optional
	Type StatefulSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=StatefulSetStrategyType"`
	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
	// +optional
	RollingUpdate *RollingUpdateStatefulSetStrategy `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
}

StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

func (*StatefulSetUpdateStrategy) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetUpdateStrategy.

func (*StatefulSetUpdateStrategy) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StatefulSetUpdateStrategy) Descriptor

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

func (*StatefulSetUpdateStrategy) Marshal

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

func (*StatefulSetUpdateStrategy) MarshalTo

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

func (*StatefulSetUpdateStrategy) MarshalToSizedBuffer added in v0.16.4

func (m *StatefulSetUpdateStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatefulSetUpdateStrategy) ProtoMessage

func (*StatefulSetUpdateStrategy) ProtoMessage()

func (*StatefulSetUpdateStrategy) Reset

func (m *StatefulSetUpdateStrategy) Reset()

func (*StatefulSetUpdateStrategy) Size

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

func (*StatefulSetUpdateStrategy) String

func (this *StatefulSetUpdateStrategy) String() string

func (StatefulSetUpdateStrategy) SwaggerDoc

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

func (*StatefulSetUpdateStrategy) Unmarshal

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

func (*StatefulSetUpdateStrategy) XXX_DiscardUnknown added in v0.16.4

func (m *StatefulSetUpdateStrategy) XXX_DiscardUnknown()

func (*StatefulSetUpdateStrategy) XXX_Marshal added in v0.16.4

func (m *StatefulSetUpdateStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatefulSetUpdateStrategy) XXX_Merge added in v0.16.4

func (m *StatefulSetUpdateStrategy) XXX_Merge(src proto.Message)

func (*StatefulSetUpdateStrategy) XXX_Size added in v0.16.4

func (m *StatefulSetUpdateStrategy) XXX_Size() int

func (*StatefulSetUpdateStrategy) XXX_Unmarshal added in v0.16.4

func (m *StatefulSetUpdateStrategy) XXX_Unmarshal(b []byte) error

type StatefulSetUpdateStrategyType

type StatefulSetUpdateStrategyType string

StatefulSetUpdateStrategyType is a string enumeration type that enumerates all possible update strategies for the StatefulSet controller. +enum

const (
	// RollingUpdateStatefulSetStrategyType indicates that update will be
	// applied to all Pods in the StatefulSet with respect to the StatefulSet
	// ordering constraints. When a scale operation is performed with this
	// strategy, new Pods will be created from the specification version indicated
	// by the StatefulSet's updateRevision.
	RollingUpdateStatefulSetStrategyType StatefulSetUpdateStrategyType = "RollingUpdate"
	// OnDeleteStatefulSetStrategyType triggers the legacy behavior. Version
	// tracking and ordered rolling restarts are disabled. Pods are recreated
	// from the StatefulSetSpec when they are manually deleted. When a scale
	// operation is performed with this strategy,specification version indicated
	// by the StatefulSet's currentRevision.
	OnDeleteStatefulSetStrategyType StatefulSetUpdateStrategyType = "OnDelete"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL