Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 163 for ucrt (0.95 sec)

  1. cmd/kube-apiserver/app/testing/testserver.go

    		clientSigningKey, err := testutil.NewPrivateKey()
    		if err != nil {
    			return result, err
    		}
    		clientSigningCert, err := cert.NewSelfSignedCACert(cert.Config{CommonName: "client-ca"}, clientSigningKey)
    		if err != nil {
    			return result, err
    		}
    		clientCACertFile := filepath.Join(s.SecureServing.ServerCert.CertDirectory, "client-ca.crt")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/crypto/x509/root_linux.go

    package x509
    
    import "internal/goos"
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/etc/ssl/certs/ca-certificates.crt",                // Debian/Ubuntu/Gentoo etc.
    	"/etc/pki/tls/certs/ca-bundle.crt",                  // Fedora/RHEL 6
    	"/etc/ssl/ca-bundle.pem",                            // OpenSUSE
    	"/etc/pki/tls/cacert.pem",                           // OpenELEC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/controller/certificates/rootcacertpublisher/publisher.go

    			Data: map[string]string{
    				"ca.crt": string(c.rootCA),
    			},
    		}, metav1.CreateOptions{})
    		// don't retry a create if the namespace doesn't exist or is terminating
    		if apierrors.IsNotFound(err) || apierrors.HasStatusCause(err, v1.NamespaceTerminatingCause) {
    			return nil
    		}
    		return err
    	case err != nil:
    		return err
    	}
    
    	data := map[string]string{
    		"ca.crt": string(c.rootCA),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

              - --xds-grpc-server=7070
              - --port=8080
              - --port=3333
              - --grpc=17171
              - --bind-localhost=17171
              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            - containerPort: 17171
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    					ServerCertificate: "server-cert.crt",
    					PrivateKey:        "private-key.key",
    					CaCertificates:    "ca-cert.crt",
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp,
    					TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    						{
    							Name: "file-cert:server-cert.crt~private-key.key",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/deployment.yaml

              - --istio-version={{ $version }}
    {{- if $.TLSSettings }}
              - --crt=/etc/certs/custom/cert-chain.pem
              - --key=/etc/certs/custom/key.pem
    {{- if $.TLSSettings.AcceptAnyALPN}}
              - --disable-alpn
    {{- end }}
    {{- else }}
              - --crt=/cert.crt
              - --key=/cert.key
    {{- end }}
            ports:
    {{- range $i, $p := $appContainer.ContainerPorts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/integration/security/https_jwt/main_test.go

    	if cfg == nil {
    		return
    	}
    	script := path.Join(env.IstioSrc, "samples/jwt-server/testdata", "ca.crt")
    	rootCaCert, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    	// command to generate certificate
    	// use the generated ca.crt by following https://github.com/istio/istio/blob/master/samples/jwt-server/testdata/README.MD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local_test.go

        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
        - --peer-trusted-ca-file=etcd/ca.crt
        - --snapshot-count=10000
        - --trusted-ca-file=etcd/ca.crt
        image: /etcd:%s
        imagePullPolicy: IfNotPresent
        livenessProbe:
          failureThreshold: 8
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. docs/iam/policies/pbac-tests.sh

    API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}')
    (openssl s_client -connect 127.0.0.1:7373 2>/dev/null 1>public.crt)
    
    export CI=true
    export MINIO_KMS_KES_ENDPOINT=https://127.0.0.1:7373
    export MINIO_KMS_KES_API_KEY="${API_KEY}"
    export MINIO_KMS_KES_KEY_NAME=minio-default-key
    export MINIO_KMS_KES_CAPATH=public.crt
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top