From b56ca8767147fe83d12abb7b1992e61261b3049b Mon Sep 17 00:00:00 2001 From: Ilan Zuckerman Date: Thu, 27 Aug 2026 10:25:21 +0300 Subject: [PATCH] shiftstack/liveliness: fix yq syntax for mikefarah yq in scripts image #83891 used kislyuk yq flags (--yaml-output) but this step runs in shiftstack-scripts-image, which ships mikefarah yq via dnf. This cause the `yq` to fail with: `Error: unknown flag: --yaml-output` --- .../shiftstack/liveliness/shiftstack-liveliness-commands.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-operator/step-registry/shiftstack/liveliness/shiftstack-liveliness-commands.sh b/ci-operator/step-registry/shiftstack/liveliness/shiftstack-liveliness-commands.sh index 65f55c70c9e55..e8a4eeae75b62 100755 --- a/ci-operator/step-registry/shiftstack/liveliness/shiftstack-liveliness-commands.sh +++ b/ci-operator/step-registry/shiftstack/liveliness/shiftstack-liveliness-commands.sh @@ -28,7 +28,7 @@ then fi # TODO: Remove once dev-install clouds have Python 3.13+ compatible CA certs (shiftstack/dev-install#238). -yq --yaml-output --in-place ".clouds[\"${OS_CLOUD}\"].verify = false" "${SHARED_DIR}/clouds.yaml" +yq -i ".clouds[\"${OS_CLOUD}\"].verify = false" "${SHARED_DIR}/clouds.yaml" set +e echo "DEBUG: Running liveliness check script..."