Documentation
¶
Overview ¶
Package v1 contains API Schema definitions for the stable v1 API group +kubebuilder:object:generate=true +groupName=stable.example.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "stable.example.com", 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 Color ¶
type Color struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ColorSpec `json:"spec,omitempty"` Status ColorStatus `json:"status,omitempty"` }
Color is the Schema for the colors API
func (*Color) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Color.
func (*Color) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Color) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ColorList ¶
type ColorList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Color `json:"items"` }
ColorList contains a list of Color
func (*ColorList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColorList.
func (*ColorList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ColorList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ColorSpec ¶
type ColorSpec struct { // Foo is an example field of Color. Edit Color_types.go to remove/update Foo string `json:"foo,omitempty"` // Color is an example field of Color. Edit Color_types.go to remove/update Color string `json:"color"` }
ColorSpec defines the desired state of Color
func (*ColorSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColorSpec.
func (*ColorSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ColorStatus ¶
type ColorStatus struct { }
ColorStatus defines the observed state of Color
func (*ColorStatus) DeepCopy ¶
func (in *ColorStatus) DeepCopy() *ColorStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ColorStatus.
func (*ColorStatus) DeepCopyInto ¶
func (in *ColorStatus) DeepCopyInto(out *ColorStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.