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.

41 lines
2.0 KiB

  1. Large deployments of K8s
  2. ========================
  3. For a large scaled deployments, consider the following configuration changes:
  4. * Tune [ansible settings](http://docs.ansible.com/ansible/intro_configuration.html)
  5. for `forks` and `timeout` vars to fit large numbers of nodes being deployed.
  6. * Override containers' `foo_image_repo` vars to point to intranet registry.
  7. * Override the ``download_run_once: true`` and/or ``download_localhost: true``.
  8. See download modes for details.
  9. * Adjust the `retry_stagger` global var as appropriate. It should provide sane
  10. load on a delegate (the first K8s master node) then retrying failed
  11. push or download operations.
  12. * Tune parameters for DNS related applications (dnsmasq daemon set, kubedns
  13. replication controller). Those are ``dns_replicas``, ``dns_cpu_limit``,
  14. ``dns_cpu_requests``, ``dns_memory_limit``, ``dns_memory_requests``.
  15. Please note that limits must always be greater than or equal to requests.
  16. * Tune CPU/memory limits and requests. Those are located in roles' defaults
  17. and named like ``foo_memory_limit``, ``foo_memory_requests`` and
  18. ``foo_cpu_limit``, ``foo_cpu_requests``. Note that 'Mi' memory units for K8s
  19. will be submitted as 'M', if applied for ``docker run``, and cpu K8s units will
  20. end up with the 'm' skipped for docker as well. This is required as docker does not
  21. understand k8s units well.
  22. * Add calico-rr nodes if you are deploying with Calico or Canal. Nodes recover
  23. from host/network interruption much quicker with calico-rr. Note that
  24. calico-rr role must be on a host without kube-master or kube-node role (but
  25. etcd role is okay).
  26. * Check out the
  27. [Inventory](https://github.com/kubernetes-incubator/kargo/blob/master/docs/getting-started.md#building-your-own-inventory)
  28. section of the Getting started guide for tips on creating a large scale
  29. Ansible inventory.
  30. For example, when deploying 200 nodes, you may want to run ansible with
  31. ``--forks=50``, ``--timeout=600`` and define the ``retry_stagger: 60``.