Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,182 for replicas2 (0.17 sec)

  1. pkg/controller/deployment/sync_test.go

    				rs := action.(testclient.UpdateAction).GetObject().(*apps.ReplicaSet)
    				if !test.wasntUpdated[rs.Name] {
    					nameToSize[rs.Name] = *(rs.Spec.Replicas)
    				}
    			}
    
    			if test.expectedNew != nil && test.newRS != nil && *(test.expectedNew.Spec.Replicas) != nameToSize[test.newRS.Name] {
    				t.Errorf("%s: expected new replicas: %d, got: %d", test.name, *(test.expectedNew.Spec.Replicas), nameToSize[test.newRS.Name])
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/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: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/replicaset.yaml.injected

    apiVersion: apps/v1
    kind: ReplicaSet
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta1/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
    - 24K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // 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.
    message ReplicaSet {
      // If the Labels of a ReplicaSet are empty, they are defaulted to
      // be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // 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.
    message ReplicaSet {
      // If the Labels of a ReplicaSet are empty, they are defaulted to
      // be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"":      "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_utils.go

    	newStatus.ObservedGeneration = rs.Generation
    
    	var getErr, updateErr error
    	var updatedRS *apps.ReplicaSet
    	for i, rs := 0, rs; ; i++ {
    		logger.V(4).Info(fmt.Sprintf("Updating status for %v: %s/%s, ", rs.Kind, rs.Namespace, rs.Name) +
    			fmt.Sprintf("replicas %d->%d (need %d), ", rs.Status.Replicas, newStatus.Replicas, *(rs.Spec.Replicas)) +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1/conversion_test.go

    	}{
    		"StatefulSetSpec Conversion 1": {
    			stsSpec1: &apps.StatefulSetSpec{
    				Replicas: *replicas,
    				Template: apiTemplate,
    			},
    			stsSepc2: &appsv1.StatefulSetSpec{
    				Replicas: replicas,
    				Template: appsv1Template,
    			},
    		},
    		"StatefulSetSpec Conversion 2": {
    			stsSpec1: &apps.StatefulSetSpec{
    				Replicas:            *replicas,
    				Selector:            selector,
    				Template:            apiTemplate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta2/conversion_test.go

    	}{
    		"StatefulSetSpec Conversion 1": {
    			stsSpec1: &apps.StatefulSetSpec{
    				Replicas: *replicas,
    				Template: apiTemplate,
    			},
    			stsSepc2: &v1beta2.StatefulSetSpec{
    				Replicas: replicas,
    				Template: v1beta2Template,
    			},
    		},
    		"StatefulSetSpec Conversion 2": {
    			stsSpec1: &apps.StatefulSetSpec{
    				Replicas:            *replicas,
    				Selector:            selector,
    				Template:            apiTemplate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top