Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/stackhpc-build-kayobe-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
base_image:
type: string
required: false
default: "rockylinux:9"
default: "rockylinux/rockylinux:9"
if:
description: Whether to run the workflow (workaround for required status checks issue)
type: boolean
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
build-args: |
http_proxy=${{ inputs.http_proxy }}
https_proxy=${{ inputs.https_proxy }}
BASE_IMAGE=${{ inputs.base_image || 'rockylinux:9' }}
BASE_IMAGE=${{ inputs.base_image || 'rockylinux/rockylinux:9' }}
USE_PYTHON_312=true
KAYOBE_USER_UID=1001
KAYOBE_USER_GID=1001
Expand Down
2 changes: 1 addition & 1 deletion doc/source/operations/tempest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Build a Kayobe automation image:
git submodule update
# If running on Ubuntu, the fact cache can confuse Kayobe in the Rocky-based container
mv etc/kayobe/facts{,-old}
sudo DOCKER_BUILDKIT=1 docker build --network host --build-arg BASE_IMAGE=rockylinux:9 --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .
sudo DOCKER_BUILDKIT=1 docker build --network host --build-arg BASE_IMAGE=rockylinux/rockylinux:9 --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .

Configuration
=============
Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/environments/ci-aio/automated-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ run_tempest() {
if ! sudo docker image inspect kayobe:latest > /dev/null 2>&1; then
echo "Building Kayobe Automation image"
sudo DOCKER_BUILDKIT=1 docker build \
--build-arg BASE_IMAGE=rockylinux:9 \
--build-arg BASE_IMAGE=rockylinux/rockylinux:9 \
--build-arg USE_PYTHON_312=true \
--file .automation/docker/kayobe/Dockerfile \
--tag kayobe:latest \
Expand Down
Loading