Skip to content

Commit

Permalink
Fix the image tag (#3446)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ndokos authored Jun 1, 2023
1 parent 2915816 commit d021d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/containerized-pbench/pbench_demo
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down

0 comments on commit d021d23

Please sign in to comment.