You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@description('The name of the Managed Cluster resource.')
2
+
paramclusterNamestring//= 'aks101cluster'
3
+
4
+
@description('The location of the Managed Cluster resource.')
5
+
paramlocationstring = resourceGroup().location
6
+
7
+
@description('Optional DNS prefix to use with hosted Kubernetes API server FQDN.')
8
+
paramdnsPrefixstring
9
+
10
+
@description('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.')
11
+
@minValue(0)
12
+
@maxValue(1023)
13
+
paramosDiskSizeGBint = 0
14
+
15
+
@description('The number of nodes for the cluster.')
16
+
@minValue(1)
17
+
@maxValue(50)
18
+
paramagentCountint = 3
19
+
20
+
@description('The size of the Virtual Machine.')
21
+
paramagentVMSizestring = 'standard_d2s_v3'
22
+
23
+
@description('User name for the Linux Virtual Machines.')
24
+
paramlinuxAdminUsernamestring
25
+
26
+
@description('Configure all linux machines with the SSH RSA public key string. Your key should include three parts, for example \'ssh-rsa AAAAB...snip...UcyupgH azureuser@linuxvm\'')
0 commit comments