mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
148 lines
3.7 KiB
Go
148 lines
3.7 KiB
Go
package collect
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
troubleshootv1beta1 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/client-go/kubernetes"
|
|
"k8s.io/client-go/tools/remotecommand"
|
|
)
|
|
|
|
type CopyOutput map[string][]byte
|
|
|
|
func Copy(ctx *Context, copyCollector *troubleshootv1beta1.Copy) ([]byte, error) {
|
|
client, err := kubernetes.NewForConfig(ctx.ClientConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
copyOutput := CopyOutput{}
|
|
|
|
pods, podsErrors := listPodsInSelectors(client, copyCollector.Namespace, copyCollector.Selector)
|
|
if len(podsErrors) > 0 {
|
|
errorBytes, err := marshalNonNil(podsErrors)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
copyOutput[getCopyErrosFileName(copyCollector)] = errorBytes
|
|
}
|
|
|
|
if len(pods) > 0 {
|
|
for _, pod := range pods {
|
|
bundlePath := filepath.Join(copyCollector.Name, pod.Namespace, pod.Name)
|
|
|
|
files, copyErrors := copyFiles(ctx, client, pod, copyCollector)
|
|
if len(copyErrors) > 0 {
|
|
key := filepath.Join(bundlePath, copyCollector.ContainerPath+"-errors.json")
|
|
copyOutput[key], err = marshalNonNil(copyErrors)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
continue
|
|
}
|
|
|
|
for k, v := range files {
|
|
copyOutput[filepath.Join(bundlePath, k)] = v
|
|
}
|
|
}
|
|
|
|
if ctx.Redact {
|
|
copyOutput, err = copyOutput.Redact()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
|
|
b, err := json.MarshalIndent(copyOutput, "", " ")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return b, nil
|
|
}
|
|
|
|
func copyFiles(ctx *Context, client *kubernetes.Clientset, pod corev1.Pod, copyCollector *troubleshootv1beta1.Copy) (map[string][]byte, map[string]string) {
|
|
container := pod.Spec.Containers[0].Name
|
|
if copyCollector.ContainerName != "" {
|
|
container = copyCollector.ContainerName
|
|
}
|
|
|
|
command := []string{"cat", copyCollector.ContainerPath}
|
|
|
|
req := client.CoreV1().RESTClient().Post().Resource("pods").Name(pod.Name).Namespace(pod.Namespace).SubResource("exec")
|
|
scheme := runtime.NewScheme()
|
|
if err := corev1.AddToScheme(scheme); err != nil {
|
|
return nil, map[string]string{
|
|
filepath.Join(copyCollector.ContainerPath, "error"): err.Error(),
|
|
}
|
|
}
|
|
|
|
parameterCodec := runtime.NewParameterCodec(scheme)
|
|
req.VersionedParams(&corev1.PodExecOptions{
|
|
Command: command,
|
|
Container: container,
|
|
Stdin: true,
|
|
Stdout: false,
|
|
Stderr: true,
|
|
TTY: false,
|
|
}, parameterCodec)
|
|
|
|
exec, err := remotecommand.NewSPDYExecutor(ctx.ClientConfig, "POST", req.URL())
|
|
if err != nil {
|
|
return nil, map[string]string{
|
|
filepath.Join(copyCollector.ContainerPath, "error"): err.Error(),
|
|
}
|
|
}
|
|
|
|
output := new(bytes.Buffer)
|
|
var stderr bytes.Buffer
|
|
err = exec.Stream(remotecommand.StreamOptions{
|
|
Stdin: nil,
|
|
Stdout: output,
|
|
Stderr: &stderr,
|
|
Tty: false,
|
|
})
|
|
if err != nil {
|
|
errors := map[string]string{
|
|
filepath.Join(copyCollector.ContainerPath, "error"): err.Error(),
|
|
}
|
|
if s := output.String(); len(s) > 0 {
|
|
errors[filepath.Join(copyCollector.ContainerPath, "stdout")] = s
|
|
}
|
|
if s := stderr.String(); len(s) > 0 {
|
|
errors[filepath.Join(copyCollector.ContainerPath, "stderr")] = s
|
|
}
|
|
return nil, errors
|
|
}
|
|
|
|
return map[string][]byte{
|
|
copyCollector.ContainerPath: output.Bytes(),
|
|
}, nil
|
|
}
|
|
|
|
func (c CopyOutput) Redact() (CopyOutput, error) {
|
|
results, err := redactMap(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return results, nil
|
|
}
|
|
|
|
func getCopyErrosFileName(copyCollector *troubleshootv1beta1.Copy) string {
|
|
if len(copyCollector.Name) > 0 {
|
|
return fmt.Sprintf("%s-errors.json", copyCollector.Name)
|
|
}
|
|
if len(copyCollector.CollectorName) > 0 {
|
|
return fmt.Sprintf("%s-errors.json", copyCollector.CollectorName)
|
|
}
|
|
// TODO: random part
|
|
return "errors.json"
|
|
}
|