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
|
|
|
|
2016-12-27 23:00:02 +08:00
|
|
|
- hosts: k8s-cluster:etcd:calico-rr
|
2016-12-02 19:37:22 +08:00
|
|
|
any_errors_fatal: true
|
2016-09-06 22:04:41 +08:00
|
|
|
gather_facts: false
|
2016-12-09 17:38:45 +08:00
|
|
|
vars:
|
2016-12-09 18:04:42 +08:00
|
|
|
# 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.
|
2016-12-09 17:38:45 +08:00
|
|
|
ansible_ssh_pipelining: false
|
2016-09-06 22:04:41 +08:00
|
|
|
roles:
|
|
|
|
- bootstrap-os
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
2016-08-12 22:06:31 +08:00
|
|
|
|
2016-12-27 23:00:02 +08:00
|
|
|
- hosts: k8s-cluster:etcd:calico-rr
|
2016-12-02 19:37:22 +08:00
|
|
|
any_errors_fatal: true
|
2016-12-27 23:00:02 +08:00
|
|
|
vars:
|
|
|
|
ansible_ssh_pipelining: true
|
2016-09-06 22:04:41 +08:00
|
|
|
gather_facts: true
|
2016-09-20 03:12:42 +08:00
|
|
|
|
2016-12-27 23:00:02 +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:
|
2015-12-31 17:03:22 +08:00
|
|
|
- { role: kubernetes/preinstall, tags: preinstall }
|
2016-12-07 23:57:05 +08:00
|
|
|
- { role: docker, tags: docker }
|
2017-02-09 05:41:36 +08:00
|
|
|
- role: rkt
|
|
|
|
tags: rkt
|
|
|
|
when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
|
2016-10-24 21:11:52 +08:00
|
|
|
|
2017-02-09 05:41:36 +08:00
|
|
|
- hosts: etcd:k8s-cluster:vault
|
2017-01-14 04:31:10 +08:00
|
|
|
any_errors_fatal: true
|
|
|
|
roles:
|
|
|
|
- { role: vault, tags: vault, vault_bootstrap: true, when: "cert_management == 'vault'" }
|
|
|
|
|
2017-02-09 05:41:36 +08:00
|
|
|
- hosts: etcd:!k8s-cluster
|
|
|
|
any_errors_fatal: true
|
|
|
|
roles:
|
|
|
|
- { role: etcd, tags: etcd }
|
|
|
|
|
|
|
|
- hosts: k8s-cluster
|
2016-12-02 19:37:22 +08:00
|
|
|
any_errors_fatal: true
|
2016-10-24 21:11:52 +08:00
|
|
|
roles:
|
2016-08-12 03:14:11 +08:00
|
|
|
- { role: etcd, tags: etcd }
|
2016-07-26 21:18:47 +08:00
|
|
|
|
2017-01-14 04:31:10 +08:00
|
|
|
- hosts: etcd:k8s-cluster:vault
|
|
|
|
any_errors_fatal: true
|
|
|
|
roles:
|
|
|
|
- { role: vault, tags: vault, when: "cert_management == 'vault'"}
|
|
|
|
|
2016-07-26 21:18:47 +08:00
|
|
|
- hosts: k8s-cluster
|
2016-12-02 19:37:22 +08:00
|
|
|
any_errors_fatal: true
|
2016-07-26 21:18:47 +08:00
|
|
|
roles:
|
2015-12-24 06:27:40 +08:00
|
|
|
- { role: kubernetes/node, tags: node }
|
2016-01-30 23:04:47 +08:00
|
|
|
- { 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 }
|
2016-11-03 23:57:11 +08:00
|
|
|
- { role: kubernetes-apps/network_plugin, tags: network }
|
2016-03-18 22:07:33 +08:00
|
|
|
|
2016-12-09 00:48:54 +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-12-22 00:18:11 +08:00
|
|
|
- { role: dnsmasq, when: "dns_mode == 'dnsmasq_kubedns'", tags: dnsmasq }
|
|
|
|
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf }
|
2016-05-05 00:00:46 +08:00
|
|
|
|
|
|
|
- hosts: kube-master[0]
|
2016-12-02 19:37:22 +08:00
|
|
|
any_errors_fatal: true
|
2016-05-05 00:00:46 +08:00
|
|
|
roles:
|
2016-09-20 03:12:42 +08:00
|
|
|
- { role: kubernetes-apps, tags: apps }
|
2017-01-27 07:33:01 +08:00
|
|
|
- { role: kubernetes-apps/efk, tags: [ apps, efk ] }
|