diff --git a/hack/swift/Makefile b/hack/swift/Makefile index 37f8e581b6..24da0ac3be 100644 --- a/hack/swift/Makefile +++ b/hack/swift/Makefile @@ -52,7 +52,7 @@ vars: ## Show the env vars configured for the swift command @echo VNET=$(VNET) @echo CLUSTER=$(CLUSTER) -net-up: azcfg ## Create required swift vnet/subnets +swift-net-up: azcfg ## Create required swift vnet/subnets $(AZCLI) network vnet create -g $(GROUP) -l $(REGION) --name $(VNET) --address-prefixes 10.0.0.0/8 -o none $(AZCLI) network vnet subnet create -g $(GROUP) --vnet-name $(VNET) --name nodenet --address-prefixes 10.240.0.0/16 -o none $(AZCLI) network vnet subnet create -g $(GROUP) --vnet-name $(VNET) --name podnet --address-prefixes 10.241.0.0/16 -o none @@ -73,7 +73,7 @@ swift-up: azcfg swift-net-up ## Brings up a swift cluster $name in $SUB/$REGION @$(MAKE) set-kubeconf byocni-up: azcfg swift-net-up ## Brings up a swift cluster $name in $SUB/$REGION - $(AZCLI) aks create -n $(CLUSTER)-g $(GROUP) -l $(REGION) \ + $(AZCLI) aks create -n $(CLUSTER) -g $(GROUP) -l $(REGION) \ --max-pods 250 \ --node-count 3 \ --network-plugin none \