Skip to content

Commit c79f947

Browse files
authored
Create proxy registries after kind cluster. (#248)
1 parent 556a351 commit c79f947

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,14 @@ create-proxy-registries:
100100
docker compose up -d --force-recreate proxy-docker proxy-ghcr proxy-gcr proxy-k8s proxy-quay
101101

102102
.PHONY: control-plane-bake
103-
control-plane-bake: create-proxy-registries
103+
control-plane-bake:
104104
@if ! which kind > /dev/null; then echo "kind needs to be installed"; exit 1; fi
105105
@if ! kind get clusters | grep metal-control-plane > /dev/null; then \
106106
kind create cluster $(KIND_ARGS) \
107107
--name metal-control-plane \
108108
--config $(KINDCONFIG) \
109109
--kubeconfig $(KUBECONFIG); fi
110+
$(MAKE) create-proxy-registries
110111

111112
.PHONY: partition
112113
partition: partition-bake

0 commit comments

Comments
 (0)