Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hack/swift/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down