| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| package k8s |
| |
| import ( |
| "bytes" |
| "context" |
| "fmt" |
| "time" |
| |
| corev1 "k8s.io/api/core/v1" |
| "k8s.io/client-go/kubernetes" |
| "k8s.io/client-go/kubernetes/scheme" |
| "k8s.io/client-go/rest" |
| "k8s.io/client-go/tools/remotecommand" |
| "k8s.io/klog/v2" |
| ) |
| |
| // ExecInPod executes a command in a container of a pod and returns stdout/stderr. |
| // It uses SPDY to stream the exec request to the kubelet. |
| func ExecInPod(ctx context.Context, restConfig *rest.Config, namespace, podName, containerName string, command []string, timeout time.Duration) (string, string, error) { |
| clientset, err := kubernetes.NewForConfig(restConfig) |
| if err != nil { |
| return "", "", fmt.Errorf("failed to create kubernetes clientset: %w", err) |
| } |
| |
| req := clientset.CoreV1().RESTClient().Post(). |
| Resource("pods"). |
| Name(podName). |
| Namespace(namespace). |
| SubResource("exec"). |
| VersionedParams(&corev1.PodExecOptions{ |
| Container: containerName, |
| Command: command, |
| Stdout: true, |
| Stderr: true, |
| }, scheme.ParameterCodec) |
| |
| exec, err := remotecommand.NewSPDYExecutor(restConfig, "POST", req.URL()) |
| if err != nil { |
| return "", "", fmt.Errorf("failed to create SPDY executor: %w", err) |
| } |
| |
| var stdout, stderr bytes.Buffer |
| |
| execCtx, cancel := context.WithTimeout(ctx, timeout) |
| defer cancel() |
| |
| err = exec.StreamWithContext(execCtx, remotecommand.StreamOptions{ |
| Stdout: &stdout, |
| Stderr: &stderr, |
| }) |
| |
| if err != nil { |
| klog.Warningf("ExecInPod namespace=%s pod=%s container=%s command=%v failed: %v, stdout=%s, stderr=%s", |
| namespace, podName, containerName, command, err, stdout.String(), stderr.String()) |
| return stdout.String(), stderr.String(), err |
| } |
| |
| return stdout.String(), stderr.String(), nil |
| } |