Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WaitForPodToDisappear (0.34 sec)

  1. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForAPI() error
    	// WaitForPodsWithLabel waits for Pods in the kube-system namespace to become Ready
    	WaitForPodsWithLabel(kvLabel string) error
    	// WaitForPodToDisappear waits for the given Pod in the kube-system namespace to be deleted
    	WaitForPodToDisappear(staticPodName string) error
    	// WaitForStaticPodSingleHash fetches sha256 hash for the control plane static pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/dryrun/dryrun.go

    	fmt.Printf("[dryrun] Would wait for the Pods with the label %q in the %s namespace to become Running\n", kvLabel, metav1.NamespaceSystem)
    	return nil
    }
    
    // WaitForPodToDisappear just returns a dummy nil, to indicate that the program should just proceed
    func (w *Waiter) WaitForPodToDisappear(podName string) error {
    	fmt.Printf("[dryrun] Would wait for the %q Pod in the %s namespace to be deleted\n", podName, metav1.NamespaceSystem)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    func (w *fakeWaiter) WaitForPodsWithLabel(kvLabel string) error {
    	return w.errsToReturn[waitForPodsWithLabel]
    }
    
    // WaitForPodToDisappear just returns a dummy nil, to indicate that the program should just proceed
    func (w *fakeWaiter) WaitForPodToDisappear(podName string) error {
    	return nil
    }
    
    // SetTimeout is a no-op; we don't use it in this implementation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top