From f3238fca1baba1ad32aff28a68f9871c1887bd7a Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 6 Oct 2023 15:11:15 +1000 Subject: [PATCH] fix(ci): Replace busybox with ubuntu to avoid "device or resource busy" failures (#7686) --- .github/workflows/deploy-gcp-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-gcp-tests.yml b/.github/workflows/deploy-gcp-tests.yml index 65cd9c93..905a8a3d 100644 --- a/.github/workflows/deploy-gcp-tests.yml +++ b/.github/workflows/deploy-gcp-tests.yml @@ -171,7 +171,7 @@ jobs: --image-project=cos-cloud \ --image-family=cos-stable \ --create-disk=name="${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }}",device-name="${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }}",size=300GB,type=pd-ssd \ - --container-image=gcr.io/google-containers/busybox \ + --container-image=gcr.io/google-containers/ubuntu \ --machine-type ${{ vars.GCP_LARGE_MACHINE }} \ --network-interface=subnet=${{ vars.GCP_SUBNETWORK }} \ --scopes cloud-platform \ @@ -373,7 +373,7 @@ jobs: --image-project=cos-cloud \ --image-family=cos-stable \ --create-disk=image=${{ env.CACHED_DISK_NAME }},name="${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }}",device-name="${{ inputs.test_id }}-${{ env.GITHUB_SHA_SHORT }}",size=300GB,type=pd-ssd \ - --container-image=gcr.io/google-containers/busybox \ + --container-image=gcr.io/google-containers/ubuntu \ --machine-type ${{ vars.GCP_LARGE_MACHINE }} \ --network-interface=subnet=${{ vars.GCP_SUBNETWORK }} \ --scopes cloud-platform \