Closed NickLarsenNZ closed 2 months ago
Kuttl hard codes sh -c, instead of allowing alternative shells to be used. For now, we need to drop the -o pipefail option.
sh -c
-o pipefail
See: https://github.com/kudobuilder/kuttl/issues/557
[!NOTE] For zsh users, sh appears to just alias zsh, so locally set -euo pipfail worked fine.
sh
set -euo pipfail
Kuttl hard codes
sh -c
, instead of allowing alternative shells to be used. For now, we need to drop the-o pipefail
option.See: https://github.com/kudobuilder/kuttl/issues/557