Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

449
Views
How to create a Windows node pool in AKS cluster?

I'm trying to add a node pool that can run Windows based containers. What I see in Azure portal is a disabled option to select Windows as the OS. The hint says: Windows node pools require a Windows authentication profile. I tried googling the possible solution but found nothing.

How can I provide the Windows authentication profile to the existing AKS cluster to make AKS run Windows based containers?

enter image description here

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Looks like there is an open issue regarding this situation.

The problem is while creating the cluster for the first time, you didn't provide any --windows-admin-password and --windows-admin-username. Therefore, when you try to create a new windows node pool that will create VM's, The VM's don't have any Windows authentication profile.

If you look at the cluster resource az aks show and don't see the Window profile, then you would have to create a new cluster, for example using AZ CLI:

az aks create -g MyResourceGroup -n MyManagedCluster --load-balancer-sku Standard --network-plugin azure --windows-admin-username azure --windows-admin-password 'replacePassword1234$'

If you created your cluster using terraform, you can add this section:

# Create AKS Cluster
resource "azurerm_kubernetes_cluster" "akscluster" {

# Code goes here..

  windows_profile {
    admin_username    = "azure"
    admin_password    = "azure"
  }
}

Pay attention to this thread as well.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!