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.

105 lines
4.5 KiB

  1. HA endpoints for K8s
  2. ====================
  3. The following components require a highly available endpoints:
  4. * etcd cluster,
  5. * kube-apiserver service instances.
  6. The latter relies on a 3rd side reverse proxies, like Nginx or HAProxy, to
  7. achieve the same goal.
  8. Etcd
  9. ----
  10. The `etcd_access_endpoint` fact provides an access pattern for clients. And the
  11. `etcd_multiaccess` (defaults to `True`) group var controlls that behavior.
  12. It makes deployed components to access the etcd cluster members
  13. directly: `http://ip1:2379, http://ip2:2379,...`. This mode assumes the clients
  14. do a loadbalancing and handle HA for connections.
  15. Kube-apiserver
  16. --------------
  17. K8s components require a loadbalancer to access the apiservers via a reverse
  18. proxy. Kargo includes support for an nginx-based proxy that resides on each
  19. non-master Kubernetes node. This is referred to as localhost loadbalancing. It
  20. is less efficient than a dedicated load balancer because it creates extra
  21. health checks on the Kubernetes apiserver, but is more practical for scenarios
  22. where an external LB or virtual IP management is inconvenient. This option is
  23. configured by the variable `loadbalancer_apiserver_localhost` (defaults to `True`).
  24. You may also define the port the local internal loadbalancer users by changing,
  25. `nginx_kube_apiserver_port`. This defaults to the value of `kube_apiserver_port`.
  26. It is also import to note that Kargo will only configure kubelet and kube-proxy
  27. on non-master nodes to use the local internal loadbalancer.
  28. If you choose to NOT use the local internal loadbalancer, you will need to configure
  29. your own loadbalancer to achieve HA. Note that deploying a loadbalancer is up to
  30. a user and is not covered by ansible roles in Kargo. By default, it only configures
  31. a non-HA endpoint, which points to the `access_ip` or IP address of the first server
  32. node in the `kube-master` group. It can also configure clients to use endpoints
  33. for a given loadbalancer type. The following diagram shows how traffic to the
  34. apiserver is directed.
  35. ![Image](figures/loadbalancer_localhost.png?raw=true)
  36. Note: Kubernetes master nodes still use insecure localhost access because
  37. there are bugs in Kubernetes <1.5.0 in using TLS auth on master role
  38. services. This makes backends receiving unencrypted traffic and may be a
  39. security issue when interconnecting different nodes, or maybe not, if those
  40. belong to the isolated management network without external access.
  41. A user may opt to use an external loadbalancer (LB) instead. An external LB
  42. provides access for external clients, while the internal LB accepts client
  43. connections only to the localhost.
  44. Given a frontend `VIP` address and `IP1, IP2` addresses of backends, here is
  45. an example configuration for a HAProxy service acting as an external LB:
  46. ```
  47. listen kubernetes-apiserver-https
  48. bind <VIP>:8383
  49. option ssl-hello-chk
  50. mode tcp
  51. timeout client 3h
  52. timeout server 3h
  53. server master1 <IP1>:6443
  54. server master2 <IP2>:6443
  55. balance roundrobin
  56. ```
  57. And the corresponding example global vars config:
  58. ```
  59. apiserver_loadbalancer_domain_name: "lb-apiserver.kubernetes.local"
  60. loadbalancer_apiserver:
  61. address: <VIP>
  62. port: 8383
  63. ```
  64. This domain name, or default "lb-apiserver.kubernetes.local", will be inserted
  65. into the `/etc/hosts` file of all servers in the `k8s-cluster` group. Note that
  66. the HAProxy service should as well be HA and requires a VIP management, which
  67. is out of scope of this doc. Specifying an external LB overrides any internal
  68. localhost LB configuration.
  69. Note: In order to achieve HA for HAProxy instances, those must be running on
  70. the each node in the `k8s-cluster` group as well, but require no VIP, thus
  71. no VIP management.
  72. Access endpoints are evaluated automagically, as the following:
  73. | Endpoint type | kube-master | non-master |
  74. |------------------------------|---------------|---------------------|
  75. | Local LB (default) | http://lc:p | https://lc:nsp |
  76. | External LB, no internal | https://lb:lp | https://lb:lp |
  77. | No ext/int LB | http://lc:p | https://m[0].aip:sp |
  78. Where:
  79. * `m[0]` - the first node in the `kube-master` group;
  80. * `lb` - LB FQDN, `apiserver_loadbalancer_domain_name`;
  81. * `lc` - localhost;
  82. * `p` - insecure port, `kube_apiserver_insecure_port`
  83. * `nsp` - nginx secure port, `nginx_kube_apiserver_port`;
  84. * `sp` - secure port, `kube_apiserver_port`;
  85. * `lp` - LB port, `loadbalancer_apiserver.port`, defers to the secure port;
  86. * `ip` - the node IP, defers to the ansible IP;
  87. * `aip` - `access_ip`, defers to the ip.