Hello, @Mat CHAN ! We received your feedback and want to make sure your question is answered.
Several of the AKS resources are automatically named. Can those resource names be changed?
You are able to provide your own name for the AKS node resource group, however you cannot rename AKS clusters and associated resources. This means that there you will not be able to have a standardized naming convention across the whole platform as that is not supported.
By default, AKS names the node resource group MC_resourcegroupname_clustername_location, but you can also provide your own name. To specify your own resource group name, install the aks-preview Azure CLI extension version 0.3.2 or later. When you create an AKS cluster using the
az aks create
command, use the--node-resource-group
parameter and specify a name for the resource group. If you use an Azure Resource Manager template to deploy an AKS cluster, you can define the resource group name using the nodeResourceGroup property.
- The Azure resource provider automatically creates the secondary resource group.
- You can specify a custom resource group name only when you're creating the cluster. As you work with the node resource group, keep in mind that you can't:
- Specify an existing resource group for the node resource group.
- Specify a different subscription for the node resource group.
- Change the node resource group name after the cluster has been created.
- Specify names for the managed resources within the node resource group.
- Modify or delete Azure-created tags of managed resources within the node resource group. See additional information in the next section.
Additional Reading:
I hope this has been helpful! Your feedback is important so please take a moment to accept answers.
If you still have questions, please let us know what is needed in the comments so the question can be answered. Thank you for helping to improve Microsoft Q&A!