Go クライアントを使用した Kubernetes ポッドでのコマンドの実行
問題:
提供されたコードスニペットは、Kubernetes Go クライアントを使用してポッド内でコマンドを実行しようとしますが、次のときにエラーが発生します。コマンド出力をストリーミングしようとしています。
解決策:
問題は、HTTP/1.1 接続を対象としたremotecommand.NewExecutor()の使用法にあります。通常、Kubernetes クラスターで使用される SPDY 接続の場合は、代わりに、remotecommand.NewSPDYExecutor().
変更コード:
import ( "fmt" "io" "os" container "k8s.io/api/core/v1" meta "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" restclient "k8s.io/client-go/rest" cmd "k8s.io/client-go/tools/remotecommand" ) func main() { // Replace with your own config or use in-cluster config config := &restclient.Config{ Host: "https://192.168.8.175:8080", // Insecure if using a self-signed certificate Insecure: true, } // Create a Kubernetes client client, err := kubernetes.NewForConfig(config) if err != nil { fmt.Println(err) return } // Define the pod and container to execute the command in podName := "wordpress-mysql-213049546-29s7d" namespace := "default" containerName := "mysql" // Define the command to execute command := []string{"ls"} // Create the PodExecOptions object execOptions := container.PodExecOptions{ Container: containerName, Command: []string{"ls"}, Stdin: true, Stdout: true, Stderr: true, } // Create the request req := client.CoreV1().RESTClient().Post().Resource("pods").Namespace(namespace).Name(podName).SubResource("exec") // Pass the PodExecOptions object as VersionedParams request := req.VersionedParams(&execOptions, meta.ParameterCodec) // Execute the command exec, err := cmd.NewSPDYExecutor(config, "POST", request.URL()) if err != nil { fmt.Println(err) return } // Stream the output of the command to stdout and stderr err = exec.Stream(cmd.StreamOptions{ Stdin: os.Stdin, Stdout: os.Stdout, Stderr: os.Stderr, }) if err != nil { fmt.Println(err) return } }
以上がGo クライアントを使用して Kubernetes ポッドでコマンドを正しく実行し、SPDY 接続を処理する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。