mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-16 13:01:04 +02:00
* Got basic envoy proxy use working * Got envoy proxy working with frontend dev mode and envoy v 1.16.0 * Change envoy proxy port to 15081
8 lines
213 B
Bash
8 lines
213 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Generating envoy.yaml config file..."
|
|
cat /tmpl/envoy.yaml.tmpl | envsubst \$ENVOY_LB_ALG,\$SERVICE_NAME > /etc/envoy.yaml
|
|
|
|
echo "Starting Envoy..."
|
|
/usr/local/bin/envoy -c /etc/envoy.yaml
|