Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 163 for HorizontalPodAutoscaler (0.51 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message EgressGatewayConfig {
      // Controls whether auto scaling with a HorizontalPodAutoscaler is enabled.
      google.protobuf.BoolValue autoscaleEnabled = 1;
    
      // maxReplicas setting for HorizontalPodAutoscaler.
      uint32 autoscaleMax = 2;
    
      // minReplicas setting for HorizontalPodAutoscaler.
      uint32 autoscaleMin = 3;
    
      // K8s memory utilization setting for HorizontalPodAutoscaler target.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&HorizontalPodAutoscaler{},
    		&HorizontalPodAutoscalerList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 15:07:52 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/v1/defaults.go

    	"k8s.io/utils/pointer"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_HorizontalPodAutoscaler(obj *autoscalingv1.HorizontalPodAutoscaler) {
    	if obj.Spec.MinReplicas == nil {
    		obj.Spec.MinReplicas = pointer.Int32(1)
    	}
    
    	// NB: we apply a default for CPU utilization in conversion because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    // autoscaler, which automatically manages the replica count of any resource
    // implementing the scale subresource based on the metrics specified.
    message HorizontalPodAutoscaler {
      // metadata is the standard object metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // +listType=atomic
      // +optional
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    // autoscaler, which automatically manages the replica count of any resource
    // implementing the scale subresource based on the metrics specified.
    message HorizontalPodAutoscaler {
      // metadata is the standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      // +listType=atomic
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    // autoscaler, which automatically manages the replica count of any resource
    // implementing the scale subresource based on the metrics specified.
    message HorizontalPodAutoscaler {
      // metadata is the standard object metadata.
    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/v2beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.api.resource.Quantity currentAverageValue = 4;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    // autoscaler, which automatically manages the replica count of any resource
    // implementing the scale subresource based on the metrics specified.
    message HorizontalPodAutoscaler {
      // metadata is the standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *HorizontalPodAutoscaler) APILifecycleIntroduced() (major, minor int) {
    	return 1, 2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v2beta1/defaults.go

    	"k8s.io/utils/pointer"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_HorizontalPodAutoscaler(obj *autoscalingv2beta1.HorizontalPodAutoscaler) {
    	if obj.Spec.MinReplicas == nil {
    		obj.Spec.MinReplicas = pointer.Int32(1)
    	}
    
    	if len(obj.Spec.Metrics) == 0 {
    		utilizationDefaultVal := int32(autoscaling.DefaultCPUUtilization)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&HorizontalPodAutoscaler{},
    		&HorizontalPodAutoscalerList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.7K bytes
    - Viewed (0)
Back to top