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.
1 parent d6d929b commit fa0046fCopy full SHA for fa0046f
src/install.ps1
@@ -56,6 +56,12 @@ az vmss identity assign --resource-group $VMSSresourceGroup --name $VMSSnodepool
56
#Update VMSS instances
57
az vmss update-instances -g $VMSSresourceGroup -n $VMSSnodepoolName --instance-ids *
58
59
+# Get AKS credentials
60
+az aks get-credentials --resource-group $resourceGroup --name $aksName
61
+
62
+#Set the custom label to the workload node pool
63
+kubectl get nodes -l agentpool=$nodePoolName -o name | % { kubectl label $_ workload=true }
64
65
# Create CosmosDB account (SQL API)
66
az cosmosdb create --name $accountName --resource-group $resourceGroup --locations regionName=$location failoverPriority=0 isZoneRedundant=False --kind GlobalDocumentDB
67
0 commit comments