2V0-71.23 Question 144
Select 4You are tasked with attaching an existing Kubernetes cluster to your VMware Tanzu Mission Control (TMC) environment to enable centralized management. The cluster is running on a public cloud provider. Which of the following steps are necessary to successfully attach the Kubernetes cluster to TMC?
- A
Install the Tanzu Mission Control agent on the Kubernetes cluster.
- B
Generate an API token in Tanzu Mission Control to authenticate the cluster attachment.
- C
Run the
kubectl applycommand with the Tanzu Mission Control YAML file on the Kubernetes cluster. - D
Ensure the Kubernetes cluster has at least one node with the 'master' role.
- E
Verify that the Kubernetes cluster meets the minimum version required by Tanzu Mission Control.
Show answer and explanation
Correct answers: A, B, C, E
Explanation
To attach a Kubernetes cluster to Tanzu Mission Control, you must install the TMC agent on the cluster, authenticate using an API token, apply the TMC-provided YAML file, and ensure the cluster meets the minimum version requirements. While control plane functionality is essential, there is no specific requirement for nodes labeled with the 'master' role.
- A. Correct.
Correct. The Tanzu Mission Control agent must be installed on the Kubernetes cluster to enable communication and management.
- B. Correct.
Correct. An API token is required for securely authenticating the cluster attachment process in Tanzu Mission Control.
- C. Correct.
Correct. The YAML file provided by TMC contains the necessary configurations to connect the cluster to Tanzu Mission Control, and it must be applied using
kubectl apply. - D. Incorrect.
Incorrect. While the cluster requires control plane functionality, Tanzu Mission Control does not explicitly require a node labeled with the 'master' role for attachment.
- E. Correct.
Correct. Tanzu Mission Control enforces a minimum Kubernetes version to ensure compatibility with its features. Verifying this is a necessary step.