8000
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 c2a036c commit c741ea7Copy full SHA for c741ea7
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