The Azure Quickstart templates are currently available in English
This ARM template demonstrates the deployment of an AKS instance with advanced networking features into an existing virtual network. Additionally, the chosen Service Principal is assigned the Network Contributor role against the subnet that contains the AKS cluster.
此 Azure Resource Manager (ARM) 範本是由社群成員 (而非 Microsoft) 建立。每個 ARM 範本都是由其擁有者 (而非 Microsoft) 依據授權合約授權給您。Microsoft 並不負責社群成員所提供和授權的 ARM 範本,而不會為了安全性、相容性或效能進行篩選。社群 ARM 範本並未依據任何 Microsoft 支援方案或服務提供支援,而且會在沒有任何擔保的情況下依現況提供。
參數
參數名稱 | 說明 |
---|---|
resourceName | The name of the Managed Cluster resource. |
location | The Azure location of the AKS resource. |
dnsPrefix | Optional DNS prefix to use with hosted Kubernetes API server FQDN. |
osDiskSizeGB | Disk size (in GB) to provision for each of the agent pool nodes. This value ranges from 0 to 1023. Specifying 0 will apply the default disk size for that agentVMSize. |
agentCount | The number of agent nodes for the cluster. Production workloads have a recommended minimum of 3. |
agentVMSize | The size of the Virtual Machine. |
existingServicePrincipalObjectId | Oject ID against which the Network Contributor roles will be assigned on the subnet |
existingServicePrincipalClientId | Client ID (used by cloudprovider) |
existingServicePrincipalClientSecret | The Service Principal Client Secret. |
osType | The type of operating system. |
kubernetesVersion | The version of Kubernetes. |
enableHttpApplicationRouting | boolean flag to turn on and off of http application routing |
networkPlugin | Network plugin used for building Kubernetes network. |
maxPods | Maximum number of pods that can run on a node. |
enableRBAC | boolean flag to turn on and off of RBAC |
builtInRoleType | Built-in role to assign |
existingVirtualNetworkName | Name of an existing VNET that will contain this AKS deployment. |
existingVirtualNetworkResourceGroup | Name of the existing VNET resource group |
existingSubnetName | Subnet name that will contain the App Service Environment |
serviceCidr | A CIDR notation IP range from which to assign service cluster IPs. |
dnsServiceIP | Containers DNS server IP address. |
dockerBridgeCidr | A CIDR notation IP for Docker bridge. |
使用範本
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deployment安裝和設定 Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-aks-advanced-networking/azuredeploy.json
命令列
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deployment安裝和設定 Azure 跨平台命令列介面
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-aks-advanced-networking/azuredeploy.json