From 67e3de1a18abc3b525398f3eeb9f71e8e8798097 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Wed, 31 May 2023 14:39:30 -0400 Subject: [PATCH] Fix the image tag Fixes #3445 pbench_demo uses an image downloaded from Quay.io. It assumes that the image will contain `pbench-generate-token` which is available currently but it is deprecated and will not be available in the future. In particular, the specified image `quay.io/pbench/pbench-agent-all-fedora-36:all` does *not* contain the script. We need to make use `quay.io/pbench/pbench-agent-all-fedora-36:b0.72` instead. PBENCH-1129 --- contrib/containerized-pbench/pbench_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/containerized-pbench/pbench_demo b/contrib/containerized-pbench/pbench_demo index b2a9c70e8e..58a9e6a704 100644 --- a/contrib/containerized-pbench/pbench_demo +++ b/contrib/containerized-pbench/pbench_demo @@ -16,7 +16,7 @@ alias pbench="$(git rev-parse --show-toplevel)"/contrib/containerized-pbench/pbe FIOTEST=${PWD}/fiotest export PB_AGENT_PODMAN_OPTIONS="--pull newer -v ${FIOTEST}:/fiotest:z" -export PB_AGENT_IMAGE_NAME=quay.io/pbench/pbench-agent-all-fedora-36:main +export PB_AGENT_IMAGE_NAME=quay.io/pbench/pbench-agent-all-fedora-36:b0.72 mkdir -p "${FIOTEST}"