Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runWaitControlPlanePhase (0.37 sec)

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

    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Short: "EXPERIMENTAL: Wait for the control plane to start",
    		Run:   runWaitControlPlanePhase,
    	}
    	return phase
    }
    
    func runWaitControlPlanePhase(c workflow.RunData) error {
    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("wait-control-plane phase invoked with an invalid data struct")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Hidden: true,
    		Run:    runWaitControlPlanePhase,
    	}
    	return phase
    }
    
    func runWaitControlPlanePhase(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("wait-control-plane phase invoked with an invalid data struct")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top