Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for rootCA (0.18 sec)

  1. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        // Fails on 11.0.1 https://github.com/square/okhttp/issues/4703
        val rootCa =
          HeldCertificate.Builder()
            .serialNumber(1L)
            .certificateAuthority(1)
            .commonName("root")
            .build()
        val intermediateCa =
          HeldCertificate.Builder()
            .signedBy(rootCa)
            .certificateAuthority(0)
            .serialNumber(2L)
            .commonName("intermediate_ca")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/certificates.go

    		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 = controllerContext.ClientBuilder.ConfigOrDie("root-ca-cert-publisher").CAData
    	}
    
    	sac, err := rootcacertpublisher.NewPublisher(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/bootstrap/option/instances_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    		ns.RootCert = sc.mergeTrustAnchorBytes(ns.RootCert)
    	} else {
    		// If periodic cert refresh resulted in discovery of a new root, trigger a ROOTCA request to refresh trust anchor
    		oldRoot := sc.cache.GetRoot()
    		if !bytes.Equal(oldRoot, ns.RootCert) {
    			cacheLog.Info("Root cert has changed, start rotating root cert")
    			// We store the oldRoot only for comparison and not for serving
    			sc.cache.SetRoot(ns.RootCert)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top