Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 185 for scaleIO (0.67 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    // in both Up and Down directions (scaleUp and scaleDown fields respectively).
    type HorizontalPodAutoscalerBehavior struct {
    	// scaleUp is scaling policy for scaling Up.
    	// If not set, the default value is the higher of:
    	//   * increase no more than 4 pods per 60 seconds
    	//   * double the number of pods per 60 seconds
    	// No stabilization is used.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v2beta1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      repeated MetricSpec metrics = 4;
    
      // behavior configures the scaling behavior of the target
      // in both Up and Down directions (scaleUp and scaleDown fields respectively).
      // If not set, the default HPAScalingRules for scale up and scale down are used.
      // +optional
      optional HorizontalPodAutoscalerBehavior behavior = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      repeated MetricSpec metrics = 4;
    
      // behavior configures the scaling behavior of the target
      // in both Up and Down directions (scaleUp and scaleDown fields respectively).
      // If not set, the default HPAScalingRules for scale up and scale down are used.
      // +optional
      optional HorizontalPodAutoscalerBehavior behavior = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"scaleUp":   "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n  * increase no more than 4 pods per 60 seconds\n  * double the number of pods per 60 seconds\nNo stabilization is used.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +listType=atomic
      repeated MetricSpec metrics = 4;
    
      // behavior configures the scaling behavior of the target
      // in both Up and Down directions (scaleUp and scaleDown fields respectively).
      // If not set, the default HPAScalingRules for scale up and scale down are used.
      // +optional
      optional HorizontalPodAutoscalerBehavior behavior = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types.go

    // in both Up and Down directions (scaleUp and scaleDown fields respectively).
    type HorizontalPodAutoscalerBehavior struct {
    	// scaleUp is scaling policy for scaling Up.
    	// If not set, the default value is the higher of:
    	//   * increase no more than 4 pods per 60 seconds
    	//   * double the number of pods per 60 seconds
    	// No stabilization is used.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    	mapper.RegisterKindFor(gvr("apps", "v1", "deployments"), "scale", gvk("autoscaling", "v1", "Scale"))
    	mapper.RegisterKindFor(gvr("apps", "v1beta1", "deployments"), "scale", gvk("apps", "v1beta1", "Scale"))
    	mapper.RegisterKindFor(gvr("apps", "v1alpha1", "deployments"), "scale", gvk("apps", "v1alpha1", "Scale"))
    
    	// register invalid kinds to trigger an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/storage/storage.go

    		return nil, errors.NewBadRequest("nil update passed to Scale")
    	}
    	scale, ok := newScaleObj.(*autoscaling.Scale)
    	if !ok {
    		return nil, errors.NewBadRequest(fmt.Sprintf("expected input object type to be Scale, but %T", newScaleObj))
    	}
    
    	// validate
    	if errs := autoscalingvalidation.ValidateScale(scale); len(errs) > 0 {
    		return nil, errors.NewInvalid(autoscaling.Kind("Scale"), statefulset.Name, errs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    				},
    				{
    					Manager:     "scale",
    					Operation:   metav1.ManagedFieldsOperationUpdate,
    					APIVersion:  "apps/v1",
    					FieldsType:  "FieldsV1",
    					FieldsV1:    &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:the-replicas":{}}}`)},
    					Subresource: "scale",
    				},
    			},
    		},
    		{
    			desc:         "Custom resource without scale subresource, scaling a version with `scale`",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top