Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Ra (0.04 sec)

  1. pilot/pkg/bootstrap/server.go

    	}
    
    	return true
    }
    
    // StartCA starts the CA or RA server if configured.
    func (s *Server) startCA(caOpts *caOptions) {
    	if s.CA == nil && s.RA == nil {
    		return
    	}
    	// init the RA server if configured, else start init CA server
    	if s.RA != nil {
    		log.Infof("initializing CA server with RA")
    		s.initCAServer(s.RA, caOpts)
    	} else if s.CA != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/cmd"
    	"istio.io/istio/security/pkg/pki/ca"
    	"istio.io/istio/security/pkg/pki/ra"
    	caserver "istio.io/istio/security/pkg/server/ca"
    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/certcontroller.go

    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    	caBundle, err = s.RA.GetRootCertFromMeshConfig(signerName)
    	if err != nil {
    		return err
    	}
    
    	// MeshConfig:Add callback for mesh config update
    	s.environment.AddMeshHandler(func() {
    		newCaBundle, _ := s.RA.GetRootCertFromMeshConfig(signerName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    	}
    
    	n, err := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    			"Multiple custom host names are supported, and multiple values are separated by commas.").Get()
    
    	PilotCertProvider = env.Register("PILOT_CERT_PROVIDER", constants.CertProviderIstiod,
    		"The provider of Pilot DNS certificate. K8S RA will be used for k8s.io/NAME. 'istiod' value will sign"+
    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/k8sgateway-selector.yaml"},
    		analyzer:   &k8sgateway.SelectorAnalyzer{},
    		expected: []message{
    			{msg.IneffectiveSelector, "RequestAuthentication default/ra-ineffective"},
    			{msg.IneffectiveSelector, "AuthorizationPolicy default/ap-ineffective"},
    			{msg.IneffectiveSelector, "WasmPlugin default/wasmplugin-ineffective"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top