Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewControlPlanePhase (0.56 sec)

  1. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    		},
    	}
    )
    
    func getPhaseDescription(component string) string {
    	return fmt.Sprintf("Generates the %s static Pod manifest", component)
    }
    
    // NewControlPlanePhase creates a kubeadm workflow phase that implements bootstrapping the control plane.
    func NewControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "control-plane",
    		Short: "Generate all static Pod manifest files necessary to establish the control plane",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init.go

    	initRunner.AppendPhase(phases.NewCertsPhase())
    	initRunner.AppendPhase(phases.NewKubeConfigPhase())
    	initRunner.AppendPhase(phases.NewEtcdPhase())
    	initRunner.AppendPhase(phases.NewControlPlanePhase())
    	initRunner.AppendPhase(phases.NewKubeletStartPhase())
    	initRunner.AppendPhase(phases.NewWaitControlPlanePhase())
    	initRunner.AppendPhase(phases.NewUploadConfigPhase())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top