Choose the main advantage of managing multiple Kubernetes clusters with a dedicated multi-cluster management tool.
Think about how managing many clusters can be simplified.
Multi-cluster management tools provide a central place to control and apply policies consistently across clusters, improving operational efficiency.
What is the output of the command kubectl config get-contexts when you have two clusters named cluster1 and cluster2 configured?
kubectl config get-contextsLook for the current context marked with an asterisk (*) and the order of contexts.
The output lists all contexts with the current one marked by '*'. The order usually shows the current context first.
Which YAML snippet correctly configures a service mesh control plane to manage multiple Kubernetes clusters?
Look for a configuration that enables multi-cluster in a service mesh control plane.
Option A shows an IstioOperator resource enabling multi-cluster features, which is correct for service mesh multi-cluster setup.
You try to switch context to a remote cluster using kubectl config use-context remote-cluster but get the error error: context "remote-cluster" does not exist. What is the most likely cause?
Check if the context is defined in your kubeconfig file.
The error means the context name is not found in the kubeconfig file, so kubectl cannot switch to it.
Arrange the steps in the correct order to deploy an application across multiple Kubernetes clusters using a centralized configuration management tool.
Think about defining config first, then setting access, then deploying sync, then verifying.
You first define what to deploy, then set up access, then deploy the sync tool, and finally check the results.