kubespray/cluster.yml

67 lines
1.6 KiB
YAML
Raw Normal View History

2015-10-04 04:19:50 +08:00
---
2016-12-09 17:38:17 +08:00
- hosts: localhost
gather_facts: False
roles:
- bastion-ssh-config
2016-12-12 21:53:33 +08:00
tags: [localhost, bastion]
2016-12-09 17:38:17 +08:00
- hosts: k8s-cluster:etcd:calico-rr
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
gather_facts: false
vars:
# Need to disable pipelining for bootstrap-os as some systems have requiretty in sudoers set, which makes pipelining
# fail. bootstrap-os fixes this on these systems, so in later plays it can be enabled.
ansible_ssh_pipelining: false
roles:
- bootstrap-os
tags:
- bootstrap-os
- hosts: k8s-cluster:etcd:calico-rr
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
vars:
ansible_ssh_pipelining: true
gather_facts: true
2016-09-20 03:12:42 +08:00
- hosts: k8s-cluster:etcd:calico-rr
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
2015-12-18 05:46:50 +08:00
roles:
- { role: kubernetes/preinstall, tags: preinstall }
- { role: docker, tags: docker }
- hosts: etcd:!k8s-cluster
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
roles:
- { role: etcd, tags: etcd }
- hosts: k8s-cluster
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
roles:
- { role: etcd, tags: etcd }
2015-12-24 06:27:40 +08:00
- { role: kubernetes/node, tags: node }
- { role: network_plugin, tags: network }
2015-10-04 04:19:50 +08:00
2015-12-11 18:40:56 +08:00
- hosts: kube-master
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
2015-12-11 18:40:56 +08:00
roles:
- { role: kubernetes/master, tags: master }
- { role: kubernetes-apps/lib, tags: apps }
- { role: kubernetes-apps/network_plugin, tags: network }
2016-03-18 22:07:33 +08:00
- hosts: calico-rr
any_errors_fatal: true
roles:
- { role: network_plugin/calico/rr, tags: network }
2016-03-21 18:37:35 +08:00
- hosts: k8s-cluster
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
2016-03-18 22:07:33 +08:00
roles:
2016-03-21 18:37:35 +08:00
- { role: dnsmasq, tags: dnsmasq }
- { role: kubernetes/preinstall, tags: resolvconf }
- hosts: kube-master[0]
2016-12-02 19:37:22 +08:00
any_errors_fatal: true
roles:
- { role: kubernetes-apps/lib, tags: apps }
2016-09-20 03:12:42 +08:00
- { role: kubernetes-apps, tags: apps }