Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for notReady (0.59 sec)

  1. pkg/printers/internalversion/printers_test.go

    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo4", "NotReady", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo5"},
    				Spec:       api.NodeSpec{Unschedulable: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.9.md

    ### **Scheduling**
    
    *   Taint key `unreachable` is now in GA.
    *   Taint key `notReady` is changed to `not-ready`, and is also now in GA.
    *   These changes are automatically updated for taints. Tolerations for these taints must be updated manually. Specifically, you must:
        *   Change `node.alpha.kubernetes.io/notReady` to `node.kubernetes.io/not-ready`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    	}
    	p.Status.PodIP = p.Status.PodIPs[0].IP
    
    	return p
    }
    
    func addPods(store cache.Store, namespace string, nPods int, nPorts int, nNotReady int, ipFamilies []v1.IPFamily) {
    	for i := 0; i < nPods+nNotReady; i++ {
    		isReady := i < nPods
    		pod := testPod(namespace, i, nPorts, isReady, ipFamilies)
    		store.Add(pod)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    * fixed foreground deletion of podtemplates ([#60683](https://github.com/kubernetes/kubernetes/pull/60683), [@nilebox](https://github.com/nilebox))
    * Timeout docker queries to prevent node going NotReady indefinitely. ([#56967](https://github.com/kubernetes/kubernetes/pull/56967), [@jsravn](https://github.com/jsravn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

    * Fixes a bug where if an error was returned that was not an `autorest.DetailedError` we would return `"not found", nil` which caused nodes to go to `NotReady` state. ([#57484](https://github.com/kubernetes/kubernetes/pull/57484), [@brendandburns](https://github.com/brendandburns))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    		}
    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	}
    }
    
    // DaemonSets should place onto NotReady nodes
    func TestNotReadyNodeDaemonDoesLaunchPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    		_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.6.md

    * Fix [transition between NotReady and Unreachable taints](https://github.com/kubernetes/kubernetes/issues/43444). ([#44042](https://github.com/kubernetes/kubernetes/pull/44042), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		if reason == "Completed" && hasRunning {
    			if hasPodReadyCondition(pod.Status.Conditions) {
    				reason = "Running"
    			} else {
    				reason = "NotReady"
    			}
    		}
    	}
    
    	if pod.DeletionTimestamp != nil && pod.Status.Reason == node.NodeUnreachablePodReason {
    		reason = "Unknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/AbstractIterator.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractIterator<T extends @Nullable Object> implements Iterator<T> {
      private State state = State.NOT_READY;
    
      protected AbstractIterator() {}
    
      private enum State {
        READY,
        NOT_READY,
        DONE,
        FAILED,
      }
    
      @CheckForNull private T next;
    
      @CheckForNull
      protected abstract T computeNext();
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/AbstractIterator.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractIterator<T extends @Nullable Object> implements Iterator<T> {
      private State state = State.NOT_READY;
    
      protected AbstractIterator() {}
    
      private enum State {
        READY,
        NOT_READY,
        DONE,
        FAILED,
      }
    
      @CheckForNull private T next;
    
      @CheckForNull
      protected abstract T computeNext();
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top