123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- ---
- - name: Gather facts from all the nodes
- hosts: all
- - name: Apply common installation and config
- hosts: manager, compute
- gather_facts: false
- roles:
- - common
- - name: Apply GPU node config
- hosts: compute
- gather_facts: false
- roles:
- - compute_gpu
- - name: Apply manager config
- hosts: manager
- gather_facts: false
- roles:
- - manager
- - name: Apply firewalld config on manager and compute nodes
- hosts: manager, compute
- gather_facts: false
- roles:
- - firewalld
- - name: Start K8s on manager server
- hosts: manager
- gather_facts: false
- roles:
- - startmanager
- - name: Start K8s worker servers on compute nodes
- hosts: compute
- gather_facts: false
- roles:
- - startworkers
- - name: Start K8s worker servers on manager nodes
- hosts: manager
- gather_facts: false
- roles:
- - startservices
|