From f5314a979b4cd2711b6b734ed8a81aaea3db8292 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sun, 18 Feb 2024 12:20:01 -0700 Subject: [PATCH] Install ed to fix CI job --- .gitea/workflows/test-container-registry.yml | 2 ++ tests/container-registry/run-test.sh | 1 + 2 files changed, 3 insertions(+) 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