Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewControlPlanePreparePhase (0.35 sec)

  1. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	# Prepares the machine for serving a control plane
    	kubeadm join phase control-plane-prepare all
    `)
    
    // NewControlPlanePreparePhase creates a kubeadm workflow phase that implements the preparation of the node to serve a control plane
    func NewControlPlanePreparePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-prepare",
    		Short:   "Prepare the machine for serving a control plane",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join.go

    	}
    
    	addJoinConfigFlags(cmd.Flags(), joinOptions.externalcfg)
    	addJoinOtherFlags(cmd.Flags(), joinOptions)
    
    	joinRunner.AppendPhase(phases.NewPreflightPhase())
    	joinRunner.AppendPhase(phases.NewControlPlanePreparePhase())
    	joinRunner.AppendPhase(phases.NewCheckEtcdPhase())
    	joinRunner.AppendPhase(phases.NewKubeletStartPhase())
    	joinRunner.AppendPhase(phases.NewControlPlaneJoinPhase())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top