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 40d693f commit 4f51214Copy full SHA for 4f51214
Makefile
@@ -754,6 +754,13 @@ aks-create: $(KUBECTL) ## Create aks cluster as mgmt cluster.
754
755
.PHONY: tilt-up
756
tilt-up: install-tools ## Start tilt and build kind cluster if needed.
757
+ # Create management cluster.
758
+ if [ -z "${USE_AKS_MANAGEMENT_CLUSTER}" ]; then \
759
+ $(MAKE) kind-create ; \
760
+ else \
761
+ $(MAKE) aks-create ; \
762
+ fi
763
+
764
@if [ -z "${AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY}" ]; then \
765
export AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY=$(shell cat $(AZURE_IDENTITY_ID_FILEPATH)); \
766
fi; \
0 commit comments