While creating the AKS getting following error

Varma 1,385 Reputation points
2024-07-05T09:23:37.04+00:00

User's image

can you tell me which size is better for me to proceed with AKS. i am doing it for lab purpose.

MS is not letting me to create AKS.

mine is pay as go service

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.
2,145 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Deepanshukatara-6769 10,215 Reputation points
    2024-07-05T10:31:11.1966667+00:00

    Hi Varma,

    Welcome to MS Q&A

    By ensuring that your AKS cluster configuration includes a system node pool, you should be able to resolve the error and successfully create the clusterThe error message "Creating an Azure Kubernetes Service cluster without a system node pool is not permitted" indicates that the AKS cluster creation process requires at least one system node pool to be defined. Here are the steps to resolve this issue:

    1. Define a System Node Pool: Ensure that your AKS cluster configuration includes at least one system node pool. A system node pool is required to run critical system pods and services.
    2. Use Azure CLI to Create AKS Cluster with System Node Pool:
       az aks create \
         --resource-group myResourceGroup \
         --name myAKSCluster \
         --node-count 1 \
         --node-vm-size Standard_DS2_v2 \
         --enable-addons monitoring \
         --generate-ssh-keys
       
    
    1. Check Your Configuration: Verify that your configuration file or parameters include a system node pool. Here is an example of how to define a system node pool in your configuration:
       
    
    1. Review Documentation: Refer to the official Azure documentation for more details on creating AKS clusters and configuring node pools:

    By ensuring that your AKS cluster configuration includes a system node pool, you should be able to resolve the error and successfully create the cluste, so size you can keep

    Standard_DS2_v2
    
    
    

    Please let me know if any further question

    kindly accept if it helps

    Thanks

    Deepanshu

    0 comments No comments

  2. Nikhil Duserla 2,825 Reputation points Microsoft Vendor
    2024-07-05T12:06:35.3966667+00:00

    Hi Varma ,

    Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.

    We understand from your query that you are experiencing an issue while trying to create a user node pool in your labs. By default, AKS creates one system node, and you need to create a user node pool according to your requirements. So that you encounter no errors during the creation of the AKS cluster.User's image

    If you have any further queries, do let us know.

    If the answer is helpful, please click "Accept Answer" and "Upvote it."


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.