Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WaitForAllControlPlaneComponents (0.41 sec)

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

    	}
    
    	// TODO: remove this check once WaitForAllControlPlaneComponents goes GA
    	// https://github.com/kubernetes/kubeadm/issues/2907
    	if !features.Enabled(initCfg.ClusterConfiguration.FeatureGates, features.WaitForAllControlPlaneComponents) {
    		klog.V(5).Infof("[wait-control-plane] Skipping phase as the feature gate WaitForAllControlPlaneComponents is disabled")
    		return nil
    	}
    
    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/features/features.go

    	RootlessControlPlane = "RootlessControlPlane"
    	// EtcdLearnerMode is expected to be in alpha in v1.27, beta in v1.29
    	EtcdLearnerMode = "EtcdLearnerMode"
    	// WaitForAllControlPlaneComponents is expected to be alpha in v1.30
    	WaitForAllControlPlaneComponents = "WaitForAllControlPlaneComponents"
    )
    
    // InitFeatureGates are the default feature gates for the init command
    var InitFeatureGates = FeatureList{
    	PublicKeysECDSA: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    		Short: "Wait for the control plane to start",
    		// 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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForControlPlaneComponents(cfg *kubeadmapi.ClusterConfiguration) error
    	// WaitForAPI waits for the API Server's /healthz endpoint to become "ok"
    	// TODO: remove WaitForAPI once WaitForAllControlPlaneComponents goes GA:
    	// https://github.com/kubernetes/kubeadm/issues/2907
    	WaitForAPI() error
    	// WaitForPodsWithLabel waits for Pods in the kube-system namespace to become Ready
    	WaitForPodsWithLabel(kvLabel string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#123341](https://github.com/kubernetes/kubernetes/pull/123341), [@neolit123](https://github.com/neolit123))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top