Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tokenManagerPlugin (0.16 sec)

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

    import (
    	istioagent "istio.io/istio/pkg/istio-agent"
    )
    
    // ProxyArgs provides all of the configuration parameters for the Pilot proxy.
    type ProxyArgs struct {
    	istioagent.Proxy
    
    	StsPort            int
    	TokenManagerPlugin string
    
    	MeshConfigFile string
    
    	// proxy config flags (named identically)
    	ServiceCluster         string
    	ProxyLogLevel          string
    	ProxyComponentLogLevel string
    	Concurrency            int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/app/cmd.go

    		"HTTP Port on which to serve Security Token Service (STS). If zero, STS service will not be provided.")
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TokenManagerPlugin, "tokenManagerPlugin", "",
    		"Token provider specific plugin name.")
    	// DEPRECATED. Flags for proxy configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/security.go

    	"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,
    		CAProviderName:                 caProviderEnv,
    		PilotCertProvider:              features.PilotCertProvider,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top