Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for PriorityClassName (0.43 sec)

  1. cluster/addons/dns/kube-dns/kube-dns.yaml.base

          k8s-app: kube-dns
      template:
        metadata:
          labels:
            k8s-app: kube-dns
          annotations:
            prometheus.io/port: "10054"
            prometheus.io/scrape: "true"
        spec:
          priorityClassName: system-cluster-critical
          securityContext:
            seccompProfile:
              type: RuntimeDefault
            supplementalGroups: [ 65534 ]
            fsGroup: 65534
          affinity:
            podAntiAffinity:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

          k8s-app: kube-dns
      template:
        metadata:
          labels:
            k8s-app: kube-dns
          annotations:
            prometheus.io/port: "10054"
            prometheus.io/scrape: "true"
        spec:
          priorityClassName: system-cluster-critical
          securityContext:
            seccompProfile:
              type: RuntimeDefault
            supplementalGroups: [ 65534 ]
            fsGroup: 65534
          affinity:
            podAntiAffinity:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/kubelet/types/pod_update.go

    	return priority >= scheduling.SystemCriticalPriority
    }
    
    // IsNodeCriticalPod checks if the given pod is a system-node-critical
    func IsNodeCriticalPod(pod *v1.Pod) bool {
    	return IsCriticalPod(pod) && (pod.Spec.PriorityClassName == scheduling.SystemNodeCritical)
    }
    
    // IsRestartableInitContainer returns true if the initContainer has
    // ContainerRestartPolicyAlways.
    func IsRestartableInitContainer(initContainer *v1.Container) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/daemonset.yaml

              operator: Exists
            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top