Documentation ¶
Overview ¶
Package v1 contains API Schema definitions for the app v1 API group +kubebuilder:object:generate=true +groupName=workload.k8s.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "workload.k8s.io", Version: "v1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type Addons ¶
type Addons struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AddonsSpec `json:"spec,omitempty"` Status AddonsStatus `json:"status,omitempty"` }
Machine is the Schema for the Machine API +k8s:openapi-gen=true +kubebuilder:subresource:status +kubebuilder:printcolumn:name="PHASE",type="string",JSONPath=".status.phase",description="The Addons phase." +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp",description="CreationTimestamp is a timestamp representing the server time when this object was created. "
func (*Addons) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addons.
func (*Addons) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Addons) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AddonsList ¶
type AddonsList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Addons `json:"items"` }
AddonsList contains a list of ClusterAddons
func (*AddonsList) DeepCopy ¶
func (in *AddonsList) DeepCopy() *AddonsList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonsList.
func (*AddonsList) DeepCopyInto ¶
func (in *AddonsList) DeepCopyInto(out *AddonsList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AddonsList) DeepCopyObject ¶
func (in *AddonsList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AddonsSpec ¶
type AddonsSpec struct {
Foo string `json:"foo,omitempty"`
}
AddonsSpec is a description of Addons.
func (*AddonsSpec) DeepCopy ¶
func (in *AddonsSpec) DeepCopy() *AddonsSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonsSpec.
func (*AddonsSpec) DeepCopyInto ¶
func (in *AddonsSpec) DeepCopyInto(out *AddonsSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AddonsStatus ¶
type AddonsStatus struct { Phase string `json:"phase,omitempty"` Foo string `json:"foo,omitempty"` }
AddonsStatus represents information about the status of an Addons.
func (*AddonsStatus) DeepCopy ¶
func (in *AddonsStatus) DeepCopy() *AddonsStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonsStatus.
func (*AddonsStatus) DeepCopyInto ¶
func (in *AddonsStatus) DeepCopyInto(out *AddonsStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.