Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "addons.x-k8s.io", Version: "v1alpha1"} // 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 Generic ¶
type Generic struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec GenericSpec `json:"spec,omitempty"` Status GenericStatus `json:"status,omitempty"` }
Generic is the Schema for the generics API +kubebuilder:subresource:status
func (*Generic) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Generic.
func (*Generic) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Generic) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GenericList ¶
type GenericList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Generic `json:"items"` }
GenericList contains a list of Generic
func (*GenericList) DeepCopy ¶
func (in *GenericList) DeepCopy() *GenericList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericList.
func (*GenericList) DeepCopyInto ¶
func (in *GenericList) DeepCopyInto(out *GenericList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GenericList) DeepCopyObject ¶
func (in *GenericList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GenericSpec ¶
type GenericSpec struct { ObjectKind ObjectKind `json:"objectKind"` Channel string `json:"channel"` }
GenericSpec defines the desired state of Generic
func (*GenericSpec) DeepCopy ¶
func (in *GenericSpec) DeepCopy() *GenericSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericSpec.
func (*GenericSpec) DeepCopyInto ¶
func (in *GenericSpec) DeepCopyInto(out *GenericSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GenericStatus ¶
type GenericStatus struct { }
GenericStatus defines the observed state of Generic
func (*GenericStatus) DeepCopy ¶
func (in *GenericStatus) DeepCopy() *GenericStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericStatus.
func (*GenericStatus) DeepCopyInto ¶
func (in *GenericStatus) DeepCopyInto(out *GenericStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ObjectKind ¶
type ObjectKind struct { Kind string `json:"kind"` Group string `json:"group"` Version string `json:"version"` }
func (*ObjectKind) DeepCopy ¶
func (in *ObjectKind) DeepCopy() *ObjectKind
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectKind.
func (*ObjectKind) DeepCopyInto ¶
func (in *ObjectKind) DeepCopyInto(out *ObjectKind)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.