Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for currentAverageUtilization (0.36 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/containerresourcemetricstatus.go

    // with apply.
    type ContainerResourceMetricStatusApplyConfiguration struct {
    	Name                      *v1.ResourceName   `json:"name,omitempty"`
    	CurrentAverageUtilization *int32             `json:"currentAverageUtilization,omitempty"`
    	CurrentAverageValue       *resource.Quantity `json:"currentAverageValue,omitempty"`
    	Container                 *string            `json:"container,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/resourcemetricstatus.go

    // with apply.
    type ResourceMetricStatusApplyConfiguration struct {
    	Name                      *v1.ResourceName   `json:"name,omitempty"`
    	CurrentAverageUtilization *int32             `json:"currentAverageUtilization,omitempty"`
    	CurrentAverageValue       *resource.Quantity `json:"currentAverageValue,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentMetrics:
      - containerResource:
          container: containerValue
          currentAverageUtilization: 2
          currentAverageValue: "0"
          name: nameValue
        external:
          currentAverageValue: "0"
          currentValue: "0"
          metricName: metricNameValue
          metricSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

                  }
                ]
              }
            },
            "resource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0"
            },
            "containerResource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0",
              "container": "containerValue"
            },
            "external": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.json

                  }
                ]
              }
            },
            "resource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0"
            },
            "containerResource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0",
              "container": "containerValue"
            },
            "external": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentMetrics:
      - containerResource:
          container: containerValue
          currentAverageUtilization: 2
          currentAverageValue: "0"
          name: nameValue
        external:
          currentAverageValue: "0"
          currentValue: "0"
          metricName: metricNameValue
          metricSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

                  }
                ]
              }
            },
            "resource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0"
            },
            "containerResource": {
              "name": "nameValue",
              "currentAverageUtilization": 2,
              "currentAverageValue": "0",
              "container": "containerValue"
            },
            "external": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentMetrics:
      - containerResource:
          container: containerValue
          currentAverageUtilization: 2
          currentAverageValue: "0"
          name: nameValue
        external:
          currentAverageValue: "0"
          currentValue: "0"
          metricName: metricNameValue
          metricSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v2beta1/conversion.go

    	out.Name = core.ResourceName(in.Name)
    	out.Container = in.Container
    	utilization := in.CurrentAverageUtilization
    	averageValue := in.CurrentAverageValue
    	out.Current = autoscaling.MetricValueStatus{
    		AverageValue:       &averageValue,
    		AverageUtilization: utilization,
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// currentAverageUtilization is the current value of the average of the
    	// resource metric across all relevant pods, represented as a percentage of
    	// the requested value of the resource for the pods.  It will only be
    	// present if `targetAverageValue` was set in the corresponding metric
    	// specification.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
Back to top