在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中文網其他相關文章!