Skip to content

Commit

Permalink
Fix: pulling unused images in the middle of tests
Browse files Browse the repository at this point in the history
Signed-off-by: peppi-lotta <[email protected]>
  • Loading branch information
peppi-lotta committed Jan 27, 2025
1 parent 20f8a30 commit 2b55839
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,11 @@ ARTIFACTS ?= $(ROOT_DIR)/_artifacts
E2E_CONF_FILE ?= $(ROOT_DIR)/test/e2e/config/e2e_conf.yaml
E2E_OUT_DIR ?= $(ROOT_DIR)/test/e2e/_out
E2E_CONF_FILE_ENVSUBST ?= $(E2E_OUT_DIR)/$(notdir $(E2E_CONF_FILE))
E2E_CONTAINERS ?= quay.io/metal3-io/cluster-api-provider-metal3 quay.io/metal3-io/baremetal-operator quay.io/metal3-io/ip-address-manager

CAPM3_IMAGE ?= $(REGISTRY)cluster-api-provider-metal3:latest
IPAM_IMAGE ?= $(REGISTRY)ip-address-manager:latest
BARE_METAL_OPERATOR_IMAGE ?= $(REGISTRY)baremetal-operator:latest
E2E_CONTAINERS ?= $(CAPM3_IMAGE) $(IPAM_IMAGE) $(BARE_METAL_OPERATOR_IMAGE)

SKIP_CLEANUP ?= false
EPHEMERAL_TEST ?= false
Expand Down

0 comments on commit 2b55839

Please sign in to comment.