Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 302 for Critical (0.13 sec)

  1. cluster/gce/manifests/kube-controller-manager.manifest

      }
    },
    "spec":{
    "securityContext": {
      {{runAsUser}}
      {{runAsGroup}}
      {{supplementalGroups}}
      "seccompProfile": {
          "type": "RuntimeDefault"
      }
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "kube-controller-manager",
        "securityContext": {
          "allowPrivilegeEscalation": false,
          "capabilities": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 20:49:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: metadata-proxy
            kubernetes.io/cluster-service: "true"
            version: v0.1
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: metadata-proxy
          hostNetwork: true
          dnsPolicy: Default
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. pkg/log/config.go

    	zapcore.DebugLevel:  "Debug",
    	zapcore.InfoLevel:   "Info",
    	zapcore.WarnLevel:   "Warning",
    	zapcore.ErrorLevel:  "Error",
    	zapcore.DPanicLevel: "Critical",
    	zapcore.FatalLevel:  "Critical",
    	zapcore.PanicLevel:  "Critical",
    }
    
    func encodeStackdriverLevel(l zapcore.Level, enc zapcore.PrimitiveArrayEncoder) {
    	enc.AppendString(stackdriverSeverityMapping[l])
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue24693.dir/b.go

    // so the code produced for F2 uses { b.m(); a.m() } as the method set
    // order. So again, it ends up calling the wrong method.
    //
    // Also, this function is marked noinline because it's critical to the
    // test that the interface method call happen in this compilation
    // unit, and the itab construction happens in c.go.
    //
    //go:noinline
    func F2(i interface {
    	m()
    	a.I // embeds m() from package a
    }) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to marshal the raw values for SAN field (err: %s)", err)
    	}
    
    	// SAN is Critical because the subject is empty. This is compliant with X.509 and SPIFFE standards.
    	return &pkix.Extension{Id: oidSubjectAlternativeName, Critical: true, Value: bs}, nil
    }
    
    // ExtractIDsFromSAN takes a SAN extension and extracts the identities.
    // The logic is mostly borrowed from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
          nodeSelector:
            kubernetes.io/os: linux
          priorityClassName: system-node-critical
          serviceAccountName: ztunnel
          terminationGracePeriodSeconds: 30
          tolerations:
          - effect: NoSchedule
            operator: Exists
          - key: CriticalAddonsOnly
            operator: Exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryDisabler.java

        Optional<Throwable> getDisabledReason(String repositoryId);
    
        /**
         * Attempts to disable the repository with the given id, recording the exception causing it to be disabled, if
         * that exception is deemed critical.
         *
         * @param repositoryId the id of the repository to disable
         * @param throwable the reason why the repository is being disabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:29:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. cluster/gce/manifests/kube-apiserver.manifest

      }
    },
    "spec":{
    "securityContext": {
        {{runAsUser}}
        {{runAsGroup}}
        {{supplementalGroups}}
        "seccompProfile": {
            "type": "RuntimeDefault"
        }
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "kube-apiserver",
        {{containerSecurityContext}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/values.yaml

        # If empty, default scope and level will be used as configured in code
        logging:
          level: "default:info"
    
        # 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. security/pkg/pki/util/san_test.go

    	}
    
    	if !reflect.DeepEqual(actualIDs, ids) {
    		t.Errorf("Unmatched identities: before encoding: %v, after decoding %v", ids, actualIDs)
    	}
    
    	if !san.Critical {
    		t.Errorf("SAN field is not critical.")
    	}
    }
    
    func TestBuildSANExtensionWithError(t *testing.T) {
    	id := Identity{Type: 10}
    	if _, err := BuildSANExtension([]Identity{id}); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top