Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 302 for Critical (0.3 sec)

  1. releasenotes/notes/ztunnel-chart-priorityclassname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 47867
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:33 UTC 2023
    - 219 bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-deployment.yaml

      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
          priorityClassName: system-cluster-critical
          securityContext:
            supplementalGroups: [ 65534 ]
            fsGroup: 65534
          containers:
          - image: registry.k8s.io/cluster-proportional-autoscaler-amd64:1.7.1
            name: autoscaler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/resourcequota.yaml

    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    	{"tighten tuple selectors", "schedule"},
    	// remove critical edges before phi tighten, so that phi args get better placement
    	{"critical", "phi tighten"},
    	// don't layout blocks until critical edges have been removed
    	{"critical", "layout"},
    	// regalloc requires the removal of all critical edges
    	{"critical", "regalloc"},
    	// regalloc requires all the values in a block to be scheduled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. pkg/kubelet/types/pod_update.go

    	}
    
    	return false
    }
    
    // IsCriticalPodBasedOnPriority checks if the given pod is a critical pod based on priority resolved from pod Spec.
    func IsCriticalPodBasedOnPriority(priority int32) bool {
    	return priority >= scheduling.SystemCriticalPriority
    }
    
    // IsNodeCriticalPod checks if the given pod is a system-node-critical
    func IsNodeCriticalPod(pod *v1.Pod) 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)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.group == "org.software" && requested.name == "some-library" && requested.version == "1.2") {
                useVersion("1.2.1")
                because("fixes critical bug in 1.2")
            }
        }
    }
    // end::denying_version[]
    
    // tag::module_substitution[]
    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.name == "groovy-all") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/calico-node-vertical-autoscaler-deployment.yaml

      selector:
        matchLabels:
          k8s-app: calico-node-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-node-autoscaler
        spec:
          priorityClassName: system-cluster-critical
          containers:
            - image: registry.k8s.io/cpvpa-amd64:v0.8.3
              name: autoscaler
              command:
                - /cpvpa
                - --target=daemonset/calico-node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-deployment.yaml

      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
          priorityClassName: system-cluster-critical
          containers:
            - image: registry.k8s.io/cpvpa-amd64:v0.8.3
              name: autoscaler
              command:
                - /cpvpa
                - --target=deployment/calico-typha
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. cluster/addons/kube-proxy/kube-proxy-ds.yaml

      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            k8s-app: kube-proxy
        spec:
          priorityClassName: system-node-critical
          hostNetwork: true
          nodeSelector:
            kubernetes.io/os: linux
            node.kubernetes.io/kube-proxy-ds-ready: "true"
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/test/cert/ca/intermediate.go

    utf8 = yes
    default_md = sha256
    default_bits = 4096
    req_extensions = req_ext
    x509_extensions = req_ext
    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true, pathlen:0
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    subjectAltName=@san
    [ san ]
    DNS.1 = istiod.{{ .SystemNamespace }}
    DNS.2 = istiod.{{ .SystemNamespace }}.svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top