start ansible scripts

This commit is contained in:
2025-08-19 17:06:29 -05:00
parent 6ea3611e08
commit a642d2382d
4 changed files with 176 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
- name: 1. Prepare all nodes for Kubernetes
hosts: kube_cluster
roles:
- role: common
- name: 2. Initialize and configure the control plane
hosts: control_plane
roles:
- role: control-plane
- name: 3. Join worker nodes to the cluster
hosts: workers
roles:
- role: workers