Documentation
¶
Overview ¶
Package scope provides types for handling all the information to process a request in the topology/ClusterReconciler controller.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterBlueprint ¶
type ClusterBlueprint struct { // Topology holds the topology info from Cluster.Spec. Topology *clusterv1.Topology // ClusterClass holds the ClusterClass object referenced from Cluster.Spec.Topology. ClusterClass *clusterv1.ClusterClass // InfrastructureClusterTemplate holds the InfrastructureClusterTemplate referenced from ClusterClass. InfrastructureClusterTemplate *unstructured.Unstructured // ControlPlane holds the ControlPlaneBlueprint derived from ClusterClass. ControlPlane *ControlPlaneBlueprint // MachineDeployments holds the MachineDeploymentBlueprints derived from ClusterClass. MachineDeployments map[string]*MachineDeploymentBlueprint }
ClusterBlueprint holds all the objects required for computing the desired state of a managed Cluster topology, including the ClusterClass and all the referenced templates.
func (*ClusterBlueprint) HasControlPlaneInfrastructureMachine ¶
func (b *ClusterBlueprint) HasControlPlaneInfrastructureMachine() bool
HasControlPlaneInfrastructureMachine checks whether the clusterClass mandates the controlPlane has infrastructureMachines.
func (*ClusterBlueprint) HasMachineDeployments ¶
func (b *ClusterBlueprint) HasMachineDeployments() bool
HasMachineDeployments checks whether the topology has MachineDeployments.
type ClusterState ¶
type ClusterState struct { // Cluster holds the Cluster object. Cluster *clusterv1.Cluster // InfrastructureCluster holds the infrastructure cluster object referenced by the Cluster. InfrastructureCluster *unstructured.Unstructured // ControlPlane holds the controlplane object referenced by the Cluster. ControlPlane *ControlPlaneState // MachineDeployments holds the machine deployments in the Cluster. MachineDeployments map[string]*MachineDeploymentState }
ClusterState holds all the objects representing the state of a managed Cluster topology. NOTE: please note that we are going to deal with two different type state, the current state as read from the API server, and the desired state resulting from processing the ClusterBlueprint.
type ControlPlaneBlueprint ¶
type ControlPlaneBlueprint struct { // Template holds the control plane template referenced from ClusterClass. Template *unstructured.Unstructured // InfrastructureMachineTemplate holds the infrastructure machine template for the control plane, if defined in the ClusterClass. InfrastructureMachineTemplate *unstructured.Unstructured }
ControlPlaneBlueprint holds the templates required for computing the desired state of a managed control plane.
type ControlPlaneState ¶
type ControlPlaneState struct { // Object holds the ControlPlane object. Object *unstructured.Unstructured // InfrastructureMachineTemplate holds the infrastructure template referenced by the ControlPlane object. InfrastructureMachineTemplate *unstructured.Unstructured }
ControlPlaneState holds all the objects representing the state of a managed control plane.
type MachineDeploymentBlueprint ¶
type MachineDeploymentBlueprint struct { // Metadata holds the metadata for a MachineDeployment. // NOTE: This is a convenience copy of the metadata field from Cluster.Spec.Topology.Workers.MachineDeployments[x]. Metadata clusterv1.ObjectMeta // BootstrapTemplate holds the bootstrap template for a MachineDeployment referenced from ClusterClass. BootstrapTemplate *unstructured.Unstructured // InfrastructureMachineTemplate holds the infrastructure machine template for a MachineDeployment referenced from ClusterClass. InfrastructureMachineTemplate *unstructured.Unstructured }
MachineDeploymentBlueprint holds the templates required for computing the desired state of a managed MachineDeployment; it also holds a copy of the MachineDeployment metadata from Cluster.Topology, thus providing all the required info in a single place.
type MachineDeploymentState ¶
type MachineDeploymentState struct { // Object holds the MachineDeployment object. Object *clusterv1.MachineDeployment // BootstrapTemplate holds the bootstrap template referenced by the MachineDeployment object. BootstrapTemplate *unstructured.Unstructured // InfrastructureMachineTemplate holds the infrastructure machine template referenced by the MachineDeployment object. InfrastructureMachineTemplate *unstructured.Unstructured }
MachineDeploymentState holds all the objects representing the state of a managed deployment.
type Scope ¶
type Scope struct { // Blueprint holds all the objects required for computing the desired state of a managed topology. Blueprint *ClusterBlueprint // Current holds the current state of the managed topology. Current *ClusterState // Desired holds the desired state of the managed topology. Desired *ClusterState }
Scope holds all the information to process a request in the topology/ClusterReconciler controller.