Skip to content

Commit d02c974

Browse files
authored
feat: Ensure all images are loaded to K8s before starting e2e tests (#1389)
1 parent 8ad4970 commit d02c974

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Makefile.core.mk

+4
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ delete-cluster: $(tools/kind) ## Delete kind cluster.
288288
.PHONY: kube-load-image
289289
kube-load-image: $(tools/kind) ## Install the Higress image to a kind cluster using the provided $IMAGE and $TAG.
290290
tools/hack/kind-load-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/higress $(TAG)
291+
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/pilot $(ISTIO_LATEST_IMAGE_TAG)
292+
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/gateway $(ENVOY_LATEST_IMAGE_TAG)
291293
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/dubbo-provider-demo 0.0.3-x86
292294
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/nacos-standlone-rc3 1.0.0-RC3
293295
tools/hack/docker-pull-image.sh docker.io/hashicorp/consul 1.16.0
@@ -298,6 +300,7 @@ kube-load-image: $(tools/kind) ## Install the Higress image to a kind cluster us
298300
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/echo-server v1.0
299301
tools/hack/docker-pull-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/echo-body 1.0.0
300302
tools/hack/docker-pull-image.sh openpolicyagent/opa latest
303+
tools/hack/docker-pull-image.sh curlimages/curl latest
301304
tools/hack/docker-pull-image.sh registry.cn-hangzhou.aliyuncs.com/2456868764/httpbin 1.0.2
302305
tools/hack/docker-pull-image.sh registry.cn-hangzhou.aliyuncs.com/hinsteny/nacos-standlone-rc3 1.0.0-RC3
303306
tools/hack/kind-load-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/dubbo-provider-demo 0.0.3-x86
@@ -310,6 +313,7 @@ kube-load-image: $(tools/kind) ## Install the Higress image to a kind cluster us
310313
tools/hack/kind-load-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/echo-server v1.0
311314
tools/hack/kind-load-image.sh higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/echo-body 1.0.0
312315
tools/hack/kind-load-image.sh openpolicyagent/opa latest
316+
tools/hack/kind-load-image.sh curlimages/curl latest
313317
tools/hack/kind-load-image.sh registry.cn-hangzhou.aliyuncs.com/2456868764/httpbin 1.0.2
314318
tools/hack/kind-load-image.sh registry.cn-hangzhou.aliyuncs.com/hinsteny/nacos-standlone-rc3 1.0.0-RC3
315319

test/e2e/conformance/base/eureka.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ spec:
6666
containers:
6767
- name: eureka
6868
image: bitinit/eureka
69+
imagePullPolicy: IfNotPresent
6970
ports:
7071
- containerPort: 8761
7172
name: http

test/e2e/conformance/base/opa.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ spec:
3030
containers:
3131
- name: opa
3232
image: openpolicyagent/opa:latest
33+
imagePullPolicy: IfNotPresent
3334
ports:
3435
- containerPort: 8181
3536
command: [ "opa", "run", "-s" ]
@@ -57,6 +58,7 @@ spec:
5758
containers:
5859
- name: opa-test
5960
image: curlimages/curl:latest
61+
imagePullPolicy: IfNotPresent
6062
command:
6163
- sh
6264
- -c

0 commit comments

Comments
 (0)