Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for tlsOptions (0.16 sec)

  1. security/pkg/nodeagent/caclient/providers/citadel/client.go

    type CitadelClient struct {
    	// It means enable tls connection to Citadel if this is not nil.
    	tlsOpts  *TLSOptions
    	client   pb.IstioCertificateServiceClient
    	conn     *grpc.ClientConn
    	provider credentials.PerRPCCredentials
    	opts     *security.Options
    }
    
    type TLSOptions struct {
    	RootCert string
    	Key      string
    	Cert     string
    }
    
    // NewCitadelClient create a CA client for Citadel.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/options.go

    	// Optional TLS configuration
    	TLSOptions TLSOptions
    
    	// The listening address for secured gRPC. If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	SecureGRPCAddr string
    }
    
    type InjectionOptions struct {
    	// Directory of injection related config files.
    	InjectionDirectory string
    }
    
    // TLSOptions is optional TLS parameters for Istiod server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.CaCertFile, "caCertFile", "",
    		"File containing the x509 Server CA Certificate")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.CertFile, "tlsCertFile", "",
    		"File containing the x509 Server Certificate")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.KeyFile, "tlsKeyFile", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. pilot/pkg/grpc/tls.go

    	sec_model "istio.io/istio/pkg/model"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    // TLSOptions include TLS options that a grpc client uses to connect with server.
    type TLSOptions struct {
    	RootCert      string
    	Key           string
    	Cert          string
    	ServerAddress string
    	SAN           string
    }
    
    func getTLSDialOption(opts *TLSOptions) (grpc.DialOption, error) {
    	rootCert, err := getRootCertificate(opts.RootCert)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/go/printer/testdata/alignment.golden

    	VolumePlugins:			ProbeVolumePlugins(),
    	NetworkPlugins:			ProbeNetworkPlugins(),
    	NetworkPluginName:		s.NetworkPluginName,
    	StreamingConnectionIdleTimeout:	s.StreamingConnectionIdleTimeout,
    	TLSOptions:			tlsOptions,
    	ImageGCPolicy:			imageGCPolicy, imageGCPolicy,
    	Cloud:				cloud,
    	NodeStatusUpdateFrequency:	s.NodeStatusUpdateFrequency,
    }
    
    var a = A{
    	Long:					1,
    	LongLong:				1,
    	LongLongLong:				1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/alignment.input

        NetworkPlugins:                 ProbeNetworkPlugins(),
        NetworkPluginName:              s.NetworkPluginName,
        StreamingConnectionIdleTimeout: s.StreamingConnectionIdleTimeout,
        TLSOptions:                     tlsOptions,
        ImageGCPolicy:                  imageGCPolicy,imageGCPolicy,
        Cloud:                          cloud,
        NodeStatusUpdateFrequency: s.NodeStatusUpdateFrequency,
    }
    
    var a = A{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  7. pkg/istio-agent/plugins.go

    	// Using citadel CA
    	var tlsOpts *citadel.TLSOptions
    	var err error
    	// Special case: if Istiod runs on a secure network, on the default port, don't use TLS
    	// TODO: may add extra cases or explicit settings - but this is a rare use cases, mostly debugging
    	if strings.HasSuffix(opts.CAEndpoint, ":15010") {
    		log.Warn("Debug mode or IP-secure network")
    	} else {
    		tlsOpts = &citadel.TLSOptions{}
    		tlsOpts.RootCert, err = a.FindRootCAForCA()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-discovery/app/options.go

    	if err := validation.ValidateMaxServerConnectionAge(serverArgs.KeepaliveOptions.MaxServerConnectionAge); err != nil {
    		return err
    	}
    
    	_, err := bootstrap.TLSCipherSuites(serverArgs.ServerOptions.TLSOptions.TLSCipherSuites)
    
    	// TODO: add validation for other flags
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/webhook.go

    		return
    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/grpc/grpc.go

    	defaultInitialWindowSize           = 1024 * 1024 // default gRPC ConnWindowSize
    )
    
    // ClientOptions returns consistent grpc dial options with custom dial options
    func ClientOptions(options *istiokeepalive.Options, tlsOpts *TLSOptions) ([]grpc.DialOption, error) {
    	if options == nil {
    		options = istiokeepalive.DefaultOption()
    	}
    	keepaliveOption := grpc.WithKeepaliveParams(keepalive.ClientParameters{
    		Time:    options.Time,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top