Documentation ¶
Index ¶
- Constants
- Variables
- func DeepCopy_apps_StatefulSet(in interface{}, out interface{}, c *conversion.Cloner) error
- func DeepCopy_apps_StatefulSetList(in interface{}, out interface{}, c *conversion.Cloner) error
- func DeepCopy_apps_StatefulSetSpec(in interface{}, out interface{}, c *conversion.Cloner) error
- func DeepCopy_apps_StatefulSetStatus(in interface{}, out interface{}, c *conversion.Cloner) error
- func Kind(kind string) unversioned.GroupKind
- func RegisterDeepCopies(scheme *runtime.Scheme) error
- func Resource(resource string) unversioned.GroupResource
- type StatefulSet
- type StatefulSetList
- type StatefulSetSpec
- type StatefulSetStatus
Constants ¶
const GroupName = "apps"
GroupName is the group name use in this package
Variables ¶
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func DeepCopy_apps_StatefulSet ¶ added in v1.5.0
func DeepCopy_apps_StatefulSet(in interface{}, out interface{}, c *conversion.Cloner) error
func DeepCopy_apps_StatefulSetList ¶ added in v1.5.0
func DeepCopy_apps_StatefulSetList(in interface{}, out interface{}, c *conversion.Cloner) error
func DeepCopy_apps_StatefulSetSpec ¶ added in v1.5.0
func DeepCopy_apps_StatefulSetSpec(in interface{}, out interface{}, c *conversion.Cloner) error
func DeepCopy_apps_StatefulSetStatus ¶ added in v1.5.0
func DeepCopy_apps_StatefulSetStatus(in interface{}, out interface{}, c *conversion.Cloner) error
func Kind ¶
func Kind(kind string) unversioned.GroupKind
Kind takes an unqualified kind and returns a Group qualified GroupKind
func RegisterDeepCopies ¶ added in v1.4.0
RegisterDeepCopies adds deep-copy functions to the given scheme. Public to allow building arbitrary schemes.
func Resource ¶
func Resource(resource string) unversioned.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type StatefulSet ¶ added in v1.5.0
type StatefulSet struct { unversioned.TypeMeta `json:",inline"` // +optional api.ObjectMeta `json:"metadata,omitempty"` // Spec defines the desired identities of pods in this set. // +optional Spec StatefulSetSpec `json:"spec,omitempty"` // 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"` }
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) CodecDecodeSelf ¶ added in v1.5.0
func (x *StatefulSet) CodecDecodeSelf(d *codec1978.Decoder)
func (*StatefulSet) CodecEncodeSelf ¶ added in v1.5.0
func (x *StatefulSet) CodecEncodeSelf(e *codec1978.Encoder)
type StatefulSetList ¶ added in v1.5.0
type StatefulSetList struct { unversioned.TypeMeta `json:",inline"` // +optional unversioned.ListMeta `json:"metadata,omitempty"` Items []StatefulSet `json:"items"` }
StatefulSetList is a collection of StatefulSets.
func (*StatefulSetList) CodecDecodeSelf ¶ added in v1.5.0
func (x *StatefulSetList) CodecDecodeSelf(d *codec1978.Decoder)
func (*StatefulSetList) CodecEncodeSelf ¶ added in v1.5.0
func (x *StatefulSetList) CodecEncodeSelf(e *codec1978.Encoder)
type StatefulSetSpec ¶ added in v1.5.0
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"` // Selector is a label query over pods that should match the replica count. // If empty, defaulted to labels on the pod template. // More info: http://kubernetes.io/docs/user-guide/labels#label-selectors // +optional Selector *unversioned.LabelSelector `json:"selector,omitempty"` // 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. Template api.PodTemplateSpec `json:"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 []api.PersistentVolumeClaim `json:"volumeClaimTemplates,omitempty"` // 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"` }
A StatefulSetSpec is the specification of a StatefulSet.
func (*StatefulSetSpec) CodecDecodeSelf ¶ added in v1.5.0
func (x *StatefulSetSpec) CodecDecodeSelf(d *codec1978.Decoder)
func (*StatefulSetSpec) CodecEncodeSelf ¶ added in v1.5.0
func (x *StatefulSetSpec) CodecEncodeSelf(e *codec1978.Encoder)
type StatefulSetStatus ¶ added in v1.5.0
type StatefulSetStatus struct { // most recent generation observed by this autoscaler. // +optional ObservedGeneration *int64 `json:"observedGeneration,omitempty"` // Replicas is the number of actual replicas. Replicas int32 `json:"replicas"` }
StatefulSetStatus represents the current state of a StatefulSet.
func (*StatefulSetStatus) CodecDecodeSelf ¶ added in v1.5.0
func (x *StatefulSetStatus) CodecDecodeSelf(d *codec1978.Decoder)
func (*StatefulSetStatus) CodecEncodeSelf ¶ added in v1.5.0
func (x *StatefulSetStatus) CodecEncodeSelf(e *codec1978.Encoder)
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package install installs the apps API group, making it available as an option to all of the API encoding/decoding machinery.
|
Package install installs the apps API group, making it available as an option to all of the API encoding/decoding machinery. |
Package v1beta1 is a generated protocol buffer package.
|
Package v1beta1 is a generated protocol buffer package. |