A Namespace contains multiple Tanzu Kubernetes clusters.
How is access granted to a single Tanzu Kubernetes cluster?
A Namespace contains multiple Tanzu Kubernetes clusters.
How is access granted to a single Tanzu Kubernetes cluster?
To grant access to a single Tanzu Kubernetes cluster, you need to create a custom Role and RoleBinding specific to that cluster and apply them using kubectl commands. This method leverages Kubernetes Role-Based Access Control (RBAC) mechanisms to manage access at the level of individual clusters within a Namespace, ensuring that the permissions are tailored precisely to the Tanzu Kubernetes cluster in question.
I'm guessing C. https://docs.vmware.com/en/VMware-vSphere/7.0/vmware-vsphere-with-tanzu/GUID-6DE4016E-D51C-4E9B-9F8B-F6577A18F296.html Let's do the answer elimination: A - We need a custom role and rolebinding, BUT, this is applied to the whole namespace, not the Tanzu Kubernetes cluster within that namespace. Reading the question closely is important. B - No, this is not done through VSphere. C - Yes, this matches the vendor documentation. We must do this in Kubernetes, and we must apply it only to the Tanzu Kubernetes cluster. D - No, again, this is not done in VSphere.
C. Create a custom Role and RoleBinding, and then apply to the Tanzu Kubernetes cluster using kubectl commands. Access to a single Tanzu Kubernetes cluster within a Namespace is typically managed using Kubernetes RBAC (Role-Based Access Control) mechanisms. You would create a custom Role and RoleBinding specific to the Tanzu Kubernetes cluster and then apply them using kubectl commands. So, the correct answer is C. Create a custom Role and RoleBinding, and then apply to the Tanzu Kubernetes cluster using kubectl commands.