From 32841827b8c54aad30f9448103e6becc866fc193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 14 Sep 2023 22:36:55 +0200 Subject: [PATCH 1/5] ci: cri-containerd: Use a smaller / cheaper VM instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need to run on a D4s_v5. as those tests are not CPU / memory intense. With this is mind, let's use a smaller version of the instance, the D2s_v5 one. Fixes: #7958 Signed-off-by: Fabiano Fidêncio --- .github/workflows/run-cri-containerd-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-cri-containerd-tests.yaml b/.github/workflows/run-cri-containerd-tests.yaml index 205561391..f42833609 100644 --- a/.github/workflows/run-cri-containerd-tests.yaml +++ b/.github/workflows/run-cri-containerd-tests.yaml @@ -23,7 +23,7 @@ jobs: matrix: containerd_version: ['lts', 'active'] vmm: ['clh', 'qemu'] - runs-on: garm-ubuntu-2204 + runs-on: garm-ubuntu-2204-smaller env: CONTAINERD_VERSION: ${{ matrix.containerd_version }} GOPATH: ${{ github.workspace }} From 4db416997c2d1591b300ee973f1e99e39cca4bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 14 Sep 2023 22:38:48 +0200 Subject: [PATCH 2/5] ci: docker: Use a smaller / cheaper VM instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need to run on a D4s_v5. as those tests are not CPU / memory intense. With this is mind, let's use a smaller version of the instance, the D2s_v5 one. Fixes: #7958 Signed-off-by: Fabiano Fidêncio --- .github/workflows/run-docker-tests-on-garm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-docker-tests-on-garm.yaml b/.github/workflows/run-docker-tests-on-garm.yaml index abb6b0354..ea90759fa 100644 --- a/.github/workflows/run-docker-tests-on-garm.yaml +++ b/.github/workflows/run-docker-tests-on-garm.yaml @@ -24,7 +24,7 @@ jobs: vmm: - clh - qemu - runs-on: garm-ubuntu-2304 + runs-on: garm-ubuntu-2304-smaller env: KATA_HYPERVISOR: ${{ matrix.vmm }} steps: From e60d81f554b804d21182407b5352c3974428e5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 14 Sep 2023 22:39:13 +0200 Subject: [PATCH 3/5] ci: nerdctl: Use a smaller / cheaper VM instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need to run on a D4s_v5. as those tests are not CPU / memory intense. With this is mind, let's use a smaller version of the instance, the D2s_v5 one. Fixes: #7958 Signed-off-by: Fabiano Fidêncio --- .github/workflows/run-nerdctl-tests-on-garm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-nerdctl-tests-on-garm.yaml b/.github/workflows/run-nerdctl-tests-on-garm.yaml index a902d7cc5..eb4e04bc2 100644 --- a/.github/workflows/run-nerdctl-tests-on-garm.yaml +++ b/.github/workflows/run-nerdctl-tests-on-garm.yaml @@ -25,7 +25,7 @@ jobs: - clh - dragonball - qemu - runs-on: garm-ubuntu-2304 + runs-on: garm-ubuntu-2304-smaller env: KATA_HYPERVISOR: ${{ matrix.vmm }} steps: From 1daf02f5d4f6e26b21e66b5982594e16c0cde7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 14 Sep 2023 22:39:30 +0200 Subject: [PATCH 4/5] ci: nydus: Use a smaller / cheaper VM instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need to run on a D4s_v5. as those tests are not CPU / memory intense. With this is mind, let's use a smaller version of the instance, the D2s_v5 one. Fixes: #7958 Signed-off-by: Fabiano Fidêncio --- .github/workflows/run-nydus-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-nydus-tests.yaml b/.github/workflows/run-nydus-tests.yaml index 54c8cf864..71ee0fe86 100644 --- a/.github/workflows/run-nydus-tests.yaml +++ b/.github/workflows/run-nydus-tests.yaml @@ -23,7 +23,7 @@ jobs: matrix: containerd_version: ['lts', 'active'] vmm: ['clh', 'qemu', 'dragonball'] - runs-on: garm-ubuntu-2204 + runs-on: garm-ubuntu-2204-smaller env: CONTAINERD_VERSION: ${{ matrix.containerd_version }} GOPATH: ${{ github.workspace }} From fb24fb0dc1d5c4e8cf3639c9a2a5839d655d61bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 15 Sep 2023 00:27:05 +0200 Subject: [PATCH 5/5] ci: k8s: devmapper: Use a smaller / cheaper VM instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need to run on a D4s_v5. as those tests are not CPU / memory intense. With this is mind, let's use a smaller version of the instance, the D2s_v5 one. Fixes: #7958 Signed-off-by: Fabiano Fidêncio --- .github/workflows/run-k8s-tests-on-garm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-k8s-tests-on-garm.yaml b/.github/workflows/run-k8s-tests-on-garm.yaml index 22e9925d3..3fdb8302d 100644 --- a/.github/workflows/run-k8s-tests-on-garm.yaml +++ b/.github/workflows/run-k8s-tests-on-garm.yaml @@ -35,7 +35,7 @@ jobs: - devmapper k8s: - k3s - runs-on: garm-ubuntu-2004 + runs-on: garm-ubuntu-2004-smaller env: DOCKER_REGISTRY: ${{ inputs.registry }} DOCKER_REPO: ${{ inputs.repo }}