// RunDeployerPodController starts the deployer pod controller process. func (c *MasterConfig) RunDeployerPodController() { _, kclient := c.DeployerPodControllerClients() factory := deployerpodcontroller.DeployerPodControllerFactory{ KubeClient: kclient, } controller := factory.Create() controller.Run() }
// RunDeployerPodController starts the deployer pod controller process. func (c *MasterConfig) RunDeployerPodController() { kclient := c.DeployerPodControllerClient() factory := deployerpodcontroller.DeployerPodControllerFactory{ KubeClient: kclient, Codec: c.EtcdHelper.Codec(), } controller := factory.Create() controller.Run() }