在 Kubernetes Client-Go 中使用 kubectl 上下文
要使用自定义 kubeconfig 上下文配置 Kubernetes client-go,您可以利用提供的辅助功能。以下是实现此目标的方法:
<code class="go">import ( "fmt" "k8s.io/client-go/kubernetes" "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" ) // GetKubeClientForContext creates a Kubernetes config and client using the specified kubeconfig context. func GetKubeClientForContext(context string) (*rest.Config, kubernetes.Interface, error) { // Create a Kubernetes client config using the specified context. config, err := clientcmd.NewNonInteractiveDeferredLoadingClientConfig( &clientcmd.ClientConfigLoadingRules{ExplicitPath: kubeconfig}, &clientcmd.ConfigOverrides{CurrentContext: context}, ).ClientConfig() if err != nil { return nil, nil, fmt.Errorf("could not create Kubernetes config for context %q: %s", context, err) } // Create a new Kubernetes client using the config. client, err := kubernetes.NewForConfig(config) if err != nil { return nil, nil, fmt.Errorf("could not create Kubernetes client for context %q: %s", context, err) } // Return the config and the client. return config, client, nil }</code>
通过使用具有自定义上下文覆盖的 NewNonInteractiveDeferredLoadingClientConfig,您可以指定所需的 kubeconfig 上下文并正确配置 client-go 客户端以连接到适当的 Kubernetes 集群。
以上是如何使用自定义 Kubeconfig 上下文配置 Kubernetes Client-Go?的详细内容。更多信息请关注PHP中文网其他相关文章!