Experimental Feature: MachineSetPreflightChecks (alpha)
The MachineSetPreflightChecks feature can provide additional safety while creating new Machines and remediating existing unhealthy Machines of a MachineSet.
When a MachineSet creates machines under certain circumstances, the operation fails or leads to a new machine that will be deleted and recreated in a short timeframe, leading to unwanted Machine churn. Some of these circumstances include, but not limited to, creating a new Machine when Kubernetes version skew could be violated or joining a Machine when the Control Plane is upgrading leading to failure because of mixed kube-apiserver version or due to the cluster load balancer delays in adapting to the changes.
Enabling MachineSetPreflightChecks provides safety in such circumstances by making sure that a Machine is only created when it is safe to do so.
Feature gate name: MachineSetPreflightChecks
Variable name to enable/disable the feature gate: EXP_MACHINE_SET_PREFLIGHT_CHECKS
Supported PreflightChecks
ControlPlaneIsStable
- This preflight check ensures that the ControlPlane is currently stable i.e. the ControlPlane is currently neither provisioning nor upgrading.
- This preflight check is only performed if:
- The Cluster uses a ControlPlane provider.
- ControlPlane version is defined (
ControlPlane.spec.versionis set).
KubernetesVersionSkew
- This preflight check ensures that the MachineSet and the ControlPlane conform to the Kubernetes version skew.
- This preflight check is only performed if:
- The Cluster uses a ControlPlane provider.
- ControlPlane version is defined (
ControlPlane.spec.versionis set). - MachineSet version is defined (
MachineSet.spec.template.spec.versionis set).
KubeadmVersionSkew
- This preflight check ensures that the MachineSet and the ControlPlane conform to the kubeadm version skew.
- This preflight check is only performed if:
- The Cluster uses a ControlPlane provider.
- ControlPlane version is defined (
ControlPlane.spec.versionis set). - MachineSet version is defined (
MachineSet.spec.template.spec.versionis set). - MachineSet uses the
KubeadmBootstrap provider.
Opting out of PreflightChecks
Once the feature flag is enabled the preflight checks are enabled for all the MachineSets including new and existing MachineSets.
It is possible to opt-out of one or all of the preflight checks on a per MachineSet basis by specifying a comma-separated list of the preflight checks on the
machineset.cluster.x-k8s.io/skip-preflight-checks annotation on the MachineSet.
Examples:
- To opt out of all the preflight checks set the
machineset.cluster.x-k8s.io/skip-preflight-checks: Allannotation. - To opt out of the
ControlPlaneIsStablepreflight check set themachineset.cluster.x-k8s.io/skip-preflight-checks: ControlPlaneIsStableannotation. - To opt out of multiple preflight checks set the
machineset.cluster.x-k8s.io/skip-preflight-checks: ControlPlaneIsStable,KubernetesVersionSkewannotation.