Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 163 for HorizontalPodAutoscaler (0.25 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/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: Tue Nov 09 02:34:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"status":   "status is the current information about the autoscaler.",
    }
    
    func (HorizontalPodAutoscaler) SwaggerDoc() map[string]string {
    	return map_HorizontalPodAutoscaler
    }
    
    var map_HorizontalPodAutoscalerCondition = map[string]string{
    	"":                   "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
    	"type":               "type describes the current condition",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/api/autoscaling/v1/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{},
    		&Scale{},
    	)
    	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)
  6. pkg/apis/autoscaling/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Scale{},
    		&HorizontalPodAutoscaler{},
    		&HorizontalPodAutoscalerList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:13:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // 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
    	// Metadata is the standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=autoscaling,v2,HorizontalPodAutoscaler
    
    // 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: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    }
    
    func (HPAScalingRules) SwaggerDoc() map[string]string {
    	return map_HPAScalingRules
    }
    
    var map_HorizontalPodAutoscaler = map[string]string{
    	"":         "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/v1/conversion.go

    		out.CurrentAverageValue = *in.Current.AverageValue
    	}
    	return nil
    }
    
    func Convert_autoscaling_HorizontalPodAutoscaler_To_v1_HorizontalPodAutoscaler(in *autoscaling.HorizontalPodAutoscaler, out *autoscalingv1.HorizontalPodAutoscaler, s conversion.Scope) error {
    	if err := autoConvert_autoscaling_HorizontalPodAutoscaler_To_v1_HorizontalPodAutoscaler(in, out, s); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 16 03:29:22 UTC 2021
    - 21.2K bytes
    - Viewed (0)
Back to top