Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for TLSCipherSuites (0.16 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. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]string, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	if in.TLSCipherSuites != nil {
    		in, out := &in.TLSCipherSuites, &out.TLSCipherSuites
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	out.Authentication = in.Authentication
    	out.Authorization = in.Authorization
    	if in.ClusterDNS != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    		}
    	}
    
    	tlsCipherSuites, err := cliflag.TLSCipherSuites(kc.TLSCipherSuites)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(tlsCipherSuites) > 0 {
    		insecureCiphers := cliflag.InsecureTLSCiphers()
    		for i := 0; i < len(tlsCipherSuites); i++ {
    			for cipherName, cipherID := range insecureCiphers {
    				if tlsCipherSuites[i] == cipherID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				StaticPodURLHeader: map[string][]string{},
    				Address:            "",
    				Port:               0,
    				ReadOnlyPort:       0,
    				TLSCertFile:        "",
    				TLSPrivateKeyFile:  "",
    				TLSCipherSuites:    []string{},
    				TLSMinVersion:      "",
    				RotateCertificates: false,
    				ServerTLSBootstrap: false,
    				Authentication: v1beta1.KubeletAuthentication{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.Address = in.Address
    	out.Port = in.Port
    	out.ReadOnlyPort = in.ReadOnlyPort
    	out.TLSCertFile = in.TLSCertFile
    	out.TLSPrivateKeyFile = in.TLSPrivateKeyFile
    	out.TLSCipherSuites = *(*[]string)(unsafe.Pointer(&in.TLSCipherSuites))
    	out.TLSMinVersion = in.TLSMinVersion
    	out.RotateCertificates = in.RotateCertificates
    	out.ServerTLSBootstrap = in.ServerTLSBootstrap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/apis/config/helpers_test.go

    		"Logging.Options.Text.OutputRoutingOptions.SplitStream",
    		"Logging.VModule[*].FilePattern",
    		"Logging.VModule[*].Verbosity",
    		"Logging.Verbosity",
    		"TLSCipherSuites[*]",
    		"TLSMinVersion",
    		"IPTablesDropBit",
    		"IPTablesMasqueradeBit",
    		"ImageGCHighThresholdPercent",
    		"ImageGCLowThresholdPercent",
    		"ImageMinimumGCAge.Duration",
    		"ImageMaximumGCAge.Duration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	// tlsPrivateKeyFile is the file containing x509 private key matching tlsCertFile
    	TLSPrivateKeyFile string
    	// TLSCipherSuites is the list of allowed cipher suites for the server.
    	// Note that TLS 1.3 ciphersuites are not configurable.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	TLSCipherSuites []string
    	// TLSMinVersion is the minimum TLS version supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		if err != nil {
    			return err
    		}
    	} else if s.ServerCert.GeneratedCert != nil {
    		c.Cert = s.ServerCert.GeneratedCert
    	}
    
    	if len(s.CipherSuites) != 0 {
    		cipherSuites, err := cliflag.TLSCipherSuites(s.CipherSuites)
    		if err != nil {
    			return err
    		}
    		c.CipherSuites = cipherSuites
    	}
    
    	var err error
    	c.MinTLSVersion, err = cliflag.TLSVersion(s.MinTLSVersion)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top