Files
wfe/wfe-kubernetes/src
Sienna Meridian Satterwhite 883471181d fix(wfe-kubernetes): run scripts under /bin/bash for pipefail support
Kubernetes step jobs with a `run:` block were invoked via
`/bin/sh -c <script>`. On debian-family base images that resolves to
dash, which rejects `set -o pipefail` ("Illegal option") and other
bashisms (arrays, process substitution, `{1..10}`). The first line of
nearly every real CI script relies on `set -euo pipefail`, so the
steps were failing with exit code 2 before running a single command.

Switch to `/bin/bash -c` so `run:` scripts can rely on the bash
feature set. Containers that lack bash should use the explicit
`command:` form instead.
2026-04-07 18:55:10 +01:00
..
2026-04-06 17:59:50 +01:00
2026-04-07 18:44:21 +01:00
2026-04-07 18:44:21 +01:00