c12s-kubespray/cluster.yml

83 lines
2.2 KiB
YAML
Raw Normal View History

2015-10-03 20:19:50 +00:00
---
2016-12-09 09:38:17 +00:00
- hosts: localhost
gather_facts: False
roles:
- bastion-ssh-config
2016-12-12 13:53:33 +00:00
tags: [localhost, bastion]
2016-12-09 09:38:17 +00:00
- hosts: k8s-cluster:etcd:calico-rr
2016-12-02 11:37:22 +00: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 11:37:22 +00:00
any_errors_fatal: true
vars:
ansible_ssh_pipelining: true
gather_facts: true
2016-09-19 19:12:42 +00:00
- hosts: k8s-cluster:etcd:calico-rr
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
2015-12-17 21:46:50 +00:00
roles:
2017-01-10 15:11:42 +00:00
- { role: kernel-upgrade, tags: kernel-upgrade, when: kernel_upgrade is defined and kernel_upgrade }
- { role: kubernetes/preinstall, tags: preinstall }
- { role: docker, tags: docker }
- role: rkt
tags: rkt
when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
- hosts: etcd:k8s-cluster:vault
2017-01-13 20:31:10 +00:00
any_errors_fatal: true
roles:
- { role: vault, tags: vault, vault_bootstrap: true, when: "cert_management == 'vault'" }
- hosts: etcd:!k8s-cluster
any_errors_fatal: true
roles:
- { role: etcd, tags: etcd }
- hosts: k8s-cluster
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
roles:
- { role: etcd, tags: etcd }
2017-01-13 20:31:10 +00:00
- hosts: etcd:k8s-cluster:vault
any_errors_fatal: true
roles:
- { role: vault, tags: vault, when: "cert_management == 'vault'"}
- hosts: k8s-cluster
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
roles:
2015-12-23 22:27:40 +00:00
- { role: kubernetes/node, tags: node }
- { role: network_plugin, tags: network }
2015-10-03 20:19:50 +00:00
2015-12-11 10:40:56 +00:00
- hosts: kube-master
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
2015-12-11 10:40:56 +00:00
roles:
- { role: kubernetes/master, tags: master }
- { role: kubernetes-apps/network_plugin, tags: network }
2016-03-18 14:07:33 +00:00
- hosts: calico-rr
any_errors_fatal: true
roles:
- { role: network_plugin/calico/rr, tags: network }
2016-03-21 10:37:35 +00:00
- hosts: k8s-cluster
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
2016-03-18 14:07:33 +00:00
roles:
- { role: dnsmasq, when: "dns_mode == 'dnsmasq_kubedns'", tags: dnsmasq }
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf }
- hosts: kube-master[0]
2016-12-02 11:37:22 +00:00
any_errors_fatal: true
roles:
2016-09-19 19:12:42 +00:00
- { role: kubernetes-apps, tags: apps }