Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 561 for Pods (0.14 sec)

  1. staging/src/k8s.io/api/scheduling/v1beta1/types.go

    	// value represents the integer value of this priority class. This is the actual priority that pods
    	// receive when they have the name of this class in their pod spec.
    	Value int32 `json:"value" protobuf:"bytes,2,opt,name=value"`
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. releasenotes/notes/39825.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 39825
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 06:36:52 UTC 2022
    - 220 bytes
    - Viewed (0)
  3. istioctl/pkg/cli/mock_client.go

    	if !ok {
    		return nil, fmt.Errorf("unable to retrieve Pod: pods %q not found", podName)
    	}
    	return results, nil
    }
    
    func (c MockClient) EnvoyDoWithPort(ctx context.Context, podName, podNamespace, method, path string, port int) ([]byte, error) {
    	results, ok := c.Results[podName]
    	if !ok {
    		return nil, fmt.Errorf("unable to retrieve Pod: pods %q not found", podName)
    	}
    	return results, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. releasenotes/notes/50355.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 50355
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 18:04:40 UTC 2024
    - 223 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2.HorizontalPodAutoscaler.yaml

                - valuesValue
              matchLabels:
                matchLabelsKey: matchLabelsValue
          target:
            averageUtilization: 4
            averageValue: "0"
            type: typeValue
            value: "0"
        pods:
          metric:
            name: nameValue
            selector:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.json

                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
                  ]
                }
              }
            },
            "pods": {
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2.HorizontalPodAutoscaler.json

                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
                  ]
                }
              }
            },
            "pods": {
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

                - valuesValue
              matchLabels:
                matchLabelsKey: matchLabelsValue
          target:
            averageUtilization: 4
            averageValue: "0"
            type: typeValue
            value: "0"
        pods:
          metric:
            name: nameValue
            selector:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/metrics/metrics.go

    var (
    	// PodDeletionsTotal counts the number of Pods deleted by TaintEvictionController since its start.
    	PodDeletionsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      taintEvictionControllerSubsystem,
    			Name:           "pod_deletions_total",
    			Help:           "Total number of Pods deleted by TaintEvictionController since its start.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top