Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for NumberReady (0.31 sec)

  1. pkg/apis/apps/types.go

    	// pod (including nodes correctly running the daemon pod).
    	DesiredNumberScheduled int32
    
    	// The number of nodes that should be running the daemon pod and have one
    	// or more of the daemon pod running and ready.
    	NumberReady int32
    
    	// The most recent generation observed by the daemon set controller.
    	// +optional
    	ObservedGeneration int64
    
    	// The total number of nodes that are running updated daemon pod
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // Total number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running with a Ready Condition by passing the readinessProbe.
      optional int32 numberReady = 4;
    
      // The most recent generation observed by the daemon set controller.
      // +optional
      optional int64 observedGeneration = 5;
    
      // The total number of nodes that are running updated daemon pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // Total number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running with a Ready Condition by passing the readinessProbe.
      optional int32 numberReady = 4;
    
      // The most recent generation observed by the daemon set controller.
      // +optional
      optional int64 observedGeneration = 5;
    
      // The total number of nodes that are running updated daemon pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    		err = manager.dsStore.Add(ds)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    		if updated.Status.NumberReady != 0 {
    			t.Errorf("Wrong daemon %s status: %v", updated.Name, updated.Status)
    		}
    
    		selector, _ := metav1.LabelSelectorAsSelector(ds.Spec.Selector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"desiredNumberScheduled": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
    	"numberReady":            "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
    	"observedGeneration":     "The most recent generation observed by the daemon set controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      optional int32 desiredNumberScheduled = 3;
    
      // The number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running and ready.
      optional int32 numberReady = 4;
    
      // The most recent generation observed by the daemon set controller.
      // +optional
      optional int64 observedGeneration = 5;
    
      // The total number of nodes that are running updated daemon pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      optional int32 desiredNumberScheduled = 3;
    
      // The number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running and ready.
      optional int32 numberReady = 4;
    
      // The most recent generation observed by the daemon set controller.
      // +optional
      optional int64 observedGeneration = 5;
    
      // The total number of nodes that are running updated daemon pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    		},
    		Status: apps.DaemonSetStatus{
    			CurrentNumberScheduled: 2,
    			DesiredNumberScheduled: 3,
    			NumberReady:            1,
    			UpdatedNumberScheduled: 2,
    			NumberAvailable:        0,
    		},
    	}
    
    	tests := []struct {
    		daemonSet apps.DaemonSet
    		options   printers.GenerateOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "numberReady": {
                "default": 0,
                "description": "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"numberReady": {
    						SchemaProps: spec.SchemaProps{
    							Description: "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.",
    							Default:     0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top