Kubectl List Contexts Jun 2026
: To see details for a single context, add the context name to your command: kubectl config get-contexts Essential Context Management Commands
: The name of the Kubernetes cluster as defined in your kubeconfig. kubectl list contexts
: To see only the name of the context you are currently using, run: kubectl config current-context : To see details for a single context,
kubectl config view -o json | jq -r '.contexts[] | "\(.name): \(.context.cluster) → \(.context.namespace // "default")"' kubectl list contexts