Skip to content

Commit

Permalink
Add clusterclass contract changes to v1alpha3-v1alpha4 conversion guide
Browse files Browse the repository at this point in the history
Signed-off-by: killianmuldoon <[email protected]>
  • Loading branch information
killianmuldoon committed Sep 30, 2021
1 parent 8bbfff6 commit 4e2d5cb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/book/src/developer/providers/v1alpha3-to-v1alpha4.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,3 +334,21 @@ should be executed before this changes.
- `spec.infrastructureTemplate` has been moved to `spec.machineTemplate.infrastructureRef`. Thus, cluster templates which include `KubeadmControlPlane`
have to be adjusted accordingly.
- `spec.nodeDrainTimeout` has been moved to `spec.machineTemplate.nodeDrainTimeout`.

## Required spec and status fields for Control Planes using 'version' for ClusterClass support
ControlPlane implementations using version must now [include a 'version' field as defined below in both its spec and its status](../architecture/controllers/control-plane.html#required-spec-fields-for-implementations-using-version).

`version` - is a string representing the Kubernetes version to be used
by the control plane machines. The value must be a valid semantic version;
also if the value provided by the user does not start with the v prefix, it
must be added.

This field is a requirement for ClusterClass compatibility.

## Required spec fields for Control Planes using 'Machines' for ClusterClass support
ControlPlane implementations that use an underlying MachineInfrastructure must now [include a 'machineTemplate' as defined below, with subordinate fields, in its Spec.](../architecture/controllers/control-plane.html#required-spec-fields-for-implementations-using-machines)

`machineTemplate` - is a struct containing details of the control plane
machine template.

This field is a requirement for ClusterClass compatibility.

0 comments on commit 4e2d5cb

Please sign in to comment.