diff --git a/.gitea/workflows/test-container-registry.yml b/.gitea/workflows/test-container-registry.yml index 8380e83f..3358aa09 100644 --- a/.gitea/workflows/test-container-registry.yml +++ b/.gitea/workflows/test-container-registry.yml @@ -44,6 +44,8 @@ jobs: run: ./tests/scripts/install-kind.sh - name: "Install Kubectl" run: ./tests/scripts/install-kubectl.sh + - name: "Install ed" # Only needed until we remove the need to edit the spec file + run: apt update && apt install -y ed - name: "Run container registry deployment test" run: | source /opt/bash-utils/cgroup-helper.sh diff --git a/tests/container-registry/run-test.sh b/tests/container-registry/run-test.sh index 2aaf887f..423b90e1 100755 --- a/tests/container-registry/run-test.sh +++ b/tests/container-registry/run-test.sh @@ -122,6 +122,7 @@ else fi # Check that we can use the registry +# Note: since this pulls from the DockerCo registry without auth it's possible it'll run into rate limiting issues docker pull hello-world docker tag hello-world localhost:80/hello-world docker push localhost:80/hello-world