- masterlb is now an extra part of the cluster spec - ports can now be attached to masterlb by using the 'loadbalancer' nodefilter - all ports exposed on the masterlb will be proxied to all master nodes (on the same port)
12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Run confd
|
|
confd -onetime -backend env
|
|
|
|
# Output Configuration
|
|
echo "===== Initial nginx configuration ====="
|
|
cat /etc/nginx/nginx.conf
|
|
echo "======================================="
|
|
|
|
# Start nginx
|
|
nginx -g 'daemon off;' |