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.
2 parents 8a67717 + cdf97b3 commit 95c0891Copy full SHA for 95c0891
hack/aks/Makefile
@@ -48,6 +48,23 @@ azcfg: ## Set the $AZCLI to use aks-preview
48
@$(AZCLI) extension add --name aks-preview --yes
49
@$(AZCLI) extension update --name aks-preview
50
51
+ip:
52
+ $(AZCLI) network public-ip create --name $(IP_PREFIX)-$(CLUSTER)-$(IPVERSION) \
53
+ --resource-group $(GROUP) \
54
+ --allocation-method Static \
55
+ --ip-tags $(IP_TAG) \
56
+ --location $(REGION) \
57
+ --sku Standard \
58
+ --tier Regional \
59
+ --version IP$(IPVERSION)
60
+
61
+ipv4:
62
+ @$(MAKE) ip IPVERSION=v4
63
64
+ipv6:
65
+ @$(MAKE) ip IPVERSION=v6
66
67
68
set-kubeconf: ## Adds the kubeconf for $CLUSTER
69
$(AZCLI) aks get-credentials -n $(CLUSTER) -g $(GROUP)
70
0 commit comments