Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the dpu v1alpha1 API group +kubebuilder:object:generate=true +groupName=dpu.openshift.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "dpu.openshift.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 DpuClusterConfig ¶
type DpuClusterConfig struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DpuClusterConfigSpec `json:"spec,omitempty"` Status DpuClusterConfigStatus `json:"status,omitempty"` }
DpuClusterConfig is the Schema for the dpuclusterconfigs API
func (*DpuClusterConfig) DeepCopy ¶
func (in *DpuClusterConfig) DeepCopy() *DpuClusterConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DpuClusterConfig.
func (*DpuClusterConfig) DeepCopyInto ¶
func (in *DpuClusterConfig) DeepCopyInto(out *DpuClusterConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DpuClusterConfig) DeepCopyObject ¶
func (in *DpuClusterConfig) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DpuClusterConfigList ¶
type DpuClusterConfigList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []DpuClusterConfig `json:"items"` }
DpuClusterConfigList contains a list of DpuClusterConfig
func (*DpuClusterConfigList) DeepCopy ¶
func (in *DpuClusterConfigList) DeepCopy() *DpuClusterConfigList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DpuClusterConfigList.
func (*DpuClusterConfigList) DeepCopyInto ¶
func (in *DpuClusterConfigList) DeepCopyInto(out *DpuClusterConfigList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DpuClusterConfigList) DeepCopyObject ¶
func (in *DpuClusterConfigList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DpuClusterConfigSpec ¶
type DpuClusterConfigSpec struct { // KubeConfigFile is the secret name of the tenant cluster kubeconfig file KubeConfigFile string `json:"kubeConfigFile,omitempty"` // PoolName is the name of the MachineConfigPool CR which contains // the BF2 nodes in the infra cluster. PoolName string `json:"poolName"` // nodeSelector specifies a label selector for Machines NodeSelector *metav1.LabelSelector `json:"nodeSelector,omitempty"` }
DpuClusterConfigSpec defines the desired state of DpuClusterConfig
func (*DpuClusterConfigSpec) DeepCopy ¶
func (in *DpuClusterConfigSpec) DeepCopy() *DpuClusterConfigSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DpuClusterConfigSpec.
func (*DpuClusterConfigSpec) DeepCopyInto ¶
func (in *DpuClusterConfigSpec) DeepCopyInto(out *DpuClusterConfigSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DpuClusterConfigStatus ¶
type DpuClusterConfigStatus struct { // Conditions represent the latest available observations of an object's state Conditions []metav1.Condition `json:"conditions"` }
DpuClusterConfigStatus defines the observed state of DpuClusterConfig
func (*DpuClusterConfigStatus) DeepCopy ¶
func (in *DpuClusterConfigStatus) DeepCopy() *DpuClusterConfigStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DpuClusterConfigStatus.
func (*DpuClusterConfigStatus) DeepCopyInto ¶
func (in *DpuClusterConfigStatus) DeepCopyInto(out *DpuClusterConfigStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.