Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for HorizontalPodAutoscaler (0.53 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v1.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 478 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/validation/validation_test.go

    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := []struct {
    		horizontalPodAutoscaler autoscaling.HorizontalPodAutoscaler
    		msg                     string
    	}{{
    		horizontalPodAutoscaler: autoscaling.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{Name: "myautoscaler", Namespace: metav1.NamespaceDefault},
    			Spec: autoscaling.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    	newHPA := obj.(*autoscaling.HorizontalPodAutoscaler)
    
    	// create cannot set status
    	newHPA.Status = autoscaling.HorizontalPodAutoscalerStatus{}
    }
    
    // Validate validates a new autoscaler.
    func (autoscalerStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	autoscaler := obj.(*autoscaling.HorizontalPodAutoscaler)
    	return validation.ValidateHorizontalPodAutoscaler(autoscaler)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &autoscaling.HorizontalPodAutoscalerList{} },
    		DefaultQualifiedResource:  autoscaling.Resource("horizontalpodautoscalers"),
    		SingularQualifiedResource: autoscaling.Resource("horizontalpodautoscaler"),
    
    		CreateStrategy:      horizontalpodautoscaler.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/v2beta1/defaults_test.go

    	tests := []struct {
    		original *autoscalingv2beta1.HorizontalPodAutoscaler
    		expected *autoscalingv2beta1.HorizontalPodAutoscaler
    	}{
    		{ // MinReplicas default value
    			original: &autoscalingv2beta1.HorizontalPodAutoscaler{
    				Spec: autoscalingv2beta1.HorizontalPodAutoscalerSpec{
    					Metrics: defaultTemplate,
    				},
    			},
    			expected: &autoscalingv2beta1.HorizontalPodAutoscaler{
    				Spec: autoscalingv2beta1.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. api/discovery/apis__autoscaling__v2.json

      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "all"
          ],
          "kind": "HorizontalPodAutoscaler",
          "name": "horizontalpodautoscalers",
          "namespaced": true,
          "shortNames": [
            "hpa"
          ],
          "singularName": "horizontalpodautoscaler",
          "storageVersionHash": "qwQve8ut294=",
          "verbs": [
            "create",
            "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/v1/defaults_test.go

    	tests := []struct {
    		hpa            autoscalingv1.HorizontalPodAutoscaler
    		expectReplicas int32
    		test           string
    	}{
    		{
    			hpa:            autoscalingv1.HorizontalPodAutoscaler{},
    			expectReplicas: 1,
    			test:           "unspecified min replicas, use the default value",
    		},
    		{
    			hpa: autoscalingv1.HorizontalPodAutoscaler{
    				Spec: autoscalingv1.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top