我按照 Kubernetes 文档使用 client-go 访问集群: https ://kubernetes.io/docs/tasks/administer-cluster/access-cluster-api/#accessing-the-api-from-within-a-pod
现在,就我而言,在我的 kubeconfig 中,我有不止一个集群。它们的上下文名称是 cluster-1 和 cluster-2,而 cluster-1 是默认集群。
package main
import (
"context"
"fmt"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
)
func main() {
// uses the current context in kubeconfig
// path-to-kubeconfig -- for example, /root/.kube/config
config, _ := clientcmd.BuildConfigFromFlags("", "<path-to-kubeconfig>")
// creates the clientset
clientset, _ := kubernetes.NewForConfig(config)
// access the API to list pods
pods, _ := clientset.CoreV1().Pods("").List(context.TODO(), v1.ListOptions{})
fmt.Printf("There are %d pods in the cluster\n", len(pods.Items))
}
上面的代码默认使用当前上下文。
我希望能够根据我的需要将 cluster-1 或 cluster-2 作为上下文传递。
我怎样才能做到这一点?