Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the extensions v1alpha1 API group +kubebuilder:object:generate=true +groupName=extensions.toolkit.fluxcd.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "extensions.toolkit.fluxcd.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 ClusterConfigMap ¶
type ClusterConfigMap struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ClusterConfigMapSpec `json:"spec,omitempty"` Status ClusterConfigMapStatus `json:"status,omitempty"` }
ClusterConfigMap is the Schema for the clusterconfigmaps API
func (*ClusterConfigMap) DeepCopy ¶
func (in *ClusterConfigMap) DeepCopy() *ClusterConfigMap
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfigMap.
func (*ClusterConfigMap) DeepCopyInto ¶
func (in *ClusterConfigMap) DeepCopyInto(out *ClusterConfigMap)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterConfigMap) DeepCopyObject ¶
func (in *ClusterConfigMap) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterConfigMapGenerateTo ¶
type ClusterConfigMapGenerateTo struct {
NamespaceSelectors metav1.LabelSelector `json:"namespaceSelectors"`
}
func (*ClusterConfigMapGenerateTo) DeepCopy ¶
func (in *ClusterConfigMapGenerateTo) DeepCopy() *ClusterConfigMapGenerateTo
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfigMapGenerateTo.
func (*ClusterConfigMapGenerateTo) DeepCopyInto ¶
func (in *ClusterConfigMapGenerateTo) DeepCopyInto(out *ClusterConfigMapGenerateTo)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterConfigMapList ¶
type ClusterConfigMapList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ClusterConfigMap `json:"items"` }
ClusterConfigMapList contains a list of ClusterConfigMap
func (*ClusterConfigMapList) DeepCopy ¶
func (in *ClusterConfigMapList) DeepCopy() *ClusterConfigMapList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfigMapList.
func (*ClusterConfigMapList) DeepCopyInto ¶
func (in *ClusterConfigMapList) DeepCopyInto(out *ClusterConfigMapList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterConfigMapList) DeepCopyObject ¶
func (in *ClusterConfigMapList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterConfigMapSpec ¶
type ClusterConfigMapSpec struct { // Data contains the configuration data. // Each key must consist of alphanumeric characters, '-', '_' or '.'. Data map[string]string `json:"data"` // GenerateTo stores an array of LabelSelectors for matching on the specified namespace selectors. GenerateTo ClusterConfigMapGenerateTo `json:"generateTo"` }
ClusterConfigMapSpec defines the desired state of ClusterConfigMap
func (*ClusterConfigMapSpec) DeepCopy ¶
func (in *ClusterConfigMapSpec) DeepCopy() *ClusterConfigMapSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfigMapSpec.
func (*ClusterConfigMapSpec) DeepCopyInto ¶
func (in *ClusterConfigMapSpec) DeepCopyInto(out *ClusterConfigMapSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterConfigMapStatus ¶
type ClusterConfigMapStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file ConfigMaps []corev1.ObjectReference `json:"configMaps,omitempty"` }
ClusterConfigMapStatus defines the observed state of ClusterConfigMap
func (*ClusterConfigMapStatus) DeepCopy ¶
func (in *ClusterConfigMapStatus) DeepCopy() *ClusterConfigMapStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfigMapStatus.
func (*ClusterConfigMapStatus) DeepCopyInto ¶
func (in *ClusterConfigMapStatus) DeepCopyInto(out *ClusterConfigMapStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.