Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CaExternalType (0.2 sec)

  1. security/pkg/pki/ra/common.go

    	GetRootCertFromMeshConfig(signerName string) ([]byte, error)
    }
    
    // CaExternalType : Type of External CA integration
    type CaExternalType string
    
    // IstioRAOptions : Configuration Options for the IstioRA
    type IstioRAOptions struct {
    	// ExternalCAType: Integration API type with external CA
    	ExternalCAType CaExternalType
    	// DefaultCertTTL: Default Certificate TTL
    	DefaultCertTTL time.Duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	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
    	Namespace        string
    	Authenticators   []security.Authenticator
    	CertSignerDomain 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/server.go

    	}
    
    	// Options based on the current 'defaults' in istio.
    	caOpts := &caOptions{
    		TrustDomain:      s.environment.Mesh().TrustDomain,
    		Namespace:        args.Namespace,
    		ExternalCAType:   ra.CaExternalType(externalCaType),
    		CertSignerDomain: features.CertSignerDomain,
    	}
    
    	if caOpts.ExternalCAType == ra.ExtCAK8s {
    		// Older environment variable preserved for backward compatibility
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top