Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for PriorityClassName (0.41 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

            ],
            "hostAliases": [
              {
                "ip": "ipValue",
                "hostnames": [
                  "hostnamesValue"
                ]
              }
            ],
            "priorityClassName": "priorityClassNameValue",
            "priority": 25,
            "dnsConfig": {
              "nameservers": [
                "nameserversValue"
              ],
              "searches": [
                "searchesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

            ],
            "hostAliases": [
              {
                "ip": "ipValue",
                "hostnames": [
                  "hostnamesValue"
                ]
              }
            ],
            "priorityClassName": "priorityClassNameValue",
            "priority": 25,
            "dnsConfig": {
              "nameservers": [
                "nameserversValue"
              ],
              "searches": [
                "searchesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

          }
        ],
        "hostAliases": [
          {
            "ip": "ipValue",
            "hostnames": [
              "hostnamesValue"
            ]
          }
        ],
        "priorityClassName": "priorityClassNameValue",
        "priority": 25,
        "dnsConfig": {
          "nameservers": [
            "nameserversValue"
          ],
          "searches": [
            "searchesValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

            ],
            "hostAliases": [
              {
                "ip": "ipValue",
                "hostnames": [
                  "hostnamesValue"
                ]
              }
            ],
            "priorityClassName": "priorityClassNameValue",
            "priority": 25,
            "dnsConfig": {
              "nameservers": [
                "nameserversValue"
              ],
              "searches": [
                "searchesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

            ],
            "hostAliases": [
              {
                "ip": "ipValue",
                "hostnames": [
                  "hostnamesValue"
                ]
              }
            ],
            "priorityClassName": "priorityClassNameValue",
            "priority": 25,
            "dnsConfig": {
              "nameservers": [
                "nameserversValue"
              ],
              "searches": [
                "searchesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

          }
        ],
        "hostAliases": [
          {
            "ip": "ipValue",
            "hostnames": [
              "hostnamesValue"
            ]
          }
        ],
        "priorityClassName": "priorityClassNameValue",
        "priority": 25,
        "dnsConfig": {
          "nameservers": [
            "nameserversValue"
          ],
          "searches": [
            "searchesValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.json

                  {
                    "ip": "ipValue",
                    "hostnames": [
                      "hostnamesValue"
                    ]
                  }
                ],
                "priorityClassName": "priorityClassNameValue",
                "priority": 25,
                "dnsConfig": {
                  "nameservers": [
                    "nameserversValue"
                  ],
                  "searches": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

            ],
            "hostAliases": [
              {
                "ip": "ipValue",
                "hostnames": [
                  "hostnamesValue"
                ]
              }
            ],
            "priorityClassName": "priorityClassNameValue",
            "priority": 25,
            "dnsConfig": {
              "nameservers": [
                "nameserversValue"
              ],
              "searches": [
                "searchesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // own webhook configurations.
      google.protobuf.BoolValue operatorManageWebhooks = 41;
    
      // Specifies the k8s priorityClassName for the istio control plane components.
      //
      // See https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
      string priorityClassName = 27 [deprecated = true];
    
      // Specifies how proxies are configured within Istio.
      ProxyConfig proxy = 28;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. plugin/pkg/admission/resourcequota/admission_test.go

    }
    
    func validPodWithPriority(name string, numContainers int, resources api.ResourceRequirements, priorityClass string) *api.Pod {
    	pod := validPod(name, numContainers, resources)
    	if priorityClass != "" {
    		pod.Spec.PriorityClassName = priorityClass
    	}
    	return pod
    }
    
    func validPersistentVolumeClaim(name string, resources api.VolumeResourceRequirements) *api.PersistentVolumeClaim {
    	return &api.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top