22 lines
486 B
YAML
22 lines
486 B
YAML
|
---
|
||
|
- hosts: downloader
|
||
|
sudo: no
|
||
|
roles:
|
||
|
- { role: download, tags: download }
|
||
|
|
||
|
- hosts: k8s-cluster
|
||
|
roles:
|
||
|
- { role: etcd, tags: etcd }
|
||
|
- { role: docker, tags: docker }
|
||
|
- { role: overlay_network, tags: ['calico', 'flannel', 'network'] }
|
||
|
- { role: dnsmasq, tags: dnsmasq }
|
||
|
|
||
|
- hosts: kube-master
|
||
|
roles:
|
||
|
- { role: kubernetes/master, tags: master }
|
||
|
- { role: addons, tags: addons }
|
||
|
|
||
|
- hosts: kube-node
|
||
|
roles:
|
||
|
- { role: kubernetes/node, tags: node }
|