How to change current-context

287 Views Asked by At

I use kubespray installed Kubernetes Cluster. I defined the cluster name as cluster.devops in the file, group_vars/k8s-cluster/k8s-cluster.yml. After the Kubernetes Cluster installed. the current-context in kube confi file is [email protected]. I would like the current-context is cluster.devops,

i.e. current-context is same as cluster name. How to do it?

1

There are 1 best solutions below

1
On BEST ANSWER

you can rename context using

kubectl config rename-context old-name new-name

for example in your case

kubectl config rename-context [email protected] cluster.devops