I have created an instance of Azure Kubernetes Service (AKS) and have discovered that apart from the resource group I created the AKS instance in, two other resource groups were created for me. Here is what my resource groups and their contents looks like:
MyResourceGroup-Production
MyAKSInstance
- Azure Kubernetes Service (AKS)DefaultResourceGroup-WEU
ContainerInsights(MyAKSInstance)
- SolutionMyAKSInstance
- Log AnalyticsMC_MyResourceGroup-Production_MyAKSInstance_westeurope
agentpool-availabilitySet-36219400
- Availability setaks-agentpool-36219400-0
- Virtual machineaks-agentpool-36219400-0_OsDisk_1_09469b24b1ff4526bcfd5d00840cfbbc
- Diskaks-agentpool-36219400-nic-0
- Network interfaceaks-agentpool-36219400-nsg
- Network security groupaks-agentpool-36219400-routetable
- Route tableaks-vnet-36219400
- Virtual networkI have a few questions about these two separate resource groups:
DefaultResourceGroup-WEU
into MyResourceGroup-Production
?DefaultResourceGroup-WEU
seems to be created if you enable Log Analytics. Can I use this instance for accepting logs from other instances?I managed to pre-create a log analytics resource and use that for Kubernetes. However, there is a third resource that I'm having trouble moving into my resource group:
{
"type": "Microsoft.Resources/deployments",
"name": "SolutionDeployment",
"apiVersion": "2017-05-10",
"resourceGroup": "[split(parameters('omsWorkspaceId'),'/')[4]]",
"subscriptionId": "[split(parameters('omsWorkspaceId'),'/')[2]]",
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"apiVersion": "2015-11-01-preview",
"type": "Microsoft.OperationsManagement/solutions",
"location": "[parameters('workspaceRegion')]",
"name": "[concat('ContainerInsights', '(', split(parameters('omsWorkspaceId'),'/')[8], ')')]",
"properties": {
"workspaceResourceId": "[parameters('omsWorkspaceId')]"
},
"plan": {
"name": "[concat('ContainerInsights', '(', split(parameters('omsWorkspaceId'),'/')[8], ')')]",
"product": "[concat('OMSGallery/', 'ContainerInsights')]",
"promotionCode": "",
"publisher": "Microsoft"
}
}
]
}
},
"dependsOn": []
}