35 lines
658 B
YAML
35 lines
658 B
YAML
---
|
|
# - name: configure control plane
|
|
# hosts: k8s_control
|
|
# gather_facts: true
|
|
# become: true
|
|
# roles:
|
|
# - k8s_control
|
|
|
|
# - name: configure calico networking
|
|
# hosts: localhost
|
|
# gather_facts: true
|
|
# become: false
|
|
# roles:
|
|
# - k8s_network
|
|
|
|
# - name: remove control-plane taints
|
|
# hosts: localhost
|
|
# gather_facts: false
|
|
# become: false
|
|
# roles:
|
|
# - k8s_taint
|
|
|
|
# - name: configure storage operator
|
|
# hosts: localhost
|
|
# gather_facts: false
|
|
# become: false
|
|
# roles:
|
|
# - k8s_storage_ebs_deploy
|
|
|
|
- name: configure cert manager
|
|
hosts: localhost
|
|
gather_facts: false
|
|
become: false
|
|
roles:
|
|
- k8s_cert_manager |