Skip to content

Instantly share code, notes, and snippets.

@iamNoah1
Created February 4, 2022 10:39
Show Gist options
  • Save iamNoah1/b97ee2da4ba5cfd92d83f7e4e672f8d7 to your computer and use it in GitHub Desktop.
Save iamNoah1/b97ee2da4ba5cfd92d83f7e4e672f8d7 to your computer and use it in GitHub Desktop.
create-network-nginx.sh
az network vnet create --name k8sVnet --resource-group k8srg --location eastus --address-prefix "10.1.0.0/16"
az network vnet subnet create --name k8sSubnet --resource-group k8srg --vnet-name k8sVnet --address-prefix "10.1.0.0/22"
az network public-ip create --resource-group k8srg -n nginx-public-ip --allocation-method Static --location eastus --sku standard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment