Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 302 for Critical (0.13 sec)

  1. docs/metrics/prometheus/alerts.md

      repeat_interval: 1h
      receiver: 'web.hook'
    receivers:
      - name: 'web.hook'
        webhook_configs:
          - url: 'http://127.0.0.1:8010/webhook'
    inhibit_rules:
      - source_match:
          severity: 'critical'
        target_match:
          severity: 'warning'
        equal: ['alertname', 'dev', 'instance']
    ```
    
    This sample configuration uses a `webhook` at http://127.0.0.1:8010/webhook to post the alerts.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/kubelet/preemption/preemption.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const message = "Preempted in order to admit critical pod"
    
    // CriticalPodAdmissionHandler is an AdmissionFailureHandler that handles admission failure for Critical Pods.
    // If the ONLY admission failures are due to insufficient resources, then CriticalPodAdmissionHandler evicts pods
    // so that the critical pod can be admitted.  For evictions, the CriticalPodAdmissionHandler evicts a set of pods that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. pkg/util/interrupt/interrupt.go

    // to a Run method), even in the presence of process termination. It guarantees exactly once
    // invocation of the provided notify functions.
    type Handler struct {
    	notify []func()
    	final  func(os.Signal)
    	once   sync.Once
    }
    
    // New creates a new handler that guarantees all notify functions are run after the critical
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/test/cert/ca/root.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
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    [ req_dn ]
    O = Istio
    CN = Root CA`
    
    // Root contains the cryptographic files for a self-signed root CA.
    type Root struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. samples/certs/generate-workload.sh

    req_extensions = v3_req
    x509_extensions = v3_req
    prompt = no
    [req_distinguished_name]
    countryName = US
    [v3_req]
    keyUsage = critical, digitalSignature, keyEncipherment
    extendedKeyUsage = serverAuth, clientAuth
    basicConstraints = critical, CA:FALSE
    subjectAltName = critical, @alt_names
    [alt_names]
    URI = $san
    EOF
    
    certchain="$FINAL_DIR"/cert-chain.pem
    cacert="$FINAL_DIR"/ca-cert.pem
    cakey="$FINAL_DIR"/ca-key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    template: metadata: labels: k8s-app: istio-cni-node sidecar.istio.io/inject: "false" annotations: # This, along with the CriticalAddonsOnly toleration below, # marks the pod as a critical add-on, ensuring it gets # priority scheduling and that its resources are reserved # if it ever gets evicted. scheduler.alpha.kubernetes.io/critical-pod: '' sidecar.istio.io/inject: "false" # Add Prometheus Scrape annotations prometheus.io/scrape: 'true' prometheus.io/port: "15014" prometheus.io/path: '/metrics' # Custom...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  7. src/crypto/x509/parser.go

    				}
    			default:
    				// Unknown extensions are recorded if critical.
    				unhandled = true
    			}
    		} else if e.Id.Equal(oidExtensionAuthorityInfoAccess) {
    			// RFC 5280 4.2.2.1: Authority Information Access
    			if e.Critical {
    				// Conforming CAs MUST mark this extension as non-critical
    				return errors.New("x509: authority info access incorrectly marked critical")
    			}
    			val := cryptobyte.String(e.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

          labels:
            app: metadata-agent
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
          serviceAccountName: metadata-agent
          priorityClassName: system-node-critical
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - image: gcr.io/stackdriver-agents/stackdriver-metadata-agent:0.2-0.0.21-1
            imagePullPolicy: IfNotPresent
            name: metadata-agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption_test.go

    	"k8s.io/client-go/tools/record"
    	kubeapi "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    )
    
    const (
    	clusterCritical       = "cluster-critical"
    	nodeCritical          = "node-critical"
    	bestEffort            = "bestEffort"
    	burstable             = "burstable"
    	highRequestBurstable  = "high-request-burstable"
    	guaranteed            = "guaranteed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  10. pkg/apis/scheduling/v1/helpers.go

    		},
    		Value:       scheduling.SystemCriticalPriority + 1000,
    		Description: "Used for system critical pods that must not be moved from their current node.",
    	},
    	{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: scheduling.SystemClusterCritical,
    		},
    		Value:       scheduling.SystemCriticalPriority,
    		Description: "Used for system critical pods that must run in the cluster, but can be moved to another node if necessary.",
    	},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 16:51:57 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top