Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 323 for ucrt (1.14 sec)

  1. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=v1
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

              - --port=8090
              - --tcp=9000
              - --grpc=9090
              - --port=8080
              - --port=3333
              - --version=v-istio
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 8090
            - containerPort: 9000
            - containerPort: 9090
            - containerPort: 8080
            - containerPort: 3333
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=1.8.2
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=1.9.0
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/bootstrap/testdata/README.md

    Keys in this directory are generated for testing purposes only.
    
    In this pr validCert(mycertvalid.crt):
    ```
    Validity
    Not Before: Apr 26 23:26:52 2017 GMT
    Not After : Apr 2 23:26:52 2117 GMT
    ```
    
    
    
    InvalidCert(mycertinvalid.crt):
    ```
    Validity
    Not Before: Dec 16 06:46:25 2014 GMT
    Not After : Dec 16 06:46:25 2015 GMT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 02 15:22:00 UTC 2021
    - 319 bytes
    - Viewed (0)
  6. pkg/test/echo/docker/Dockerfile.app

    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/sdsservice_test.go

    	}
    	got := xdstest.ExtractTLSSecrets(s.t, resp.Resources)
    	for _, e := range expectations {
    		scrt := got[e.ResourceName]
    		var expectationKey []byte
    		if provider := scrt.GetTlsCertificate().GetPrivateKeyProvider(); provider != nil {
    			expectationKey = s.extractPrivateKeyProvider(provider)
    		} else {
    			expectationKey = scrt.GetTlsCertificate().GetPrivateKey().GetInlineBytes()
    		}
    		r := Expectation{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/crypto/x509/root_bsd.go

    var certFiles = []string{
    	"/usr/local/etc/ssl/cert.pem",            // FreeBSD
    	"/etc/ssl/cert.pem",                      // OpenBSD
    	"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
    	"/etc/openssl/certs/ca-certificates.crt", // NetBSD
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/etc/ssl/certs",         // FreeBSD 12.2+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 748 bytes
    - Viewed (0)
  9. src/crypto/x509/root_solaris.go

    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/etc/certs/ca-certificates.crt",     // Solaris 11.2+
    	"/etc/ssl/certs/ca-certificates.crt", // Joyent SmartOS
    	"/etc/ssl/cacert.pem",                // OmniOS
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/etc/certs/CA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 538 bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/options/options_test.go

    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    		"--kubelet-read-only-port=10255",
    		"--kubelet-timeout=5s",
    		"--kubelet-client-certificate=/var/run/kubernetes/ceserver.crt",
    		"--kubelet-client-key=/var/run/kubernetes/server.key",
    		"--kubelet-certificate-authority=/var/run/kubernetes/caserver.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top