我们已经成功通过kubebuilder 2.0构建了一个运算符。 在此运算符中,我们需要在Pod中运行一个cmd 在我们使用k8s.io/client-go/kubernetes.Clientset之前,它会获取restconfig并像这样运行
execReq := o.clientset.CoreV1().RESTClient().Post().
Resource("pods").
Name(Podname).
Namespace("default").
SubResource("exec")
execReq.VersionedParams(&corev1.PodExecOptions{
Command: SqlCommand,
Stdin: true,
Stdout: true,
Stderr: true,
}, scheme.ParameterCodec)
exec, err := remotecommand.NewSPDYExecutor(o.restConfig, "POST", execReq.URL())
if err != nil {
return fmt.Errorf("error while creating Executor: %v", err)
}
err = exec.Stream(remotecommand.StreamOptions{
Stdin: os.Stdin,
Stdout: os.Stdout,
Stderr: os.Stderr,
Tty: false,
})
if err != nil {
return fmt.Errorf("error in Stream: %v", err)
} else {
return nil
}
在控制器运行时世界中,我无法从client of controller-runtime中找到任何RESTClient。
我想知道如何从操作员那里在pod中执行cmd吗?
谢谢(编辑)