From ab0e8f6472d351e8adaa9a7df0e6f352c9dfdce4 Mon Sep 17 00:00:00 2001 From: Benjamin Copeland Date: Tue, 28 Feb 2023 14:33:04 +0000 Subject: [PATCH 1/2] Kir: Update docker image to pull This will stop us pulling from DockerHub. Right now kir is already pulled on the workers so this won't break anything. However LAVA source code needs to change to introduce pulling if the image is not there. Signed-off-by: Benjamin Copeland --- lava_test_plans/projects/lkft/fastboot.jinja2 | 1 + 1 file changed, 1 insertion(+) diff --git a/lava_test_plans/projects/lkft/fastboot.jinja2 b/lava_test_plans/projects/lkft/fastboot.jinja2 index 64131aef..77dfffc9 100644 --- a/lava_test_plans/projects/lkft/fastboot.jinja2 +++ b/lava_test_plans/projects/lkft/fastboot.jinja2 @@ -23,6 +23,7 @@ to: fastboot docker: image: {{DOCKER_IMAGE}} + local: true images: {% if rootfs == true %} {% if ptable == true %} From 18aceef7d4d14cbce56f731cdc84ebea441f6198 Mon Sep 17 00:00:00 2001 From: Benjamin Copeland Date: Wed, 8 Mar 2023 15:23:15 +0000 Subject: [PATCH 2/2] KIR: Update kir to use a tagged release version Now KIR has a tag release, we should pull that release. Signed-off-by: Benjamin Copeland --- lava_test_plans/projects/lkft/fastboot.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lava_test_plans/projects/lkft/fastboot.jinja2 b/lava_test_plans/projects/lkft/fastboot.jinja2 index 77dfffc9..da84b80b 100644 --- a/lava_test_plans/projects/lkft/fastboot.jinja2 +++ b/lava_test_plans/projects/lkft/fastboot.jinja2 @@ -6,7 +6,7 @@ {% set BOOT_LABEL_OVERRIDE = BOOT_LABEL_OVERRIDE|default(false) %} {% set DEPLOY_TARGET = DEPLOY_TARGET|default("downloads") %} -{% set DOCKER_IMAGE = DOCKER_IMAGE|default("linaro/kir:master") %} +{% set DOCKER_IMAGE = DOCKER_IMAGE|default("linaro/kir:20230308") %} {% set DOCKER_PTABLE_FILE = DOCKER_PTABLE_FILE|default("ptable-linux-8g.img") %} {% set DOCKER_BOOT_FILE = DOCKER_BOOT_FILE|default("boot.img") %} {% set DOCKER_ROOTFS_FILE = DOCKER_ROOTFS_FILE|default("rpb-console-image-lkft.rootfs.img") %}