From 3b1ca7d1311d2bda4dd7d199d307c1bc079c5cd3 Mon Sep 17 00:00:00 2001 From: Sachin Itagi Date: Fri, 10 May 2024 04:20:53 +0000 Subject: [PATCH] Add image replacement for amd64 specific image Signed-off-by: Sachin Itagi --- test/examples_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/examples_test.go b/test/examples_test.go index 74a74909858..3880bc42022 100644 --- a/test/examples_test.go +++ b/test/examples_test.go @@ -280,13 +280,14 @@ func imageNamesMapping() map[string]string { } case "ppc64le": return map[string]string{ - "registry": getTestImage(registryImage), - "node": "node:alpine3.11", - "gcr.io/cloud-builders/git": "alpine/git:latest", - "docker:dind": "ibmcom/docker-ppc64le:19.03-dind", + "registry": getTestImage(registryImage), + "node": "node:alpine3.11", + "gcr.io/cloud-builders/git": "alpine/git:latest", + "docker@sha256:74e78208fc18da48ddf8b569abe21563730845c312130bd0f0b059746a7e10f5": "ibmcom/docker-ppc64le:19.03-dind", "docker": "docker:18.06.3", "mikefarah/yq:3": "danielxlee/yq:2.4.0", "stedolan/jq": "ibmcom/jq-ppc64le:latest", + "amd64/ubuntu": "ppc64le/ubuntu", "gcr.io/kaniko-project/executor:v1.3.0": getTestImage(kanikoImage), } }