Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Ra (0.14 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. build/common.sh

      kube::util::ensure-docker-buildx
    
      local -r image=$1
      local -r context_dir=$2
      local -r pull="${3:-true}"
      local build_args
      IFS=" " read -r -a build_args <<< "$4"
      readonly build_args
      local -ra build_cmd=("${DOCKER[@]}" buildx build --load -t "${image}" "--pull=${pull}" "${build_args[@]}" "${context_dir}")
    
      kube::log::status "Building Docker image ${image}"
      local docker_output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. cmd/sftp-server-driver.go

    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    func (f *sftpDriver) AccessKey() string {
    	return f.permissions.CriticalOptions["AccessKey"]
    }
    
    func (f *sftpDriver) Fileread(r *sftp.Request) (ra io.ReaderAt, err error) {
    	// This is not timing the actual read operation, but the time it takes to prepare the reader.
    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer stopFn(0, err)
    
    	flags := r.Pflags()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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