Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for clientCertificate (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    			Groups:   configAuthInfo.ImpersonateGroups,
    			Extra:    configAuthInfo.ImpersonateUserExtra,
    		}
    	}
    	if len(configAuthInfo.ClientCertificate) > 0 || len(configAuthInfo.ClientCertificateData) > 0 {
    		config.CertFile = configAuthInfo.ClientCertificate
    		config.CertData = configAuthInfo.ClientCertificateData
    		config.KeyFile = configAuthInfo.ClientKey
    		config.KeyData = configAuthInfo.ClientKeyData
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    			Host: "example.default.svc.cluster.local",
    			TrafficPolicy: &networking.TrafficPolicy{Tls: &networking.ClientTLSSettings{
    				Mode:              networking.ClientTLSSettings_MUTUAL,
    				ClientCertificate: "fake",
    				PrivateKey:        "fake",
    				CaCertificates:    "fake",
    			}},
    		},
    	}
    	drIstioMTLS := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_tls.go

    			sec_model.ApplyCustomSDSToClientCommonTLSContext(tlsContext.CommonTlsContext, tls, cb.credentialSocketExist)
    		} else {
    			// If CredentialName is not set fallback to file based approach
    			if tls.ClientCertificate == "" || tls.PrivateKey == "" {
    				err := fmt.Errorf("failed to apply tls setting for %s: client certificate and private key must not be empty",
    					c.cluster.Name)
    				return nil, err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	}
    
    	// Update the client certificate and key of the node authorizer to point to the PEM symbolic link.
    	info.ClientKeyData = []byte{}
    	info.ClientCertificateData = []byte{}
    	info.ClientKey = pemPath
    	info.ClientCertificate = pemPath
    
    	// Writes the kubeconfig back to disk.
    	if err = clientcmd.WriteToFile(*kubeconfig, kubeconfigPath); err != nil {
    		return errors.Wrapf(err, "failed to serialize %q", kubeconfigPath)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/cluster.go

    			return "", err
    		}
    	} else if len(authInfo.ClientCertificate) > 0 {
    		// if the config file links an external x509 certificate (e.g. kubelet.conf created by TLS bootstrap), load it
    		if certs, err = certutil.CertsFromFile(authInfo.ClientCertificate); err != nil {
    			return "", err
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

    rap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSettings":{"caCertificates":"/etc/istio/ms/ca.pem","clientCertificate":"/etc/istio/ms/client.pem","mode":"MUTUAL","privateKey":"/etc/istio/ms/key.pem"}},"proxyAdminPort":15005,"serviceCluster":"istio-proxy","statNameLength":200,"statsdUdpAddress":"10.1.1.1:9125","statusPort":15020,"tracing":{"zipkin":{"address...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tests/testdata/config/se-example.yaml

      namespace: seexamples
    spec:
      host: mymongodb.somedomain
      trafficPolicy:
        tls:
          mode: MUTUAL
          # Envoy test runs in pilot/pkg/xds directory, but envoy process base dir is set to IstioSrc
          clientCertificate: tests/testdata/certs/default/cert-chain.pem
          privateKey: tests/testdata/certs/default/key.pem
          caCertificates: tests/testdata/certs/default/root-cert.pem
          # Not included in the example, added for testing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

    rap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSettings":{"caCertificates":"/etc/istio/ms/ca.pem","clientCertificate":"/etc/istio/ms/client.pem","mode":"MUTUAL","privateKey":"/etc/istio/ms/key.pem"}},"proxyAdminPort":15005,"serviceCluster":"istio-proxy","statNameLength":200,"statsdUdpAddress":"10.1.1.1:9125","statusPort":15020,"tracing":{"zipkin":{"address...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

      },
      "layered_runtime": {
          "layers": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

        server.requestClientAuth()
        val clientCertificate =
          HeldCertificate.Builder()
            .signedBy(clientCa)
            .build()
        val clientHandshakeCertificates =
          HandshakeCertificates.Builder()
            .addTrustedCertificate(serverCa.certificate)
            .heldCertificate(clientCertificate)
            .build()
        val url = server.url("/")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top