You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.2 KiB

9 years ago
8 years ago
9 years ago
  1. ---
  2. - hosts: localhost
  3. gather_facts: False
  4. roles:
  5. - { role: kubespray-defaults}
  6. - { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
  7. - hosts: k8s-cluster:etcd:calico-rr
  8. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  9. gather_facts: false
  10. vars:
  11. # Need to disable pipelining for bootstrap-os as some systems have requiretty in sudoers set, which makes pipelining
  12. # fail. bootstrap-os fixes this on these systems, so in later plays it can be enabled.
  13. ansible_ssh_pipelining: false
  14. roles:
  15. - { role: kubespray-defaults}
  16. - { role: bootstrap-os, tags: bootstrap-os}
  17. - hosts: k8s-cluster:etcd:calico-rr
  18. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  19. vars:
  20. ansible_ssh_pipelining: true
  21. gather_facts: true
  22. - hosts: k8s-cluster:etcd:calico-rr
  23. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  24. roles:
  25. - { role: kubespray-defaults}
  26. - { role: kernel-upgrade, tags: kernel-upgrade, when: kernel_upgrade is defined and kernel_upgrade }
  27. - { role: kubernetes/preinstall, tags: preinstall }
  28. - { role: docker, tags: docker }
  29. - role: rkt
  30. tags: rkt
  31. when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
  32. - hosts: etcd:k8s-cluster:vault
  33. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  34. roles:
  35. - { role: kubespray-defaults, when: "cert_management == 'vault'" }
  36. - { role: vault, tags: vault, vault_bootstrap: true, when: "cert_management == 'vault'" }
  37. - hosts: etcd
  38. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  39. roles:
  40. - { role: kubespray-defaults}
  41. - { role: etcd, tags: etcd, etcd_cluster_setup: true }
  42. - hosts: k8s-cluster
  43. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  44. roles:
  45. - { role: kubespray-defaults}
  46. - { role: etcd, tags: etcd, etcd_cluster_setup: false }
  47. - hosts: etcd:k8s-cluster:vault
  48. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  49. roles:
  50. - { role: kubespray-defaults}
  51. - { role: vault, tags: vault, when: "cert_management == 'vault'"}
  52. - hosts: k8s-cluster
  53. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  54. roles:
  55. - { role: kubespray-defaults}
  56. - { role: kubernetes/node, tags: node }
  57. - { role: network_plugin, tags: network }
  58. - hosts: kube-master
  59. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  60. roles:
  61. - { role: kubespray-defaults}
  62. - { role: kubernetes/master, tags: master }
  63. - { role: kubernetes-apps/network_plugin, tags: network }
  64. - { role: kubernetes-apps/policy_controller, tags: policy-controller }
  65. - hosts: calico-rr
  66. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  67. roles:
  68. - { role: kubespray-defaults}
  69. - { role: network_plugin/calico/rr, tags: network }
  70. - hosts: k8s-cluster
  71. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  72. roles:
  73. - { role: kubespray-defaults}
  74. - { role: dnsmasq, when: "dns_mode == 'dnsmasq_kubedns'", tags: dnsmasq }
  75. - { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf }
  76. - hosts: kube-master[0]
  77. any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
  78. roles:
  79. - { role: kubespray-defaults}
  80. - { role: kubernetes-apps, tags: apps }