37 Star 404 Fork 74

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
kubectl.go 3.24 KB
一键复制 编辑 原始数据 按行查看 历史
package kubectl
import (
"context"
"io/ioutil"
"os"
"os/exec"
"strings"
"fmt"
"k8s.io/client-go/tools/clientcmd"
clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
)
const (
tmpDir = "./management-state/tmp"
)
func Apply(yaml []byte, kubeConfig *clientcmdapi.Config) ([]byte, error) {
kubeConfigFile, yamlFile, err := writeData(kubeConfig, yaml)
defer cleanup(kubeConfigFile, yamlFile)
if err != nil {
return nil, err
}
cmd := exec.Command("kubectl",
"--kubeconfig",
kubeConfigFile.Name(),
"apply",
"-f",
yamlFile.Name())
return runWithHTTP2(cmd)
}
func ApplyWithNamespace(yaml []byte, namespace string, kubeConfig *clientcmdapi.Config) ([]byte, error) {
kubeConfigFile, yamlFile, err := writeData(kubeConfig, yaml)
defer cleanup(kubeConfigFile, yamlFile)
if err != nil {
return nil, err
}
cmd := exec.Command("kubectl",
"--kubeconfig",
kubeConfigFile.Name(),
"-n",
namespace,
"apply",
"-f",
yamlFile.Name())
return runWithHTTP2(cmd)
}
func Delete(yaml []byte, kubeConfig *clientcmdapi.Config) ([]byte, error) {
kubeConfigFile, yamlFile, err := writeData(kubeConfig, yaml)
defer cleanup(kubeConfigFile, yamlFile)
if err != nil {
return nil, err
}
cmd := exec.Command("kubectl",
"--kubeconfig",
kubeConfigFile.Name(),
"delete",
"-f",
yamlFile.Name())
return runWithHTTP2(cmd)
}
func Drain(ctx context.Context, kubeConfig *clientcmdapi.Config, nodeName string, args []string) ([]byte, string, error) {
kubeConfigFile, err := writeKubeConfig(kubeConfig)
defer cleanup(kubeConfigFile)
if err != nil {
return nil, "", err
}
cmd := exec.CommandContext(ctx, "kubectl",
"--kubeconfig",
kubeConfigFile.Name(),
"drain",
nodeName)
cmd.Args = append(cmd.Args, args...)
output, err := runWithHTTP2(cmd)
return output, fmt.Sprint(cmd.Stderr), err
}
func cleanup(files ...*os.File) {
for _, file := range files {
if file == nil {
continue
}
os.Remove(file.Name())
}
}
func writeData(kubeConfig *clientcmdapi.Config, yaml []byte) (*os.File, *os.File, error) {
kubeConfigFile, err := writeKubeConfig(kubeConfig)
if err != nil {
return kubeConfigFile, nil, err
}
yamlFile, err := writeYAMLFile(yaml)
return kubeConfigFile, yamlFile, err
}
func writeYAMLFile(yaml []byte) (*os.File, error) {
yamlFile, err := tempFile("yaml-")
if err != nil {
return nil, err
}
if err := ioutil.WriteFile(yamlFile.Name(), yaml, 0600); err != nil {
return nil, err
}
return yamlFile, nil
}
func writeKubeConfig(kubeConfig *clientcmdapi.Config) (*os.File, error) {
kubeConfigFile, err := tempFile("kubeconfig-")
if err != nil {
return nil, err
}
if err := clientcmd.WriteToFile(*kubeConfig, kubeConfigFile.Name()); err != nil {
return nil, err
}
return kubeConfigFile, nil
}
func tempFile(prefix string) (*os.File, error) {
if _, err := os.Stat(tmpDir); os.IsNotExist(err) {
if err = os.MkdirAll(tmpDir, 0755); err != nil {
return nil, err
}
}
f, err := ioutil.TempFile(tmpDir, prefix)
if err != nil {
return nil, err
}
return f, f.Close()
}
func runWithHTTP2(cmd *exec.Cmd) ([]byte, error) {
var newEnv []string
for _, env := range os.Environ() {
if strings.HasPrefix(env, "DISABLE_HTTP2") {
continue
}
newEnv = append(newEnv, env)
}
cmd.Env = newEnv
return cmd.CombinedOutput()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.2-patch1-rc2

搜索帮助