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.

39 lines
2.2 KiB

  1. Node Layouts
  2. ------------
  3. There are four node layout types: `default`, `separate`, `ha`, and `scale`.
  4. `default` is a non-HA two nodes setup with one separate `kube-node`
  5. and the `etcd` group merged with the `kube-master`.
  6. `separate` layout is when there is only node of each type, which includes
  7. a kube-master, kube-node, and etcd cluster member.
  8. `ha` layout consists of two etcd nodes, two masters and a single worker node,
  9. with role intersection.
  10. `scale` layout can be combined with above layouts. It includes 200 fake hosts
  11. in the Ansible inventory. This helps test TLS certificate generation at scale
  12. to prevent regressions and profile certain long-running tasks. These nodes are
  13. never actually deployed, but certificates are generated for them.
  14. Note, the canal network plugin deploys flannel as well plus calico policy controller.
  15. GCE instances
  16. -------------
  17. | Stage| Network plugin| OS type| GCE region| Nodes layout
  18. |--------------------|--------------------|--------------------|--------------------|--------------------|
  19. | part1| calico| coreos-stable| us-west1-b| separate|
  20. | part1| canal| debian-8-kubespray| us-east1-b| ha|
  21. | part1| weave| rhel-7| europe-west1-b| default|
  22. | part2| flannel| centos-7| us-west1-a| default|
  23. | part2| calico| debian-8-kubespray| us-central1-b| default|
  24. | part2| canal| coreos-stable| us-east1-b| default|
  25. | special| canal| rhel-7| us-east1-b| separate|
  26. | special| weave| ubuntu-1604-xenial| us-central1-b| default|
  27. | special| calico| centos-7| europe-west1-b| ha-scale|
  28. | special| weave| coreos-alpha| us-west1-a| ha-scale|
  29. The "Stage" means a build step of the build pipeline. The steps are ordered as `part1->part2->special`.