Documentation ¶
Overview ¶
+gencrdrefdocs:force +groupName=infrastructure.cluster.x-k8s.io
Package v1alpha4 contains API Schema definitions for the infrastructure v1alpha4 API group +kubebuilder:object:generate=true +groupName=infrastructure.cluster.x-k8s.io
Index ¶
Constants ¶
const ( // ClusterFinalizer allows system to clean up resources associated with cluster before // removing it from the apiserver. ClusterFinalizer = "ibmcluster.infrastructure.cluster.x-k8s.io" )
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "infrastructure.cluster.x-k8s.io", Version: "v1alpha4"} // 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 IBMCluster ¶
type IBMCluster struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IBMClusterSpec `json:"spec,omitempty"` Status IBMClusterStatus `json:"status,omitempty"` }
IBMCluster is the Schema for the ibmclusters API
func (*IBMCluster) DeepCopy ¶
func (in *IBMCluster) DeepCopy() *IBMCluster
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMCluster.
func (*IBMCluster) DeepCopyInto ¶
func (in *IBMCluster) DeepCopyInto(out *IBMCluster)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IBMCluster) DeepCopyObject ¶
func (in *IBMCluster) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IBMClusterList ¶
type IBMClusterList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []IBMCluster `json:"items"` }
IBMClusterList contains a list of IBMCluster
func (*IBMClusterList) DeepCopy ¶
func (in *IBMClusterList) DeepCopy() *IBMClusterList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMClusterList.
func (*IBMClusterList) DeepCopyInto ¶
func (in *IBMClusterList) DeepCopyInto(out *IBMClusterList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IBMClusterList) DeepCopyObject ¶
func (in *IBMClusterList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IBMClusterSpec ¶
type IBMClusterSpec struct { // ControlPlaneEndpoint represents the endpoint used to communicate with the control plane. // +optional ControlPlaneEndpoint clusterv1.APIEndpoint `json:"controlPlaneEndpoint"` }
IBMClusterSpec defines the desired state of IBMCluster
func (*IBMClusterSpec) DeepCopy ¶
func (in *IBMClusterSpec) DeepCopy() *IBMClusterSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMClusterSpec.
func (*IBMClusterSpec) DeepCopyInto ¶
func (in *IBMClusterSpec) DeepCopyInto(out *IBMClusterSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IBMClusterStatus ¶
type IBMClusterStatus struct { // Ready signifies control plane ready Ready bool `json:"ready"` }
IBMClusterStatus defines the observed state of IBMCluster
func (*IBMClusterStatus) DeepCopy ¶
func (in *IBMClusterStatus) DeepCopy() *IBMClusterStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMClusterStatus.
func (*IBMClusterStatus) DeepCopyInto ¶
func (in *IBMClusterStatus) DeepCopyInto(out *IBMClusterStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.