Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the operator v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=operator.ibm.com
Package v1alpha1 contains API Schema definitions for the operator v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=operator.ibm.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: "operator.ibm.com", Version: "v1alpha1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type PodPreset ¶
type PodPreset struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +optional Spec PodPresetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"` }
PodPreset is the Schema for the podpresets API +k8s:openapi-gen=true +kubebuilder:subresource:status +kubebuilder:resource:path=podpresets,scope=Namespaced
func (*PodPreset) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodPreset.
func (*PodPreset) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PodPreset) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PodPresetList ¶
type PodPresetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []PodPreset `json:"items"` }
PodPresetList contains a list of PodPreset
func (*PodPresetList) DeepCopy ¶
func (in *PodPresetList) DeepCopy() *PodPresetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodPresetList.
func (*PodPresetList) DeepCopyInto ¶
func (in *PodPresetList) DeepCopyInto(out *PodPresetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PodPresetList) DeepCopyObject ¶
func (in *PodPresetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PodPresetSpec ¶
type PodPresetSpec struct { // Selector is a label query over a set of resources, in this case pods. // Required. Selector metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,1,opt,name=selector"` // Env defines the collection of EnvVar to inject into containers. // +optional Env []corev1.EnvVar `json:"env,omitempty" protobuf:"bytes,2,rep,name=env"` // EnvFrom defines the collection of EnvFromSource to inject into containers. // +optional EnvFrom []corev1.EnvFromSource `json:"envFrom,omitempty" protobuf:"bytes,3,rep,name=envFrom"` // Volumes defines the collection of Volume to inject into the pod. // +optional Volumes []corev1.Volume `json:"volumes,omitempty" protobuf:"bytes,4,rep,name=volumes"` // VolumeMounts defines the collection of VolumeMount to inject into containers. // +optional VolumeMounts []corev1.VolumeMount `json:"volumeMounts,omitempty" protobuf:"bytes,5,rep,name=volumeMounts"` }
PodPresetSpec defines the desired state of PodPreset +k8s:openapi-gen=true
func (*PodPresetSpec) DeepCopy ¶
func (in *PodPresetSpec) DeepCopy() *PodPresetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodPresetSpec.
func (*PodPresetSpec) DeepCopyInto ¶
func (in *PodPresetSpec) DeepCopyInto(out *PodPresetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.