Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TLSMinVersion (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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