We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb12a0 commit 9ceca6aCopy full SHA for 9ceca6a
api/v1beta1/common_types.go
@@ -122,6 +122,9 @@ const (
122
ReplicasManagedByAnnotation = "cluster.x-k8s.io/replicas-managed-by"
123
)
124
125
+// NodeUninitializedTaint is added to the nodes at creation when using KubeadmBootstrap provider.
126
+// This taint is added to prevent workloads to be scheduled on the nodes till the labels are initially
127
+// synced form the machines to the nodes. The taint is removed form the node after the node labels are synced.
128
var NodeUninitializedTaint = corev1.Taint{
129
Key: "node.cluster.x-k8s.io/uninitialized",
130
Effect: corev1.TaintEffectNoSchedule,
0 commit comments