Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 171 for crt2 (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/aes/gcm_ppc64x.s

    	// Additional encryptions are done based on
    	// the key length, with the last key moved
    	// to V23 for use with VCIPHERLAST.
    	// CR2 = CMP key_len, $12
    	XXLOR VS10, VS10, V23
    	BLT	CR2, block128_last // key_len = 10
    	VCIPHER_8X1_KEY(VS10)
    	VCIPHER_8X1_KEY(VS11)
    	XXLOR VS12,VS12,V23
    	BEQ	CR2, block128_last // ken_len = 12
    	VCIPHER_8X1_KEY(VS12)
    	VCIPHER_8X1_KEY(VS13)
    	XXLOR VS14,VS14,V23	// key_len = 14
    block128_last:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. 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)
  9. helm/minio/README.md

    For instance, given that TLS is enabled and you need to add trust for MinIO's own CA and for the CA of a Keycloak server, a Kubernetes secret can be created from the certificate files using `kubectl`:
    
    ```
    kubectl -n minio create secret generic minio-trusted-certs --from-file=public.crt --from-file=keycloak.crt
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_ppc64x.s

    start:
    	CMP	R9,$16,CR0
    	CMP	R9,$32,CR1
    	CMP	R9,$64,CR2
    	MOVD	$16,R10
    	BLT	cmp8
    	BLT	CR1,cmp16
    	BLT	CR2,cmp32
    
    cmp64:	// >= 64B
    	DCBT	(R5)		// optimize for size>=64
    	DCBT	(R6)		// cache hint
    
    	SRD	$6,R9,R14	// There is at least one iteration.
    	MOVD	R14,CTR
    	ANDCC   $63,R9,R9
    	CMP	R9,$16,CR1	// Do setup for tail check early on.
    	CMP	R9,$32,CR2
    	CMP	R9,$48,CR3
    	ADD	$-16,R9,R9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top