Documentation ¶
Overview ¶
Package v1beta1 contains API Schema definitions for the binding v1beta1 API group +kubebuilder:object:generate=true +groupName=binding.kubepreset.dev
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "binding.kubepreset.dev", Version: "v1beta1"} // 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 CustomPod ¶
type CustomPod struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec CustomPodSpec `json:"spec,omitempty"` }
CustomPod is the Schema for the custompods API
func (*CustomPod) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomPod.
func (*CustomPod) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CustomPod) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CustomPodList ¶
type CustomPodList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []CustomPod `json:"items"` }
CustomPodList contains a list of CustomPod
func (*CustomPodList) DeepCopy ¶
func (in *CustomPodList) DeepCopy() *CustomPodList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomPodList.
func (*CustomPodList) DeepCopyInto ¶
func (in *CustomPodList) DeepCopyInto(out *CustomPodList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CustomPodList) DeepCopyObject ¶
func (in *CustomPodList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CustomPodSpec ¶
type CustomPodSpec struct { InitContainers []corev1.Container `json:"initContainers,omitempty"` Containers []corev1.Container `json:"containers,omitempty"` Volumes []corev1.Volume `json:"volumes,omitempty"` }
CustomPodSpec defines the desired state of CustomPod
func (*CustomPodSpec) DeepCopy ¶
func (in *CustomPodSpec) DeepCopy() *CustomPodSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomPodSpec.
func (*CustomPodSpec) DeepCopyInto ¶
func (in *CustomPodSpec) DeepCopyInto(out *CustomPodSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.