Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for PriorityClass (0.5 sec)

  1. api/discovery/aggregated_v2.json

                  "responseKind": {
                    "group": "",
                    "kind": "PriorityClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "shortNames": [
                    "pc"
                  ],
                  "singularResource": "priorityclass",
                  "verbs": [
                    "create",
                    "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/quota/v1/evaluator/core/pods_test.go

    	tests := []struct {
    		name     string
    		selector corev1.ScopedResourceSelectorRequirement
    	}{
    		{
    			name: "PriorityClass selector w/o operator",
    			selector: corev1.ScopedResourceSelectorRequirement{
    				ScopeName: corev1.ResourceQuotaScopePriorityClass,
    			},
    		},
    		{
    			name: "PriorityClass selector w/ 'Exists' operator",
    			selector: corev1.ScopedResourceSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
        # system-node-critical, it is better to configure this in order to make sure your Istio pods
        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
        # system-node-critical, it is better to configure this in order to make sure your Istio pods
        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    imagePullPolicy| [ImagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/)
    priorityClassName | [priority class name](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass)
    nodeSelector| [node selector](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. pkg/quota/v1/evaluator/core/pods.go

    		return !isBestEffort(pod), nil
    	case corev1.ResourceQuotaScopePriorityClass:
    		if selector.Operator == corev1.ScopeSelectorOpExists {
    			// This is just checking for existence of a priorityClass on the pod,
    			// no need to take the overhead of selector parsing/evaluation.
    			return len(pod.Spec.PriorityClassName) != 0, nil
    		}
    		return podMatchesSelector(pod, selector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  7. operator/README.md

    - [ImagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/)
    - [priority class name](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass)
    - [node selector](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
    - [toleration](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintPriorityClass(t *testing.T) {
    	tests := []struct {
    		pc       scheduling.PriorityClass
    		expected []metav1.TableRow
    	}{
    		{
    			pc: scheduling.PriorityClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "pc1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Value: 1,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Value", Type: "integer", Description: schedulingv1.PriorityClass{}.SwaggerDoc()["value"]},
    		{Name: "Global-Default", Type: "boolean", Description: schedulingv1.PriorityClass{}.SwaggerDoc()["globalDefault"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.scheduling.v1.PriorityClass": {
          "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top