Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewSecurityOptions (0.21 sec)

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

    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/credentialfetcher"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    )
    
    func NewSecurityOptions(proxyConfig *meshconfig.ProxyConfig, stsPort int, tokenManagerPlugin string) (*security.Options, error) {
    	o := &security.Options{
    		CAEndpoint:                     caEndpointEnv,
    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. pilot/cmd/pilot-agent/app/cmd.go

    			if out, err := protomarshal.ToYAML(proxyConfig); err != nil {
    				log.Infof("Failed to serialize to YAML: %v", err)
    			} else {
    				log.Infof("Effective config: %s", out)
    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    			}
    
    			// If we are using a custom template file (for control plane proxy, for example), configure this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top