From 0e168e0294efec9472131e48ed48feddb115c99a Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 5 Jul 2025 11:19:22 -0500 Subject: [PATCH] kubernetes: Prepare k8s control plane nodes The `kubernetes.yml` playbook now applies the _kubelet_ role to hosts in the _k8s-controller_ group. This will prepare them to join the cluster as control plane nodes, but will not actually add them to the cluster. --- kubernetes.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kubernetes.yml b/kubernetes.yml index c3f46e9..2bea3a2 100644 --- a/kubernetes.yml +++ b/kubernetes.yml @@ -1,3 +1,7 @@ +- hosts: k8s-controller + roles: + - role: kubelet + - hosts: k8s-node roles: - role: k8s-worker