Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for HorizontalPodAutoscaler (1.7 sec)

  1. pkg/apis/autoscaling/validation/validation.go

    		}
    	}
    
    	return allErrs
    }
    
    // ValidateHorizontalPodAutoscaler validates a HorizontalPodAutoscaler and returns an
    // ErrorList with any errors.
    func ValidateHorizontalPodAutoscaler(autoscaler *autoscaling.HorizontalPodAutoscaler) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&autoscaler.ObjectMeta, true, ValidateHorizontalPodAutoscalerName, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. 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)
  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. pkg/api/testing/defaulting_test.go

    		{Group: "autoscaling", Version: "v1", Kind: "HorizontalPodAutoscaler"}:                                     {},
    		{Group: "autoscaling", Version: "v1", Kind: "HorizontalPodAutoscalerList"}:                                 {},
    		{Group: "autoscaling", Version: "v2", Kind: "HorizontalPodAutoscaler"}:                                     {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.23
    
    // 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.
    type HorizontalPodAutoscaler struct {
    	metav1.TypeMeta `json:",inline"`
    	// metadata is the standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// +optional
    	ObservedGeneration *int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
    
    	// lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods;
    	// used by the autoscaler to control how often the number of pods is changed.
    	// +optional
    	LastScaleTime *metav1.Time `json:"lastScaleTime,omitempty" protobuf:"bytes,2,opt,name=lastScaleTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top