37 Star 396 Fork 72

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
formatter.go 2.66 KB
一键复制 编辑 原始数据 按行查看 历史
MaiWJ 提交于 2018-07-02 15:02 . Extend rancher to manage Windows Host
package clusterregistrationtokens
import (
"fmt"
"net/url"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/image"
"github.com/rancher/rancher/pkg/settings"
"github.com/rancher/rancher/pkg/systemtemplate"
)
const (
commandFormat = "kubectl apply -f %s"
insecureCommandFormat = "curl --insecure -sfL %s | kubectl apply -f -"
nodeCommandFormat = "sudo docker run -d --privileged --restart=unless-stopped --net=host -v /etc/kubernetes:/etc/kubernetes -v /var/run:/var/run %s --server %s --token %s%s"
windowsNodeCommandFormat = `PowerShell -Sta -NoLogo -NonInteractive -Command "& {docker run --rm -v C:/:C:/host --isolation hyperv %s -server %s -token %s%s; if($?){& c:/etc/rancher/run.ps1;}}"`
)
func Formatter(request *types.APIContext, resource *types.RawResource) {
var (
caNonWindows = ""
caWindows = ""
)
ca := systemtemplate.CAChecksum()
if ca != "" {
caNonWindows = " --ca-checksum " + ca
caWindows = " -caChecksum " + ca
}
token, _ := resource.Values["token"].(string)
if token != "" {
url := getURL(request, token)
resource.Values["insecureCommand"] = fmt.Sprintf(insecureCommandFormat, url)
resource.Values["command"] = fmt.Sprintf(commandFormat, url)
resource.Values["nodeCommand"] = fmt.Sprintf(nodeCommandFormat,
image.Resolve(settings.AgentImage.Get()),
getRootURL(request),
token,
caNonWindows)
resource.Values["token"] = token
resource.Values["manifestUrl"] = url
resource.Values["windowsNodeCommand"] = fmt.Sprintf(windowsNodeCommandFormat,
image.Resolve(settings.WindowsAgentImage.Get()),
getRootURL(request),
token,
caWindows)
}
}
func NodeCommand(token string) string {
ca := systemtemplate.CAChecksum()
if ca != "" {
ca = " --ca-checksum " + ca
}
return fmt.Sprintf(nodeCommandFormat,
image.Resolve(settings.AgentImage.Get()),
getRootURL(nil),
token,
ca)
}
func getRootURL(request *types.APIContext) string {
serverURL := settings.ServerURL.Get()
if serverURL == "" {
if request != nil {
serverURL = request.URLBuilder.RelativeToRoot("")
}
} else {
u, err := url.Parse(serverURL)
if err != nil {
if request != nil {
serverURL = request.URLBuilder.RelativeToRoot("")
}
} else {
u.Path = ""
serverURL = u.String()
}
}
return serverURL
}
func getURL(request *types.APIContext, token string) string {
path := "/v3/import/" + token + ".yaml"
serverURL := settings.ServerURL.Get()
if serverURL == "" {
serverURL = request.URLBuilder.RelativeToRoot(path)
} else {
u, err := url.Parse(serverURL)
if err != nil {
serverURL = request.URLBuilder.RelativeToRoot(path)
} else {
u.Path = path
serverURL = u.String()
}
}
return serverURL
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.0-rc15

搜索帮助

344bd9b3 5694891 D2dac590 5694891