Newer
Older
- hosts: localhost
gather_facts: False
roles:
- { role: kubespray-defaults}
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
Alexander Block
committed
# 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
- { role: kubespray-defaults}
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
vars:
ansible_ssh_pipelining: true
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { 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) }}"
- { role: kubespray-defaults, when: "cert_management == 'vault'" }
- { role: vault, tags: vault, vault_bootstrap: true, when: "cert_management == 'vault'" }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: etcd, tags: etcd, etcd_cluster_setup: true }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: etcd, tags: etcd, etcd_cluster_setup: false }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: vault, tags: vault, when: "cert_management == 'vault'"}
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: kubernetes/client, tags: client }
- { role: kubernetes-apps/cluster_roles, tags: cluster-roles }
- 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 }
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)" }
- hosts: kube-master
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults}
- { role: kubernetes-apps/network_plugin, tags: network }
- { role: kubernetes-apps/policy_controller, tags: policy-controller }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: network_plugin/calico/rr, tags: network }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { 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 }
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
- { role: kubespray-defaults}
- { role: kubernetes-apps, tags: apps }