We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
set -eou pipefail
1 parent 0036e1a commit f191ce3Copy full SHA for f191ce3
ansible/files/start-envoy.sh
@@ -1,4 +1,5 @@
1
-#!/usr/bin/env sh
+#!/usr/bin/env bash
2
+set -eou pipefail
3
# Workaround using `tee` to get `/dev/stdout` access logging to work, see:
4
# https://github.com/envoyproxy/envoy/issues/8297#issuecomment-620659781
-exec /opt/envoy --config-path /etc/envoy/envoy.yaml --restart-epoch "$RESTART_EPOCH" | tee
5
+exec /opt/envoy --config-path /etc/envoy/envoy.yaml --restart-epoch "$RESTART_EPOCH" 2>&1 | tee
0 commit comments