forked from carvel-dev/kapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubectl.go
74 lines (58 loc) · 1.4 KB
/
kubectl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright 2020 VMware, Inc.
// SPDX-License-Identifier: Apache-2.0
package e2e
import (
"bytes"
"fmt"
"os"
"os/exec"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
type Kubectl struct {
t *testing.T
namespace string
l Logger
}
func (k Kubectl) Run(args []string) string {
out, _ := k.RunWithOpts(args, RunOpts{})
return out
}
func (k Kubectl) RunWithOpts(args []string, opts RunOpts) (string, error) {
if !opts.NoNamespace {
args = append(args, []string{"-n", k.namespace}...)
}
k.l.Debugf("Running '%s'...\n", k.cmdDesc(args, opts))
var stderr bytes.Buffer
var stdout bytes.Buffer
cmd := exec.Command("kubectl", args...)
cmd.Stderr = &stderr
if opts.CancelCh != nil {
go func() {
select {
case <-opts.CancelCh:
cmd.Process.Signal(os.Interrupt)
}
}()
}
if opts.StdoutWriter != nil {
cmd.Stdout = opts.StdoutWriter
} else {
cmd.Stdout = &stdout
}
cmd.Stdin = opts.StdinReader
err := cmd.Run()
if err != nil {
err = fmt.Errorf("Execution error: stderr: '%s' error: '%s'", stderr.String(), err)
require.Truef(k.t, opts.AllowError, "Failed to successfully execute '%s': %v", k.cmdDesc(args, opts), err)
}
return stdout.String(), err
}
func (k Kubectl) cmdDesc(args []string, opts RunOpts) string {
prefix := "kubectl"
if opts.Redact {
return prefix + " -redacted-"
}
return fmt.Sprintf("%s %s", prefix, strings.Join(args, " "))
}