Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for Cedric (0.11 sec)

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

              },
              "target": {
                "type": "typeValue",
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 4
              },
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
                  "matchExpressions": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

      - containerResource:
          container: containerValue
          name: nameValue
          target:
            averageUtilization: 4
            averageValue: "0"
            type: typeValue
            value: "0"
        external:
          metric:
            name: nameValue
            selector:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metricName is the name of a metric used for autoscaling in
      // metric system.
      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metricName is the name of a metric used for autoscaling in
      // metric system.
      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    	return vMetrics
    }
    
    func expectedFSStats() kubestats.FsStats {
    	metric := expectedMetrics()
    	available := uint64(metric.Available.Value())
    	capacity := uint64(metric.Capacity.Value())
    	used := uint64(metric.Used.Value())
    	inodes := uint64(metric.Inodes.Value())
    	inodesFree := uint64(metric.InodesFree.Value())
    	inodesUsed := uint64(metric.InodesUsed.Value())
    	return kubestats.FsStats{
    		AvailableBytes: &available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    			t.Fatal("Metric specified as objectMetric but metric.singleObject is nil.")
    		}
    		outReplicas, outUsage, outTimestamp, err = replicaCalc.GetObjectPerPodMetricReplicas(tc.currentReplicas, tc.metric.perPodTargetUsage, tc.metric.name, testNamespace, tc.metric.singleObject, nil)
    	case externalMetric:
    		if tc.metric.selector == nil {
    			t.Fatal("Metric specified as externalMetric but metric.selector is nil.")
    		}
    		if tc.metric.targetUsage <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/types.go

    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    type ExternalMetricStatus struct {
    	// metricName is the name of a metric used for autoscaling in
    	// metric system.
    	MetricName string `json:"metricName" protobuf:"bytes,1,name=metricName"`
    
    	// metricSelector is used to identify a specific time series
    	// within a given metric.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "metric-test-pod",
    			UID:       "metric-test-pod-uid",
    			Namespace: "metric-test",
    		},
    		Spec: v1.PodSpec{
    			NodeName: "metric-test-host",
    			Volumes: []v1.Volume{
    				{
    					Name: "metric-test-volume-name",
    					VolumeSource: v1.VolumeSource{
    						PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    							ClaimName: "metric-test-pvc",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/runtime/metrics/description.go

    	// Description is an English language sentence describing the metric.
    	Description string
    
    	// Kind is the kind of value for this metric.
    	//
    	// The purpose of this field is to allow users to filter out metrics whose values are
    	// types which their application may not understand.
    	Kind ValueKind
    
    	// Cumulative is whether or not the metric is cumulative. If a cumulative metric is just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

              },
              "target": {
                "type": "typeValue",
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 4
              },
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
                  "matchExpressions": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top