首页 > 后端开发 > Golang > 如何使用Go客户端在Kubernetes Pod中正确执行命令并处理SPDY连接?

如何使用Go客户端在Kubernetes Pod中正确执行命令并处理SPDY连接?

Linda Hamilton
发布: 2024-12-14 06:22:10
原创
1000 人浏览过

How to Correctly Execute a Command in a Kubernetes Pod Using the Go Client and Handle SPDY Connections?

使用 Go 客户端在 Kubernetes Pod 中执行命令

问题:

提供的代码snippet 尝试使用 Kubernetes Go 客户端在 pod 内执行命令,但在尝试流式传输时遇到错误命令输出。

解决方案:

问题在于使用了remotecommand.NewExecutor(),该函数适用于HTTP/1.1 连接。对于 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 Pod中正确执行命令并处理SPDY连接?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板