mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
8 lines
No EOL
212 B
Bash
8 lines
No EOL
212 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 |