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
Question
Exhibit
Answer Area
Drag items
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
Community Discussion
No community discussion yet for this question.
