mirror of
https://github.com/truecharts/charts.git
synced 2026-07-21 01:54:22 -03:00
13 lines
332 B
Go
13 lines
332 B
Go
package gencmd
|
|
|
|
import (
|
|
"github.com/truecharts/public/clustertool/embed"
|
|
"github.com/truecharts/public/clustertool/pkg/helper"
|
|
)
|
|
|
|
func GenKubeConfig(node string) string {
|
|
talosPath := embed.GetTalosExec()
|
|
strout := talosPath + " kubeconfig --talosconfig " + helper.TalosConfigFile + " -n " + node + " --force"
|
|
return strout
|
|
}
|