Skip to content

Commit e7251d3

Browse files
committed
silenced default output of ovnkube-lib.sh and made it ENV dependning instead
1 parent a60edc1 commit e7251d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bindata/network/ovn-kubernetes/common/008-script-lib.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ metadata:
1010
data:
1111
ovnkube-lib.sh: |-
1212
#!/bin/bash
13-
set -x
13+
if [[ "${OVNKUBE_SH_VERBOSE:-}" == "true" ]]; then
14+
set -x
15+
fi
1416
{{- if .IsNetworkTypeLiveMigration }}
1517
if ip link show br-ex; then
1618
echo "br-ex exists"

0 commit comments

Comments
 (0)