1
0
IaC/ansible/playbooks/05_k8s_deploy.yaml

28 lines
485 B
YAML
Raw Normal View History

2022-10-24 02:50:38 +00:00
---
2022-11-01 09:50:18 +00:00
- name: configure control plane
hosts: k8s_control
gather_facts: true
become: true
roles:
- k8s_control
2022-11-01 09:13:56 +00:00
- name: configure calico networking
hosts: localhost
2022-10-24 02:50:38 +00:00
gather_facts: true
2022-11-01 09:13:56 +00:00
become: false
2022-10-24 02:50:38 +00:00
roles:
2022-11-01 09:13:56 +00:00
- k8s_network
2022-11-02 00:21:31 +00:00
- name: remove control-plane taints
hosts: localhost
gather_facts: false
become: false
roles:
- k8s_taint
2022-11-02 01:48:24 +00:00
- name: configure storage operator
hosts: localhost
gather_facts: false
become: false
roles:
2022-11-02 14:59:42 +00:00
- k8s_storage_deploy