We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556a351 commit c79f947Copy full SHA for c79f947
Makefile
@@ -100,13 +100,14 @@ create-proxy-registries:
100
docker compose up -d --force-recreate proxy-docker proxy-ghcr proxy-gcr proxy-k8s proxy-quay
101
102
.PHONY: control-plane-bake
103
-control-plane-bake: create-proxy-registries
+control-plane-bake:
104
@if ! which kind > /dev/null; then echo "kind needs to be installed"; exit 1; fi
105
@if ! kind get clusters | grep metal-control-plane > /dev/null; then \
106
kind create cluster $(KIND_ARGS) \
107
--name metal-control-plane \
108
--config $(KINDCONFIG) \
109
--kubeconfig $(KUBECONFIG); fi
110
+ $(MAKE) create-proxy-registries
111
112
.PHONY: partition
113
partition: partition-bake
0 commit comments