Documentation ¶
Overview ¶
Package v1alpha1 is the v1alpha1 version of the API.
Package v1alpha1 contains API Schema definitions for the configurator.gopaddle.io v1alpha1 API group +kubebuilder:object:generate=true +groupName=configurator.gopaddle.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "configurator.gopaddle.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 )
var SchemeGroupVersion = GroupVersion
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 CustomConfigMap ¶
type CustomConfigMap struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec CustomConfigMapSpec `json:"spec,omitempty"` }
CustomConfigMap is the Schema for the customconfigmaps API
func (*CustomConfigMap) DeepCopy ¶
func (in *CustomConfigMap) DeepCopy() *CustomConfigMap
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomConfigMap.
func (*CustomConfigMap) DeepCopyInto ¶
func (in *CustomConfigMap) DeepCopyInto(out *CustomConfigMap)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CustomConfigMap) DeepCopyObject ¶
func (in *CustomConfigMap) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CustomConfigMapList ¶
type CustomConfigMapList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []CustomConfigMap `json:"items"` }
CustomConfigMapList contains a list of CustomConfigMap
func (*CustomConfigMapList) DeepCopy ¶
func (in *CustomConfigMapList) DeepCopy() *CustomConfigMapList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomConfigMapList.
func (*CustomConfigMapList) DeepCopyInto ¶
func (in *CustomConfigMapList) DeepCopyInto(out *CustomConfigMapList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CustomConfigMapList) DeepCopyObject ¶
func (in *CustomConfigMapList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CustomConfigMapSpec ¶
type CustomConfigMapSpec struct { ConfigMapName string `json:"configMapName,omitempty"` Data map[string]string `json:"data,omitempty"` BinaryData map[string][]byte `json:"binaryData,omitempty"` }
CustomConfigMapSpec defines the desired state of CustomConfigMap
func (*CustomConfigMapSpec) DeepCopy ¶
func (in *CustomConfigMapSpec) DeepCopy() *CustomConfigMapSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomConfigMapSpec.
func (*CustomConfigMapSpec) DeepCopyInto ¶
func (in *CustomConfigMapSpec) DeepCopyInto(out *CustomConfigMapSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.