generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 962
/
exec.go
213 lines (183 loc) · 5.9 KB
/
exec.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Copyright 2023 The Fluid Authors.
Licensed 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 kubeclient
import (
"bytes"
"context"
"fmt"
"io"
"net/url"
"os"
"path"
"strings"
"sync"
"time"
"github.com/fluid-cloudnative/fluid/pkg/common"
"github.com/fluid-cloudnative/fluid/pkg/utils"
"github.com/fluid-cloudnative/fluid/pkg/utils/cmdguard"
securityutils "github.com/fluid-cloudnative/fluid/pkg/utils/security"
v1 "k8s.io/api/core/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/scheme"
restclient "k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/tools/remotecommand"
"github.com/go-logr/logr"
ctrl "sigs.k8s.io/controller-runtime"
)
// https://github.com/kubernetes/kubernetes/blob/v1.6.1/test/e2e/framework/exec_util.go
// Global variables
var (
clientset *kubernetes.Clientset
restConfig *restclient.Config
log logr.Logger = ctrl.Log.WithName("kubeclient")
kubeconfigPath = "~/.kube/config"
mutex = &sync.Mutex{}
)
// ExecOptions passed to ExecWithOptions
type ExecOptions struct {
Command []string
Namespace string
PodName string
ContainerName string
Stdin io.Reader
CaptureStdout bool
CaptureStderr bool
// If false, whitespace in std{err,out} will be removed.
PreserveWhitespace bool
}
func (opt ExecOptions) String() string {
return fmt.Sprintf(
"{Command: %v, Namespace: %v, PodName: %v, ContainerName: %v, CaptureStdout: %v, CaptureStderr: %v, PreserveWhitespace: %v}",
securityutils.FilterCommand(opt.Command),
opt.Namespace,
opt.PodName,
opt.ContainerName,
opt.CaptureStdout,
opt.CaptureStderr,
opt.PreserveWhitespace,
)
}
func initClient() error {
mutex.Lock()
defer mutex.Unlock()
var err error
if restConfig == nil {
home, err := utils.Home()
if err != nil {
return err
}
kubeconfigPath = path.Join(home, ".kube/config")
if len(os.Getenv(common.RecommendedKubeConfigPathEnv)) > 0 {
kubeconfigPath = os.Getenv(common.RecommendedKubeConfigPathEnv)
}
if !utils.PathExists(kubeconfigPath) {
kubeconfigPath = ""
}
log.Info("kubeconfig file is placed.", "config", kubeconfigPath)
restConfig, err = clientcmd.BuildConfigFromFlags("", kubeconfigPath)
if err != nil {
return err
}
}
if clientset == nil {
clientset, err = kubernetes.NewForConfig(restConfig)
if err != nil {
return err
}
}
return nil
}
// ExecWithOptions executes a command in the specified container,
// returning stdout, stderr and error. `options` allowed for
// additional parameters to be passed.
func ExecWithOptions(ctx context.Context, options ExecOptions) (string, string, error) {
err := cmdguard.ValidateCommandSlice(options.Command)
if err != nil {
return "", "", err
}
err = initClient()
if err != nil {
return "", "", err
}
log.V(1).Info("ExecWithOptions", "ExecWithOptions", options)
const tty = false
req := clientset.CoreV1().RESTClient().Post().
Resource("pods").
Name(options.PodName).
Namespace(options.Namespace).
SubResource("exec").
Param("container", options.ContainerName)
req.VersionedParams(&v1.PodExecOptions{
Container: options.ContainerName,
Command: options.Command,
Stdin: options.Stdin != nil,
Stdout: options.CaptureStdout,
Stderr: options.CaptureStderr,
TTY: tty,
}, scheme.ParameterCodec)
var stdout, stderr bytes.Buffer
err = doExecute(ctx, "POST", req.URL(), restConfig, options.Stdin, &stdout, &stderr, tty)
if options.PreserveWhitespace {
return stdout.String(), stderr.String(), err
}
return strings.TrimSpace(stdout.String()), strings.TrimSpace(stderr.String()), err
}
// ExecCommandInContainerWithFullOutput executes a command in the
// specified container and return stdout, stderr and error
func ExecCommandInContainerWithFullOutput(ctx context.Context, podName string, containerName string, namespace string, cmd []string) (stdout string, stderr string, err error) {
return ExecWithOptions(ctx, ExecOptions{
Command: cmd,
Namespace: namespace,
PodName: podName,
ContainerName: containerName,
Stdin: nil,
CaptureStdout: true,
CaptureStderr: true,
PreserveWhitespace: false,
})
}
// Exec commands in container without any timeout.
func ExecCommandInContainer(podName string, containerName string, namespace string, cmd []string) (stdout string, stderr string, err error) {
return ExecCommandInContainerWithFullOutput(context.Background(), podName, containerName, namespace, cmd)
}
// Exec commands in container with a given timeout.
func ExecCommandInContainerWithTimeout(podName string, containerName string, namespace string, cmd []string, timeout time.Duration) (stdout string, stderr string, err error) {
ctx, cancel := context.WithTimeout(context.TODO(), timeout)
ch := make(chan string, 1)
defer cancel()
go func() {
stdout, stderr, err = ExecCommandInContainerWithFullOutput(ctx, podName, containerName, namespace, cmd)
ch <- "done"
}()
select {
case <-ch:
// Succeeded in time
case <-ctx.Done():
err = fmt.Errorf("timed out for %v", timeout)
}
return
}
func doExecute(ctx context.Context, method string, url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool) error {
exec, err := remotecommand.NewSPDYExecutor(config, method, url)
if err != nil {
return err
}
return exec.StreamWithContext(ctx,
remotecommand.StreamOptions{
Stdin: stdin,
Stdout: stdout,
Stderr: stderr,
Tty: tty,
})
}