Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OutputKeyCertToDir (0.3 sec)

  1. pilot/cmd/pilot-agent/options/security.go

    	o := &security.Options{
    		CAEndpoint:                     caEndpointEnv,
    		CAProviderName:                 caProviderEnv,
    		PilotCertProvider:              features.PilotCertProvider,
    		OutputKeyCertToDir:             outputKeyCertToDir,
    		ProvCert:                       provCert,
    		ClusterID:                      clusterIDVar.Get(),
    		FileMountedCerts:               fileMountedCertsEnv,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    		// that expect certs as files, like Prometheus.
    		dir := mktemp()
    		sds := Setup(t, func(a AgentTest) AgentTest {
    			a.Security.OutputKeyCertToDir = dir
    			a.Security.SecretRotationGracePeriodRatio = 1
    			return a
    		}).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	// WorkloadRSAKeySize is the size of a private key for a workload certificate.
    	WorkloadRSAKeySize int
    
    	// Whether to generate PKCS#8 private keys.
    	Pkcs8Keys bool
    
    	// OutputKeyCertToDir is the directory for output the key and certificate
    	OutputKeyCertToDir string
    
    	// ProvCert is the directory for client to provide the key and certificate to CA server when authenticating
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	_, err = grpcxds.GenerateBootstrapFile(grpcxds.GenerateBootstrapOptions{
    		Node:             node,
    		XdsUdsPath:       a.cfg.XdsUdsPath,
    		DiscoveryAddress: a.proxyConfig.DiscoveryAddress,
    		CertDir:          a.secOpts.OutputKeyCertToDir,
    	}, a.cfg.GRPCBootstrapPath)
    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    // Check is used in to readiness check of agent to ensure DNSServer is ready.
    func (a *Agent) Check() (err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top