mirror of
https://github.com/rancher/rke.git
synced 2025-06-26 23:40:06 +00:00
23 lines
781 B
Go
23 lines
781 B
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/rancher/rke/docker"
|
|
"github.com/rancher/rke/hosts"
|
|
"github.com/rancher/types/apis/management.cattle.io/v3"
|
|
)
|
|
|
|
func runKubeAPI(ctx context.Context, host *hosts.Host, df hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, kubeAPIProcess v3.Process) error {
|
|
|
|
imageCfg, hostCfg, healthCheckURL := getProcessConfig(kubeAPIProcess)
|
|
if err := docker.DoRunContainer(ctx, host.DClient, imageCfg, hostCfg, KubeAPIContainerName, host.Address, ControlRole, prsMap); err != nil {
|
|
return err
|
|
}
|
|
return runHealthcheck(ctx, host, KubeAPIContainerName, df, healthCheckURL)
|
|
}
|
|
|
|
func removeKubeAPI(ctx context.Context, host *hosts.Host) error {
|
|
return docker.DoRemoveContainer(ctx, host.DClient, KubeAPIContainerName, host.Address)
|
|
}
|