mirror of
https://github.com/rancher/rke.git
synced 2025-08-31 14:36:32 +00:00
37 lines
916 B
Go
37 lines
916 B
Go
package services
|
|
|
|
import (
|
|
"github.com/rancher/rke/hosts"
|
|
"github.com/rancher/types/apis/cluster.cattle.io/v1"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func RunWorkerPlane(controlHosts []hosts.Host, workerHosts []hosts.Host, workerServices v1.RKEConfigServices) error {
|
|
logrus.Infof("[%s] Building up Worker Plane..", WorkerRole)
|
|
for _, host := range controlHosts {
|
|
// only one master for now
|
|
err := runKubelet(host, workerServices.Kubelet, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = runKubeproxy(host, workerServices.Kubeproxy)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for _, host := range workerHosts {
|
|
// run kubelet
|
|
err := runKubelet(host, workerServices.Kubelet, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// run kubeproxy
|
|
err = runKubeproxy(host, workerServices.Kubeproxy)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
logrus.Infof("[%s] Successfully started Worker Plane..", WorkerRole)
|
|
return nil
|
|
}
|