ansible-role-k3s/molecule/highavailability/nginx-loadbalancer.conf
2020-01-12 12:50:03 +00:00

20 lines
495 B
Text

events { }
http {
# Set up our upstream of control (master) nodes. The default load balancing
# algorithm for nginx is to round-robin. Perfect!
upstream control_plane {
server node2:6443;
server node3:6443;
}
# Listen on port 6443, this is our default control plane port, then pass
# all traffic to one of the control (master) nodes.
server {
listen 6443;
location / {
proxy_pass http://control_plane;
}
}
}