Fix links and formatting

This commit is contained in:
vickyhella
2022-09-15 17:48:58 +08:00
parent 5a3bfa4271
commit 6f187bee01
31 changed files with 47 additions and 2 deletions
@@ -29,6 +29,7 @@ After installing NGINX, you need to update the NGINX configuration file, `nginx.
>**Note:** See [NGINX Documentation: TCP and UDP Load Balancing](https://docs.nginx.com/nginx/admin-guide/load-balancer/tcp-udp-load-balancer/) for all configuration options.
<figcaption>Example NGINX config</figcaption>
```
worker_processes 4;
worker_rlimit_nofile 40000;
@@ -23,6 +23,7 @@ This procedure walks you through setting up a 3-node cluster using the Rancher K
In an HA setup that uses a layer 4 load balancer, the load balancer accepts Rancher client connections over the TCP/UDP protocols (i.e., the transport level). The load balancer then forwards these connections to individual cluster nodes without reading the request itself. Because the load balancer cannot read the packets it's forwarding, the routing decisions it can make are limited.
<sup>Rancher installed on a Kubernetes cluster with layer 4 load balancer, depicting SSL termination at ingress controllers</sup>
![Rancher HA](/img/ha/rancher2ha.svg)
## Installation Outline
@@ -23,6 +23,7 @@ This procedure walks you through setting up a 3-node cluster using the Rancher K
In an HA setup that uses a layer 7 load balancer, the load balancer accepts Rancher client connections over the HTTP protocol (i.e., the application level). This application-level access allows the load balancer to read client requests and then redirect to them to cluster nodes using logic that optimally distributes load.
<sup>Rancher installed on a Kubernetes cluster with layer 7 load balancer, depicting SSL termination at load balancer</sup>
![Rancher HA](/img/ha/rancher2ha-l7.svg)
## Installation Outline