File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -123,13 +123,22 @@ test: ## Run tests
123
123
# E2E_GINKGO_ARGS="-stream -focus='default'" E2E_ARGS="-use-existing-cluster='true'" make test-e2e
124
124
E2E_GINKGO_ARGS ?= -stream
125
125
.PHONY : test-e2e # # Run e2e tests using clusterctl
126
- test-e2e : $(GINKGO ) $(KIND ) $(KUSTOMIZE ) e2e-image # # Run e2e tests
126
+ test-e2e : $(GINKGO ) $(KIND ) $(KUSTOMIZE ) e2e-image test-e2e-image-prerequisites # # Run e2e tests
127
127
time $(GINKGO ) -trace -progress -v -tags=e2e --nodes=$(E2E_GINKGO_PARALLEL ) $(E2E_GINKGO_ARGS ) ./test/e2e/suites/e2e/... -- -config-path=" $( E2E_CONF_PATH) " -artifacts-folder=" $( ARTIFACTS) " --data-folder=" $( E2E_DATA_DIR) " $(E2E_ARGS )
128
128
129
129
.PHONY : e2e-image
130
130
e2e-image : docker-pull-prerequisites
131
131
docker build -f $(CONTAINERFILE ) --tag=" gcr.io/k8s-staging-capi-openstack/capi-openstack-controller:e2e" .
132
132
133
+ # Pull all the images references in test/e2e/data/e2e_conf.yaml
134
+ test-e2e-image-prerequisites :
135
+ docker pull gcr.io/k8s-staging-cluster-api/cluster-api-controller:v0.4.0
136
+ docker pull gcr.io/k8s-staging-cluster-api/kubeadm-bootstrap-controller:v0.4.0
137
+ docker pull gcr.io/k8s-staging-cluster-api/kubeadm-control-plane-controller:v0.4.0
138
+ docker pull quay.io/jetstack/cert-manager-cainjector:v1.1.0
139
+ docker pull quay.io/jetstack/cert-manager-webhook:v1.1.0
140
+ docker pull quay.io/jetstack/cert-manager-controller:v1.1.0
141
+
133
142
CONFORMANCE_E2E_ARGS ?= -kubetest.config-file=$(KUBETEST_CONF_PATH )
134
143
CONFORMANCE_E2E_ARGS += $(E2E_ARGS )
135
144
CONFORMANCE_GINKGO_ARGS ?= -stream
You can’t perform that action at this time.
0 commit comments