Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 294 for rootCA (0.19 sec)

  1. pkg/controller/serviceaccount/tokens_controller.go

    	maxRetries := options.MaxRetries
    	if maxRetries == 0 {
    		maxRetries = 10
    	}
    
    	e := &TokensController{
    		client: cl,
    		token:  options.TokenGenerator,
    		rootCA: options.RootCA,
    
    		syncServiceAccountQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[serviceAccountQueueKey](),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

      private lateinit var rootCa: HeldCertificate
      private lateinit var certificate: HeldCertificate
      private val dns = FakeDns()
      private lateinit var url: HttpUrl
      private lateinit var serverIps: List<InetAddress>
    
      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
        platform.assumeHttp2Support()
        platform.assumeNotBouncyCastle()
        rootCa =
          HeldCertificate.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication_test.go

    						DefaultValidationContext: &auth.CertificateValidationContext{},
    						ValidationContextSdsSecretConfig: &auth.SdsSecretConfig{
    							Name: "file-root:/custom/path/to/root.pem",
    							SdsConfig: &core.ConfigSource{
    								ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    									ApiConfigSource: &core.ApiConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pkg/test/cert/cert.go

    	return openssl("x509", "-req",
    		"-days", "100000",
    		"-signkey", keyFile,
    		"-extensions", "req_ext",
    		"-extfile", confFile,
    		"-in", csrFile,
    		"-out", certFile)
    }
    
    // GenerateIntermediateCert from the rootCA and writes to certFile.
    func GenerateIntermediateCert(confFile, csrFile, rootCertFile, rootKeyFile, certFile string) error {
    	return openssl("x509", "-req",
    		"-days", "100000",
    		"-CA", rootCertFile,
    		"-CAkey", rootKeyFile,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	}
    
    	var rootCA []byte
    	if controllerContext.ComponentConfig.SAController.RootCAFile != "" {
    		if rootCA, err = readCA(controllerContext.ComponentConfig.SAController.RootCAFile); err != nil {
    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    		rootCA = rootClientBuilder.ConfigOrDie("tokens-controller").CAData
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    	rootCACompareConfigCmd := &cobra.Command{
    		Use:   "rootca-compare [pod/]<name-1>[.<namespace-1>] [pod/]<name-2>[.<namespace-2>]",
    		Short: "Compare ROOTCA values for the two given pods",
    		Long:  `Compare ROOTCA values for given 2 pods to check the connectivity between them.`,
    		Example: `  # Compare ROOTCA values for given 2 pods to check the connectivity between them.
      istioctl proxy-config rootca-compare <pod-name-1[.namespace]> <pod-name-2[.namespace]>`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  7. pkg/model/authentication.go

    	// SDSDefaultResourceName is the default name in sdsconfig, used for fetching normal key/cert.
    	SDSDefaultResourceName = "default"
    
    	// SDSRootResourceName is the sdsconfig name for root CA, used for fetching root cert.
    	SDSRootResourceName = "ROOTCA"
    )
    
    // Preconfigured SDS configs to avoid excessive memory allocations
    var (
    	defaultSDSConfig = &tls.SdsSecretConfig{
    		Name: SDSDefaultResourceName,
    		SdsConfig: &core.ConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/grpcgen.go

    				ValidationContextCertificateProviderInstance: &tls.CommonTlsContext_CertificateProviderInstance{
    					InstanceName:    "default",
    					CertificateName: "ROOTCA",
    				},
    				DefaultValidationContext: &tls.CertificateValidationContext{
    					MatchSubjectAltNames: sanMatch,
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/convert_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/testdata/describe/http_config.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top