Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for TLSMinVersion (0.22 sec)

  1. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	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)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				Address:            "",
    				Port:               0,
    				ReadOnlyPort:       0,
    				TLSCertFile:        "",
    				TLSPrivateKeyFile:  "",
    				TLSCipherSuites:    []string{},
    				TLSMinVersion:      "",
    				RotateCertificates: false,
    				ServerTLSBootstrap: false,
    				Authentication: v1beta1.KubeletAuthentication{
    					X509: v1beta1.KubeletX509Authentication{ClientCAFile: ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. 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",
    		"KernelMemcgNotification",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	TLSCipherSuites []string
    	// TLSMinVersion is the minimum TLS version supported.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	TLSMinVersion string
    	// rotateCertificates enables client certificate rotation. The Kubelet will request a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    			"Insecure values: "+strings.Join(tlsCipherInsecureValues, ", ")+".")
    	tlsPossibleVersions := cliflag.TLSPossibleVersions()
    	fs.StringVar(&c.TLSMinVersion, "tls-min-version", c.TLSMinVersion,
    		"Minimum TLS version supported. "+
    			"Possible values: "+strings.Join(tlsPossibleVersions, ", "))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    				if tlsCipherSuites[i] == cipherID {
    					klog.InfoS("Use of insecure cipher detected.", "cipher", cipherName)
    				}
    			}
    		}
    	}
    
    	minTLSVersion, err := cliflag.TLSVersion(kc.TLSMinVersion)
    	if err != nil {
    		return nil, err
    	}
    
    	if minTLSVersion == tls.VersionTLS13 {
    		if len(tlsCipherSuites) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    										Default: "",
    										Type:    []string{"string"},
    										Format:  "",
    									},
    								},
    							},
    						},
    					},
    					"tlsMinVersion": {
    						SchemaProps: spec.SchemaProps{
    							Description: "tlsMinVersion is the minimum TLS version supported. Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants). Default: \"\"",
    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top