Documentation ¶
Overview ¶
Package contract provides support for the ClusterReconciler to handle with providers objects according to the Cluster API contract.
Index ¶
- func GetNestedRef(obj *unstructured.Unstructured, fields ...string) (*corev1.ObjectReference, error)
- func ObjToRef(obj client.Object) *corev1.ObjectReference
- func SetNestedRef(obj, refObj *unstructured.Unstructured, fields ...string) error
- type ControlPlaneContract
- func (c *ControlPlaneContract) IsProvisioning(obj *unstructured.Unstructured) (bool, error)
- func (c *ControlPlaneContract) IsScaling(obj *unstructured.Unstructured) (bool, error)
- func (c *ControlPlaneContract) IsUpgrading(obj *unstructured.Unstructured) (bool, error)
- func (c *ControlPlaneContract) MachineTemplate() *ControlPlaneMachineTemplate
- func (c *ControlPlaneContract) ReadyReplicas() *Int64
- func (c *ControlPlaneContract) Replicas() *Int64
- func (c *ControlPlaneContract) StatusReplicas() *Int64
- func (c *ControlPlaneContract) StatusVersion() *String
- func (c *ControlPlaneContract) UnavailableReplicas() *Int64
- func (c *ControlPlaneContract) UpdatedReplicas() *Int64
- func (c *ControlPlaneContract) Version() *String
- type ControlPlaneMachineTemplate
- type ControlPlaneTemplateContract
- type Duration
- type InfrastructureClusterContract
- type InfrastructureClusterControlPlaneEndpoint
- type Int64
- type Metadata
- type Path
- type Ref
- type String
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetNestedRef ¶
func GetNestedRef(obj *unstructured.Unstructured, fields ...string) (*corev1.ObjectReference, error)
GetNestedRef returns the ref value from a nested field in an Unstructured object.
func ObjToRef ¶
func ObjToRef(obj client.Object) *corev1.ObjectReference
ObjToRef returns a reference to the given object.
func SetNestedRef ¶
func SetNestedRef(obj, refObj *unstructured.Unstructured, fields ...string) error
SetNestedRef sets the value of a nested field in an Unstructured to a reference to the refObj provided.
Types ¶
type ControlPlaneContract ¶
type ControlPlaneContract struct{}
ControlPlaneContract encodes information about the Cluster API contract for ControlPlane objects like e.g the KubeadmControlPlane etc.
func ControlPlane ¶
func ControlPlane() *ControlPlaneContract
ControlPlane provide access to the information about the Cluster API contract for ControlPlane objects.
func (*ControlPlaneContract) IsProvisioning ¶
func (c *ControlPlaneContract) IsProvisioning(obj *unstructured.Unstructured) (bool, error)
IsProvisioning returns true if the control plane is being created for the first time. Returns false, if the control plane was already previously provisioned.
func (*ControlPlaneContract) IsScaling ¶
func (c *ControlPlaneContract) IsScaling(obj *unstructured.Unstructured) (bool, error)
IsScaling returns true if the control plane is in the middle of a scale operation, false otherwise. A control plane is considered scaling if: - status.replicas is not yet set. - spec.replicas != status.replicas. - spec.replicas != status.updatedReplicas. - spec.replicas != status.readyReplicas. - status.unavailableReplicas > 0.
func (*ControlPlaneContract) IsUpgrading ¶
func (c *ControlPlaneContract) IsUpgrading(obj *unstructured.Unstructured) (bool, error)
IsUpgrading returns true if the control plane is in the middle of an upgrade, false otherwise. A control plane is considered upgrading if: - if spec.version is greater than status.version. Note: A control plane is considered not upgrading if the status or status.version is not set.
func (*ControlPlaneContract) MachineTemplate ¶
func (c *ControlPlaneContract) MachineTemplate() *ControlPlaneMachineTemplate
MachineTemplate provides access to MachineTemplate in a ControlPlane object, if any. NOTE: When working with unstructured there is no way to understand if the ControlPlane provider do support a field in the type definition from the fact that a field is not set in a given instance. This is why in we are deriving if MachineTemplate is required from the ClusterClass in the topology reconciler code.
func (*ControlPlaneContract) ReadyReplicas ¶
func (c *ControlPlaneContract) ReadyReplicas() *Int64
ReadyReplicas provide access to status.readyReplicas field in a ControlPlane object, if any.
func (*ControlPlaneContract) Replicas ¶
func (c *ControlPlaneContract) Replicas() *Int64
Replicas provide access to replicas field in a ControlPlane object, if any. NOTE: When working with unstructured there is no way to understand if the ControlPlane provider do support a field in the type definition from the fact that a field is not set in a given instance. This is why in we are deriving if replicas is required from the ClusterClass in the topology reconciler code.
func (*ControlPlaneContract) StatusReplicas ¶
func (c *ControlPlaneContract) StatusReplicas() *Int64
StatusReplicas provide access to status.replicas field in a ControlPlane object, if any.
func (*ControlPlaneContract) StatusVersion ¶
func (c *ControlPlaneContract) StatusVersion() *String
StatusVersion provide access to version field in a ControlPlane object status, if any.
func (*ControlPlaneContract) UnavailableReplicas ¶ added in v1.2.10
func (c *ControlPlaneContract) UnavailableReplicas() *Int64
UnavailableReplicas provide access to the status.unavailableReplicas field in a ControlPlane object, if any. Applies to implementations using replicas.
func (*ControlPlaneContract) UpdatedReplicas ¶
func (c *ControlPlaneContract) UpdatedReplicas() *Int64
UpdatedReplicas provide access to status.updatedReplicas field in a ControlPlane object, if any.
func (*ControlPlaneContract) Version ¶
func (c *ControlPlaneContract) Version() *String
Version provide access to version field in a ControlPlane object, if any. NOTE: When working with unstructured there is no way to understand if the ControlPlane provider do support a field in the type definition from the fact that a field is not set in a given instance. This is why in we are deriving if version is required from the ClusterClass in the topology reconciler code.
type ControlPlaneMachineTemplate ¶
type ControlPlaneMachineTemplate struct{}
ControlPlaneMachineTemplate provides a helper struct for working with MachineTemplate in ClusterClass.
func (*ControlPlaneMachineTemplate) InfrastructureRef ¶
func (c *ControlPlaneMachineTemplate) InfrastructureRef() *Ref
InfrastructureRef provides access to the infrastructureRef of a MachineTemplate.
func (*ControlPlaneMachineTemplate) Metadata ¶
func (c *ControlPlaneMachineTemplate) Metadata() *Metadata
Metadata provides access to the metadata of a MachineTemplate.
func (*ControlPlaneMachineTemplate) NodeDrainTimeout ¶
func (c *ControlPlaneMachineTemplate) NodeDrainTimeout() *Duration
NodeDrainTimeout provides access to the nodeDrainTimeout of a MachineTemplate.
type ControlPlaneTemplateContract ¶
type ControlPlaneTemplateContract struct{}
ControlPlaneTemplateContract encodes information about the Cluster API contract for ControlPlaneTemplate objects like e.g. the KubeadmControlPlane etc.
func ControlPlaneTemplate ¶
func ControlPlaneTemplate() *ControlPlaneTemplateContract
ControlPlaneTemplate provide access to the information about the Cluster API contract for ControlPlaneTemplate objects.
func (*ControlPlaneTemplateContract) InfrastructureMachineTemplate ¶
func (c *ControlPlaneTemplateContract) InfrastructureMachineTemplate() *Ref
InfrastructureMachineTemplate provide access to InfrastructureMachineTemplate reference, if any. NOTE: When working with unstructured there is no way to understand if the ControlPlane provider do support a field in the type definition from the fact that a field is not set in a given instance. This is why in we are deriving if this field is required from the ClusterClass in the topology reconciler code.
type Duration ¶
type Duration struct {
// contains filtered or unexported fields
}
Duration represents an accessor to a metav1.Duration path value.
func (*Duration) Get ¶
func (i *Duration) Get(obj *unstructured.Unstructured) (*metav1.Duration, error)
Get gets the metav1.Duration value.
func (*Duration) Set ¶
func (i *Duration) Set(obj *unstructured.Unstructured, value metav1.Duration) error
Set sets the metav1.Duration value in the path.
type InfrastructureClusterContract ¶
type InfrastructureClusterContract struct{}
InfrastructureClusterContract encodes information about the Cluster API contract for InfrastructureCluster objects like e.g the DockerCluster, AWS Cluster etc.
func InfrastructureCluster ¶
func InfrastructureCluster() *InfrastructureClusterContract
InfrastructureCluster provide access to the information about the Cluster API contract for InfrastructureCluster objects.
func (*InfrastructureClusterContract) ControlPlaneEndpoint ¶ added in v1.1.6
func (c *InfrastructureClusterContract) ControlPlaneEndpoint() *InfrastructureClusterControlPlaneEndpoint
ControlPlaneEndpoint provides access to ControlPlaneEndpoint in an InfrastructureCluster object.
func (*InfrastructureClusterContract) IgnorePaths ¶
func (c *InfrastructureClusterContract) IgnorePaths(infrastructureCluster *unstructured.Unstructured) ([]Path, error)
IgnorePaths returns a list of paths to be ignored when reconciling an InfrastructureCluster. NOTE: The controlPlaneEndpoint struct currently contains two mandatory fields (host and port). As the host and port fields are not using omitempty, they are automatically set to their zero values if they are not set by the user. We don't want to reconcile the zero values as we would then overwrite changes applied by the infrastructure provider controller.
type InfrastructureClusterControlPlaneEndpoint ¶ added in v1.1.6
type InfrastructureClusterControlPlaneEndpoint struct{}
InfrastructureClusterControlPlaneEndpoint provides a helper struct for working with ControlPlaneEndpoint in an InfrastructureCluster object.
func (*InfrastructureClusterControlPlaneEndpoint) Host ¶ added in v1.1.6
func (c *InfrastructureClusterControlPlaneEndpoint) Host() *String
Host provides access to the host field in the ControlPlaneEndpoint in an InfrastructureCluster object.
func (*InfrastructureClusterControlPlaneEndpoint) Port ¶ added in v1.1.6
func (c *InfrastructureClusterControlPlaneEndpoint) Port() *Int64
Port provides access to the port field in the ControlPlaneEndpoint in an InfrastructureCluster object.
type Int64 ¶
type Int64 struct {
// contains filtered or unexported fields
}
Int64 represents an accessor to an int64 path value.
func (*Int64) Get ¶
func (i *Int64) Get(obj *unstructured.Unstructured) (*int64, error)
Get gets the int64 value.
func (*Int64) Set ¶
func (i *Int64) Set(obj *unstructured.Unstructured, value int64) error
Set sets the int64 value in the path.
type Metadata ¶
type Metadata struct {
// contains filtered or unexported fields
}
Metadata provides a helper struct for working with Metadata.
func (*Metadata) Get ¶
func (m *Metadata) Get(obj *unstructured.Unstructured) (*clusterv1.ObjectMeta, error)
Get gets the metadata object.
func (*Metadata) Set ¶
func (m *Metadata) Set(obj *unstructured.Unstructured, metadata *clusterv1.ObjectMeta) error
Set sets the metadata value. Note: We are blanking out empty label annotations, thus avoiding triggering infinite reconcile given that at json level label: {} or annotation: {} is different from no field, which is the corresponding value stored in etcd given that those fields are defined as omitempty.
type Path ¶
type Path []string
Path defines a how to access a field in an Unstructured object.
func (Path) IsParentOf ¶ added in v1.2.0
IsParentOf check if one path is Parent of the other.
type Ref ¶
type Ref struct {
// contains filtered or unexported fields
}
Ref provide a helper struct for working with references in Unstructured objects.
func (*Ref) Get ¶
func (r *Ref) Get(obj *unstructured.Unstructured) (*corev1.ObjectReference, error)
Get gets the reference value from the Unstructured object.
func (*Ref) Set ¶
func (r *Ref) Set(obj, refObj *unstructured.Unstructured) error
Set sets the reference value in the Unstructured object.
type String ¶
type String struct {
// contains filtered or unexported fields
}
String represents an accessor to a string path value.
func (*String) Get ¶
func (s *String) Get(obj *unstructured.Unstructured) (*string, error)
Get gets the string value.
func (*String) Set ¶
func (s *String) Set(obj *unstructured.Unstructured, value string) error
Set sets the string value in the path.