c12s-kubespray/cluster.yml

106 lines
3.6 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:
- { role: kubespray-defaults}
2017-02-23 11:07:17 +00:00
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
2016-12-09 09:38:17 +00:00
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(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:
- { role: kubespray-defaults}
2017-02-23 11:07:17 +00:00
- { role: bootstrap-os, tags: bootstrap-os}
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
vars:
ansible_ssh_pipelining: true
gather_facts: true
2016-09-19 19:12:42 +00:00
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
2015-12-17 21:46:50 +00:00
roles:
- { role: kubespray-defaults}
- { 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]"
- { role: download, tags: download, skip_downloads: false }
- hosts: etcd:k8s-cluster:vault
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
2017-01-13 20:31:10 +00:00
roles:
- { role: kubespray-defaults, when: "cert_management == 'vault'" }
2017-01-13 20:31:10 +00:00
- { role: vault, tags: vault, vault_bootstrap: true, when: "cert_management == 'vault'" }
- hosts: etcd
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: etcd, tags: etcd, etcd_cluster_setup: true }
- hosts: k8s-cluster
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: etcd, tags: etcd, etcd_cluster_setup: false }
2017-01-13 20:31:10 +00:00
- hosts: etcd:k8s-cluster:vault
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
2017-01-13 20:31:10 +00:00
roles:
- { role: kubespray-defaults}
2017-01-13 20:31:10 +00:00
- { role: vault, tags: vault, when: "cert_management == 'vault'"}
- hosts: k8s-cluster
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
2015-12-23 22:27:40 +00:00
- { role: kubernetes/node, tags: node }
2015-10-03 20:19:50 +00:00
2015-12-11 10:40:56 +00:00
- hosts: kube-master
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
2015-12-11 10:40:56 +00:00
roles:
- { role: kubespray-defaults}
2015-12-11 10:40:56 +00:00
- { role: kubernetes/master, tags: master }
- hosts: k8s-cluster
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: kubernetes/kubeadm, tags: kubeadm, when: "kubeadm_enabled" }
- { role: network_plugin, tags: network }
- hosts: kube-master
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: kubernetes-apps/rotate_tokens, tags: rotate_tokens, when: "secret_changed|default(false)" }
- { role: kubernetes-apps/network_plugin, tags: network }
- { role: kubernetes-apps/policy_controller, tags: policy-controller }
- { role: kubernetes/client, tags: client }
2016-03-18 14:07:33 +00:00
- hosts: calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: network_plugin/calico/rr, tags: network }
2016-03-21 10:37:35 +00:00
- hosts: k8s-cluster
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
2016-03-18 14:07:33 +00:00
roles:
- { role: kubespray-defaults}
- { 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]
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
2016-09-19 19:12:42 +00:00
- { role: kubernetes-apps, tags: apps }