Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tlsCipherSuites (0.22 sec)

  1. 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)
  2. pilot/pkg/bootstrap/options.go

    	p.RegistryOptions.ClusterRegistriesNamespace = p.Namespace
    }
    
    func (p *PilotArgs) Complete() error {
    	cipherSuits, err := TLSCipherSuites(p.ServerOptions.TLSOptions.TLSCipherSuites)
    	if err != nil {
    		return err
    	}
    	p.ServerOptions.TLSOptions.CipherSuits = cipherSuits
    	return nil
    }
    
    func allCiphers() map[string]uint16 {
    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

    		"File containing the x509 private key matching --tlsCertFile")
    	c.PersistentFlags().StringSliceVar(&serverArgs.ServerOptions.TLSOptions.TLSCipherSuites, "tls-cipher-suites", nil,
    		"Comma-separated list of cipher suites for istiod TLS server. "+
    			"If omitted, the default Go cipher suites will be used. \n"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top