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 736bfbc commit b753eebCopy full SHA for b753eeb
Makefile
@@ -749,6 +749,11 @@ aks-create: $(KUBECTL) ## Create aks cluster as mgmt cluster.
749
750
.PHONY: tilt-up
751
tilt-up: install-tools ## Start tilt and build kind cluster if needed.
752
+ ifeq (, $(shell which az))
753
+ $(error "No az found")
754
+ else
755
+ @echo 'az is installed'
756
+ endif
757
@if [ -z "${AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY}" ]; then \
758
export AZURE_CLIENT_ID_USER_ASSIGNED_IDENTITY=$(shell cat $(AZURE_IDENTITY_ID_FILEPATH)); \
759
fi; \
0 commit comments