> 백엔드 개발 > Golang > 사용자 정의 Kubeconfig 컨텍스트로 Kubernetes Client-Go를 구성하는 방법은 무엇입니까?

사용자 정의 Kubeconfig 컨텍스트로 Kubernetes Client-Go를 구성하는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2024-11-07 03:58:03
원래의
619명이 탐색했습니다.

How to Configure Kubernetes Client-Go with a Custom Kubeconfig Context?

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 컨텍스트를 지정하고 적절한 Kubernetes 클러스터에 연결하도록 client-go 클라이언트를 올바르게 구성할 수 있습니다.

위 내용은 사용자 정의 Kubeconfig 컨텍스트로 Kubernetes Client-Go를 구성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿