Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 600 for Replicas (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.yaml

        kind: CustomType
        spec:
          replicas: 1
        status:
          available: 1
      oldObject:
        apiVersion: example.com/v1
        kind: CustomType
        spec:
          replicas: 1
        status:
          available: 1
      operation: operationValue
      options:
        apiVersion: example.com/v1
        kind: CustomType
        spec:
          replicas: 1
        status:
          available: 1
      requestKind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. operator/pkg/translate/translate_test.go

    			expectSkip: false,
    		},
    		{
    			name:       "hpa enabled for pilot without replicas",
    			component:  name.EgressComponentName,
    			values:     fmt.Sprintf(valuesWithHPAndReplicaCountFormat, false, false, false),
    			expectSkip: false,
    		},
    		{
    			name:       "hpa enabled for pilot with replicas",
    			component:  name.PilotComponentName,
    			values:     fmt.Sprintf(valuesWithHPAndReplicaCountFormat, true, false, false),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/controller/podautoscaler/replica_calculator.go

    		// return the current replicas if the change of metrics length would cause a change in scale direction
    		return currentReplicas, usage, nil
    	}
    
    	// return the result, where the number of replicas considered is
    	// however many replicas factored into our calculation
    	return newReplicas, usage, nil
    }
    
    // GetObjectMetricReplicas calculates the desired replica count based on a target metric usage (as a milli-value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy_test.go

    		},
    		Status: apps.StatefulSetStatus{Replicas: 3},
    	}
    
    	Strategy.PrepareForCreate(ctx, ps)
    	if ps.Status.Replicas != 0 {
    		t.Error("StatefulSet should not allow setting status.replicas on create")
    	}
    	errs := Strategy.Validate(ctx, ps)
    	if len(errs) != 0 {
    		t.Errorf("unexpected error validating %v", errs)
    	}
    	newMinReadySeconds := int32(50)
    	// Just Spec.Replicas is allowed to change
    	validPs := &apps.StatefulSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. releasenotes/notes/46121.yaml

    upgradeNotes:
      - title: don't set spec.replicas unless user supplies a real number
        content: |
          When using the gateway chart, the user had to either pick between
          explicitly setting `spec.replicas`, or using the chart-supplied
          `HorizontalPodAutoscaler`. Now `spec.replicas` is only set if
          `.Values.replicaCount` is supplied by the user and is a valid number.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 13:53:35 UTC 2023
    - 652 bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_test.go

    	}
    	if obj, _, err := om.setsIndexer.Get(set); err != nil {
    		t.Error(err)
    	} else {
    		set = obj.(*apps.StatefulSet)
    	}
    	if set.Status.Replicas != 3 {
    		t.Errorf("set.Status.Replicas = %v; want 3", set.Status.Replicas)
    	}
    	*set.Spec.Replicas = 0
    	if err := scaleDownStatefulSetController(logger, set, ssc, spc, om); err != nil {
    		t.Errorf("Failed to turn down StatefulSet : %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1beta1.AdmissionReview.json

        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
            "available": 1
          }
        },
        "oldObject": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
            "available": 1
          }
        },
        "dryRun": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.json

        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
            "available": 1
          }
        },
        "oldObject": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
            "available": 1
          }
        },
        "dryRun": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top