1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-24 20:48:18 +00:00

k3s options update

This commit is contained in:
Brenda Rearden
2020-01-30 16:30:06 -07:00
committed by Denise
parent 9dd0f76a7e
commit 9243731627

View File

@@ -47,9 +47,10 @@ func k3sServer(ctx context.Context, endpoints []string) (string, error) {
"--no-deploy=traefik",
"--no-deploy=coredns",
"--no-deploy=servicelb",
"--no-deploy=metrics-server",
"--no-deploy=local-storage",
"--disable-agent",
fmt.Sprintf("--storage-endpoint=%s", strings.Join(endpoints, ",")),
"--storage-backend=etcd3")
fmt.Sprintf("--datastore-endpoint=%s", strings.Join(endpoints, ",")))
cmd.SysProcAttr = &syscall.SysProcAttr{
Pdeathsig: syscall.SIGKILL,
}