Skip to content

Instantly share code, notes, and snippets.

@ryan-wendel
ryan-wendel / run_nginx_lb.sh
Last active February 3, 2023 00:18
A quick & dirty script to spin up an nginx container that will load balance requests to a Kubernetes cluster
#!/bin/bash
print_help() {
echo
echo "Usage: $(basename $0) -p port [-p port] -s server [-s server]"
echo
}
TMP_DIR="/tmp/nginx_conf_$$"