37 Star 403 Fork 75

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
kubeconfig.go 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
package kubeconfig
import (
"bytes"
"encoding/base64"
"regexp"
"github.com/rancher/rancher/pkg/settings"
)
const (
certDelim = "\\\n "
firstLen = 49
)
var (
splitRegexp = regexp.MustCompile(`\S{1,76}`)
)
type data struct {
ClusterName string
Host string
ClusterID string
Cert string
User string
Username string
Password string
}
func ForBasic(host, username, password string) (string, error) {
data := &data{
ClusterName: "cluster",
Host: host,
Cert: caCertString(),
User: username,
Username: username,
Password: password,
}
if data.ClusterName == "" {
data.ClusterName = data.ClusterID
}
buf := &bytes.Buffer{}
err := basicTemplate.Execute(buf, data)
return buf.String(), err
}
func caCertString() string {
buf := &bytes.Buffer{}
certData := settings.CACerts.Get()
if certData == "" {
return ""
}
certData = base64.StdEncoding.EncodeToString([]byte(certData))
if len(certData) > firstLen {
buf.WriteString(certData[:firstLen])
certData = certData[firstLen:]
} else {
return certData
}
for _, part := range splitRegexp.FindAllStringSubmatch(certData, -1) {
buf.WriteString(certDelim)
buf.WriteString(part[0])
}
return buf.String()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.0.0-alpha21

搜索帮助