Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,182 for replicas2 (0.3 sec)

  1. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"replicas":             "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
    	"fullyLabeledReplicas": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/replicaset.go

    	b := &ReplicaSetApplyConfiguration{}
    	err := managedfields.ExtractInto(replicaSet, internal.Parser().Type("io.k8s.api.apps.v1.ReplicaSet"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(replicaSet.Name)
    	b.WithNamespace(replicaSet.Namespace)
    
    	b.WithKind("ReplicaSet")
    	b.WithAPIVersion("apps/v1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/replicaset.go

    	b := &ReplicaSetApplyConfiguration{}
    	err := managedfields.ExtractInto(replicaSet, internal.Parser().Type("io.k8s.api.apps.v1beta2.ReplicaSet"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(replicaSet.Name)
    	b.WithNamespace(replicaSet.Namespace)
    
    	b.WithKind("ReplicaSet")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    var map_ReplicaSet = map[string]string{
    	"":         "DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  5. pkg/registry/apps/replicaset/storage/storage_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	rs := obj.(*apps.ReplicaSet)
    	if rs.Spec.Replicas != 7 {
    		t.Errorf("we expected .spec.replicas to not be updated but it was updated to %v", rs.Spec.Replicas)
    	}
    	if rs.Status.Replicas != defaultReplicas {
    		t.Errorf("we expected .status.replicas to be updated to %d but it was %v", defaultReplicas, rs.Status.Replicas)
    	}
    }
    
    func TestShortNames(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1/generated.proto

      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
      // same Template, but individual replicas also have a consistent identity.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/generated.proto

      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
      // same Template, but individual replicas also have a consistent identity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. pkg/apis/apps/types.go

    }
    
    // ReplicaSetStatus represents the current status of a ReplicaSet.
    type ReplicaSetStatus struct {
    	// Replicas is the number of actual replicas.
    	Replicas int32
    
    	// The number of pods that have labels matching the labels of the pod template of the replicaset.
    	// +optional
    	FullyLabeledReplicas int32
    
    	// The number of ready replicas for this replica set.
    	// +optional
    	ReadyReplicas int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
Back to top