Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the icontroller v1alpha1 API group +kubebuilder:object:generate=true +groupName=icontroller.i.keisukeyamashita.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "icontroller.i.keisukeyamashita.com", 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 Eye ¶
type Eye struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec EyeSpec `json:"spec,omitempty"`
Status EyeStatus `json:"status,omitempty"`
}
Eye is the Schema for the eyes API
func (*Eye) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Eye.
func (*Eye) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Eye) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EyeList ¶
type EyeList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Eye `json:"items"`
}
EyeList contains a list of Eye
func (*EyeList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EyeList.
func (*EyeList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EyeList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EyeSpec ¶
type EyeSpec struct {
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
// Important: Run "make" to regenerate code after modifying this file
// +kubebuilder:validation:Required
Lifetime string `json:"lifetime"`
SecretRef SecretRef `json:"secretRef,omitempty"`
}
EyeSpec defines the desired state of Eye
func (*EyeSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EyeSpec.
func (*EyeSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EyeStatus ¶
type EyeStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
NotExpired bool `json:"notExpired"`
}
EyeStatus defines the observed state of Eye
func (*EyeStatus) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EyeStatus.
func (*EyeStatus) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecretRef ¶
type SecretRef struct {
Name string `json:"name"`
}
SecretRef ...
func (*SecretRef) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretRef.
func (*SecretRef) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.