kubeasz/01.prepare.yml

25 lines
499 B
YAML
Raw Normal View History

# [optional] to synchronize time of nodes with 'chrony'
2018-08-17 09:18:55 +08:00
- hosts: all
roles:
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" }
# to create CA, kubeconfig, kube-proxy.kubeconfig etc. on 'deploy' node
2017-11-11 19:14:21 +08:00
- hosts: deploy
roles:
- deploy
2017-11-11 19:14:21 +08:00
# prepare tasks for all nodes
- hosts:
2018-03-02 08:40:29 +08:00
- kube-master
- kube-node
2017-11-25 21:31:00 +08:00
- deploy
- etcd
2017-12-15 17:27:56 +08:00
- lb
2017-11-11 19:14:21 +08:00
roles:
- prepare
# [optional] to install loadbalance service, only needed by multi-master cluster
2017-11-11 19:14:21 +08:00
- hosts: lb
roles:
- lb