Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the k8soperators.cmg.io v1alpha1 API group +kubebuilder:object:generate=true +groupName=k8soperators.cmg.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "k8soperators.cmg.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 ClusterSecret ¶
type ClusterSecret struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ClusterSecretSpec `json:"spec,omitempty"` Status ClusterSecretStatus `json:"status,omitempty"` }
ClusterSecret is the Schema for the clustersecrets API
func (*ClusterSecret) DeepCopy ¶
func (in *ClusterSecret) DeepCopy() *ClusterSecret
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecret.
func (*ClusterSecret) DeepCopyInto ¶
func (in *ClusterSecret) DeepCopyInto(out *ClusterSecret)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterSecret) DeepCopyObject ¶
func (in *ClusterSecret) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterSecretList ¶
type ClusterSecretList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ClusterSecret `json:"items"` }
ClusterSecretList contains a list of ClusterSecret
func (*ClusterSecretList) DeepCopy ¶
func (in *ClusterSecretList) DeepCopy() *ClusterSecretList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretList.
func (*ClusterSecretList) DeepCopyInto ¶
func (in *ClusterSecretList) DeepCopyInto(out *ClusterSecretList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterSecretList) DeepCopyObject ¶
func (in *ClusterSecretList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterSecretNamespaceRule ¶
type ClusterSecretNamespaceRule struct { Names []string `json:"exclude,omitempty" yaml:"exclude,omitempty"` Regexp *string `json:"regexp,omitempty" yaml:"regexp,omitempty"` Selector *metav1.LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"` }
func (*ClusterSecretNamespaceRule) DeepCopy ¶
func (in *ClusterSecretNamespaceRule) DeepCopy() *ClusterSecretNamespaceRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretNamespaceRule.
func (*ClusterSecretNamespaceRule) DeepCopyInto ¶
func (in *ClusterSecretNamespaceRule) DeepCopyInto(out *ClusterSecretNamespaceRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSecretNamespaces ¶
type ClusterSecretNamespaces struct { Include ClusterSecretNamespaceRule `json:"include,omitempty" yaml:"include,omitempty"` Exclude ClusterSecretNamespaceRule `json:"exclude,omitempty" yaml:"exclude,omitempty"` }
func (*ClusterSecretNamespaces) DeepCopy ¶
func (in *ClusterSecretNamespaces) DeepCopy() *ClusterSecretNamespaces
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretNamespaces.
func (*ClusterSecretNamespaces) DeepCopyInto ¶
func (in *ClusterSecretNamespaces) DeepCopyInto(out *ClusterSecretNamespaces)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSecretSpec ¶
type ClusterSecretSpec struct { Type corev1.SecretType `json:"type,omitempty" yaml:"type,omitempty"` Immutable *bool `json:"immutable,omitempty" yaml:"immutable,omitempty"` Data map[string][]byte `json:"data,omitempty" yaml:"data,omitempty"` Namespaces ClusterSecretNamespaces `json:"namespaces,omitempty" yaml:"namespaces,omitempty"` }
ClusterSecretSpec defines the desired state of ClusterSecret
func (*ClusterSecretSpec) DeepCopy ¶
func (in *ClusterSecretSpec) DeepCopy() *ClusterSecretSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretSpec.
func (*ClusterSecretSpec) DeepCopyInto ¶
func (in *ClusterSecretSpec) DeepCopyInto(out *ClusterSecretSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSecretStatus ¶
type ClusterSecretStatus struct { Namespaces []string `json:"namespaces,omitempty" yaml:"namespaces,omitempty"` Conditions []*metav1.Condition `json:"conditions,omitempty" yaml:"conditions,omitempty"` }
ClusterSecretStatus defines the observed state of ClusterSecret
func (*ClusterSecretStatus) DeepCopy ¶
func (in *ClusterSecretStatus) DeepCopy() *ClusterSecretStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStatus.
func (*ClusterSecretStatus) DeepCopyInto ¶
func (in *ClusterSecretStatus) DeepCopyInto(out *ClusterSecretStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.