aks contatiner error

BALAKRISHNA A 86 Reputation points
2021-03-29T07:14:33.857+00:00

![82150-image.png][1] [1]: /api/attachments/82290-aks-error.jpg?platform=QnA i'm getting the error in aks dashboard

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,854 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Monalla-MSFT 11,551 Reputation points
    2021-03-30T14:53:29.447+00:00

    Hello @BALAKRISHNA A - Thanks for reaching out.

    Usually, there is some limitation to the user for the use of resources. You get the error when you try to scale up for more nodes if the vCpu have none left. I think it's also a possible reason for you. You can take a check.

    Use the az aks scale command to scale the cluster nodes using Azure CLI as described here: scale-cluster

    az aks show --resource-group myResourceGroup --name myAKSCluster --query agentPoolProfiles

    This will show you the descriptive error message in Azure CLI. It is likely that you exceeded the limit for the core quota.

    I hope this information helps.

    Please feel free to "Accept as Answer" if the above response helped, so it can be beneficial to the community.

    0 comments No comments

  2. BALAKRISHNA A 86 Reputation points
    2021-03-31T08:34:06.077+00:00

    we are not doing scale up the node and find output of the command
    , {
    "availabilityZones": null,
    "count": 4,
    "enableAutoScaling": false,
    "enableNodePublicIp": null,
    "maxCount": null,
    "maxPods": 110,
    "minCount": null,
    "mode": "System",
    "name": "agentpool",
    "nodeImageVersion": "AKSUbuntu-1804gen2-2021.03.03",
    "nodeLabels": {},
    "nodeTaints": null,
    "orchestratorVersion": "1.18.14",
    "osDiskSizeGb": 128,
    "osDiskType": "Managed",
    "osType": "Linux",
    "powerState": {
    "code": "Running"
    },
    "provisioningState": "Succeeded",
    "proximityPlacementGroupId": null,
    "scaleSetEvictionPolicy": null,
    "scaleSetPriority": null,
    "spotMaxPrice": null,
    "tags": null,
    "type": "VirtualMachineScaleSets",
    "upgradeSettings": null,
    "vmSize": "Standard_DS2_v2"
    }
    ]

    0 comments No comments