ansible kubernetes deployment

This commit is contained in:
2025-08-20 09:52:28 -05:00
parent 6ea3611e08
commit 02b788ee63
17 changed files with 212 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# ------------------------------------------------------------------------------
# FILE: deploy_k8s.yml
# ------------------------------------------------------------------------------
- name: 1. Prepare all nodes for Kubernetes
hosts: kube_cluster
roles:
- role: kubernetes
- name: 2. Initialize and configure the control plane
hosts: fastpass_control_plane
roles:
- role: fastpass-control-plane
- name: 3. Join worker nodes to the cluster
hosts: fastpass-workers
roles:
- role: fastpass-workers