Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the dex v1alpha1 API group +kubebuilder:object:generate=true +groupName=dex.rudeigerc.dev
Index ¶
Constants ¶
This section is empty.
Variables ¶
var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "dex.rudeigerc.dev", 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 DexCluster ¶
type DexCluster struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec DexClusterSpec `json:"spec,omitempty"`
Status DexClusterStatus `json:"status,omitempty"`
}
DexCluster is the Schema for the dexclusters API
func (*DexCluster) DeepCopy ¶
func (in *DexCluster) DeepCopy() *DexCluster
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DexCluster.
func (*DexCluster) DeepCopyInto ¶
func (in *DexCluster) DeepCopyInto(out *DexCluster)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DexCluster) DeepCopyObject ¶
func (in *DexCluster) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DexClusterList ¶
type DexClusterList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []DexCluster `json:"items"`
}
DexClusterList contains a list of DexCluster
func (*DexClusterList) DeepCopy ¶
func (in *DexClusterList) DeepCopy() *DexClusterList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DexClusterList.
func (*DexClusterList) DeepCopyInto ¶
func (in *DexClusterList) DeepCopyInto(out *DexClusterList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DexClusterList) DeepCopyObject ¶
func (in *DexClusterList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DexClusterSpec ¶
type DexClusterSpec struct {
// +required
Config string `json:"config,omitempty"`
// Number of desired pods. This is a pointer to distinguish between explicit
// zero and not specified. Defaults to 1.
// +optional
Replicas *int32 `json:"replicas,omitempty"`
// +optional
Image string `json:"image,omitempty"`
// +optional
ImagePullPolicy corev1.PullPolicy `json:"imagePullPolicy,omitempty"`
// +optional
// +patchMergeKey=name
// +patchStrategy=merge
ImagePullSecrets []corev1.LocalObjectReference `json:"imagePullSecrets,omitempty" patchStrategy:"merge" patchMergeKey:"name"`
}
DexClusterSpec defines the desired state of DexCluster
func (*DexClusterSpec) DeepCopy ¶
func (in *DexClusterSpec) DeepCopy() *DexClusterSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DexClusterSpec.
func (*DexClusterSpec) DeepCopyInto ¶
func (in *DexClusterSpec) DeepCopyInto(out *DexClusterSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DexClusterStatus ¶
type DexClusterStatus struct {
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"`
}
DexClusterStatus defines the observed state of DexCluster
func (*DexClusterStatus) DeepCopy ¶
func (in *DexClusterStatus) DeepCopy() *DexClusterStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DexClusterStatus.
func (*DexClusterStatus) DeepCopyInto ¶
func (in *DexClusterStatus) DeepCopyInto(out *DexClusterStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.