ansible-role-k3s/molecule/highavailability/nginx-loadbalancer.conf

21 lines
495 B
Text
Raw Normal View History

2020-01-12 13:50:03 +01:00
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;
}
}
}