From 1cc12b1a1cd54aa09f179f9db94447b5069051d3 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Wed, 28 Apr 2021 14:16:23 +0530 Subject: [PATCH] ci: pre-pull busybox container image pre-pull the required busy box container image in k8s-e2e-external-storage. Signed-off-by: Madhu Rajanna --- k8s-e2e-external-storage.groovy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/k8s-e2e-external-storage.groovy b/k8s-e2e-external-storage.groovy index 4f1ced14b..665abf7f5 100644 --- a/k8s-e2e-external-storage.groovy +++ b/k8s-e2e-external-storage.groovy @@ -152,6 +152,11 @@ node('cico-workspace') { // single-node-k8s.sh pushes the image into minikube podman_pull(ci_registry, "docker.io", rook_ceph_cluster_image - d_io_regex) } + + // busy box is used in external storage testing + podman_pull(ci_registry, "docker.io", "library/busybox:1.29") + ssh "./podman2minikube.sh docker.io/library/busybox:1.29" + timeout(time: 30, unit: 'MINUTES') { ssh "./single-node-k8s.sh --k8s-version=${k8s_release}" }