2016-09-15 09:23:27 +00:00
|
|
|
Large deployments of K8s
|
|
|
|
========================
|
|
|
|
|
|
|
|
For a large scaled deployments, consider the following configuration changes:
|
|
|
|
|
2020-02-13 22:46:17 +00:00
|
|
|
* Tune [ansible settings](https://docs.ansible.com/ansible/intro_configuration.html)
|
2016-09-15 09:23:27 +00:00
|
|
|
for `forks` and `timeout` vars to fit large numbers of nodes being deployed.
|
|
|
|
|
|
|
|
* Override containers' `foo_image_repo` vars to point to intranet registry.
|
|
|
|
|
2016-12-19 14:50:04 +00:00
|
|
|
* Override the ``download_run_once: true`` and/or ``download_localhost: true``.
|
|
|
|
See download modes for details.
|
2016-09-15 09:23:27 +00:00
|
|
|
|
|
|
|
* Adjust the `retry_stagger` global var as appropriate. It should provide sane
|
|
|
|
load on a delegate (the first K8s master node) then retrying failed
|
|
|
|
push or download operations.
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
* Tune parameters for DNS related applications
|
2019-04-01 19:32:34 +00:00
|
|
|
Those are ``dns_replicas``, ``dns_cpu_limit``,
|
2016-11-25 10:33:39 +00:00
|
|
|
``dns_cpu_requests``, ``dns_memory_limit``, ``dns_memory_requests``.
|
|
|
|
Please note that limits must always be greater than or equal to requests.
|
|
|
|
|
2016-12-23 14:44:44 +00:00
|
|
|
* Tune CPU/memory limits and requests. Those are located in roles' defaults
|
|
|
|
and named like ``foo_memory_limit``, ``foo_memory_requests`` and
|
|
|
|
``foo_cpu_limit``, ``foo_cpu_requests``. Note that 'Mi' memory units for K8s
|
2017-02-07 14:01:02 +00:00
|
|
|
will be submitted as 'M', if applied for ``docker run``, and cpu K8s units
|
|
|
|
will end up with the 'm' skipped for docker as well. This is required as
|
|
|
|
docker does not understand k8s units well.
|
|
|
|
|
|
|
|
* Tune ``kubelet_status_update_frequency`` to increase reliability of kubelet.
|
|
|
|
``kube_controller_node_monitor_grace_period``,
|
|
|
|
``kube_controller_node_monitor_period``,
|
|
|
|
``kube_controller_pod_eviction_timeout`` for better Kubernetes reliability.
|
|
|
|
Check out [Kubernetes Reliability](kubernetes-reliability.md)
|
2016-12-23 14:44:44 +00:00
|
|
|
|
2018-01-26 14:13:21 +00:00
|
|
|
* Tune network prefix sizes. Those are ``kube_network_node_prefix``,
|
|
|
|
``kube_service_addresses`` and ``kube_pods_subnet``.
|
|
|
|
|
2017-01-11 15:15:04 +00:00
|
|
|
* Add calico-rr nodes if you are deploying with Calico or Canal. Nodes recover
|
|
|
|
from host/network interruption much quicker with calico-rr. Note that
|
|
|
|
calico-rr role must be on a host without kube-master or kube-node role (but
|
|
|
|
etcd role is okay).
|
|
|
|
|
|
|
|
* Check out the
|
2017-02-07 14:01:02 +00:00
|
|
|
[Inventory](getting-started.md#building-your-own-inventory)
|
2017-01-11 15:15:04 +00:00
|
|
|
section of the Getting started guide for tips on creating a large scale
|
|
|
|
Ansible inventory.
|
|
|
|
|
2018-03-07 11:00:00 +00:00
|
|
|
* Override the ``etcd_events_cluster_setup: true`` store events in a separate
|
|
|
|
dedicated etcd instance.
|
|
|
|
|
2016-09-15 09:23:27 +00:00
|
|
|
For example, when deploying 200 nodes, you may want to run ansible with
|
|
|
|
``--forks=50``, ``--timeout=600`` and define the ``retry_stagger: 60``.
|