사용자 정의 Kubernetes 리소스를 생성하고 검색하려면 RESTClient를 사용하고 사용자 정의 리소스의 API 경로 및 버전을 지정해야 합니다.
KongPlugin과 같은 사용자 정의 리소스를 생성하려면 다음 코드를 사용할 수 있습니다.
<code class="go">import "k8s.io/client-go/rest" func CreateCustomResource() error { // Construct the full path to the custom resource absPath := "/apis/configuration.konghq.com/v1/namespaces/default/kongplugins" // Marshal the custom resource data into a byte array body, err := json.Marshal(customResource) if err != nil { return err } // Create a RESTClient using in-cluster configuration confs, err := rest.InClusterConfig() if err != nil { return err } client, err := rest.RESTClientFor(confs) if err != nil { return err } // Make a POST request to create the custom resource _, err = client.Post().AbsPath(absPath).Body(body).DoRaw() if err != nil { return err } return nil }</code>
사용자 지정 리소스를 검색하려면 다음 코드를 사용할 수 있습니다.
<code class="go">import "k8s.io/client-go/rest" func GetCustomResource() (*CustomResource, error) { // Construct the full path to the custom resource absPath := "/apis/configuration.konghq.com/v1/namespaces/default/kongplugins/kongplugin-sample" // Create a RESTClient using in-cluster configuration confs, err := rest.InClusterConfig() if err != nil { return nil, err } client, err := rest.RESTClientFor(confs) if err != nil { return nil, err } // Make a GET request to retrieve the custom resource data, err := client.Get().AbsPath(absPath).DoRaw() if err != nil { return nil, err } // Unmarshal the JSON response into the custom resource object customResource := &CustomResource{} if err := json.Unmarshal(data, customResource); err != nil { return nil, err } return customResource, nil }</code>
위 내용은 RESTClient를 사용하여 사용자 정의 Kubernetes 리소스를 생성하고 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!