nerdexam
Microsoft

AZ-400 · Question #104

Drag and Drop Question You provision an Azure Kubernetes Service (AKS) cluster that has RBAC enabled. You have a Helm chart for a client application. You need to configure Helm and Tiller on the clust

The correct answer is kubectl create; helm init; helm install. The correct sequence begins with 'kubectl create' to create a ServiceAccount and ClusterRoleBinding for Tiller (required when RBAC is enabled on AKS, so Tiller has the necessary permissions to manage resources). Next, 'helm init' initializes Helm and deploys Tiller into the clust

Submitted by rachelw· Mar 6, 2026Implement container-based solutions - specifically configuring Helm (v2) package management with Tiller on an RBAC-enabled AKS cluster, which maps to the Azure DevOps / AZ-204/AZ-400 exam domain of designing and implementing containerized solutions.

Question

Drag and Drop Question You provision an Azure Kubernetes Service (AKS) cluster that has RBAC enabled. You have a Helm chart for a client application. You need to configure Helm and Tiller on the cluster and install the chart. Which three commands should you recommend be run in sequence? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order. Answer:

Exhibit

AZ-400 question #104 exhibit

Answer Area

Drag items

helm installkubectl createhelm completionhelm inithelm serve

Correct arrangement

  • kubectl create
  • helm init
  • helm install

Explanation

The correct sequence begins with 'kubectl create' to create a ServiceAccount and ClusterRoleBinding for Tiller (required when RBAC is enabled on AKS, so Tiller has the necessary permissions to manage resources). Next, 'helm init' initializes Helm and deploys Tiller into the cluster using the ServiceAccount just created (e.g., helm init --service-account tiller). Finally, 'helm install' deploys the application chart onto the cluster once Helm and Tiller are properly configured.

Topics

#Azure Kubernetes Service (AKS)#Helm and Tiller#Kubernetes RBAC#Container Orchestration

Community Discussion

No community discussion yet for this question.

Full AZ-400 Practice