Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fullyLabeledReplicas (0.34 sec)

  1. pkg/controller/replicaset/replica_set_utils_test.go

    				Replicas:             1,
    				FullyLabeledReplicas: 1,
    				ReadyReplicas:        1,
    				AvailableReplicas:    1,
    			},
    		},
    		{
    			"1 not fully labelled pod",
    			notFullyLabelledRS,
    			[]*v1.Pod{
    				newPod("pod1", notFullyLabelledRS, v1.PodRunning, nil, true),
    			},
    			apps.ReplicaSetStatus{
    				Replicas:             1,
    				FullyLabeledReplicas: 0,
    				ReadyReplicas:        1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 19 20:18:23 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/replicasetstatus.go

    // with apply.
    type ReplicaSetStatusApplyConfiguration struct {
    	Replicas             *int32                                  `json:"replicas,omitempty"`
    	FullyLabeledReplicas *int32                                  `json:"fullyLabeledReplicas,omitempty"`
    	ReadyReplicas        *int32                                  `json:"readyReplicas,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_utils.go

    			fmt.Sprintf("replicas %d->%d (need %d), ", rs.Status.Replicas, newStatus.Replicas, *(rs.Spec.Replicas)) +
    			fmt.Sprintf("fullyLabeledReplicas %d->%d, ", rs.Status.FullyLabeledReplicas, newStatus.FullyLabeledReplicas) +
    			fmt.Sprintf("readyReplicas %d->%d, ", rs.Status.ReadyReplicas, newStatus.ReadyReplicas) +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/replicasetstatus.go

    // with apply.
    type ReplicaSetStatusApplyConfiguration struct {
    	Replicas             *int32                                  `json:"replicas,omitempty"`
    	FullyLabeledReplicas *int32                                  `json:"fullyLabeledReplicas,omitempty"`
    	ReadyReplicas        *int32                                  `json:"readyReplicas,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/replicationcontrollerstatus.go

    // with apply.
    type ReplicationControllerStatusApplyConfiguration struct {
    	Replicas             *int32                                             `json:"replicas,omitempty"`
    	FullyLabeledReplicas *int32                                             `json:"fullyLabeledReplicas,omitempty"`
    	ReadyReplicas        *int32                                             `json:"readyReplicas,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.7K bytes
    - Viewed (0)
Back to top