Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for TLSPrivateKeyFile (0.34 sec)

  1. pkg/kubelet/apis/config/helpers.go

    	paths := []*string{}
    	paths = append(paths, &kc.StaticPodPath)
    	paths = append(paths, &kc.Authentication.X509.ClientCAFile)
    	paths = append(paths, &kc.TLSCertFile)
    	paths = append(paths, &kc.TLSPrivateKeyFile)
    	paths = append(paths, &kc.ResolverConfig)
    	paths = append(paths, &kc.VolumePluginDir)
    	paths = append(paths, &kc.PodLogsDir)
    	return paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    				return nil, err
    			}
    
    			if err := keyutil.WriteKey(kc.TLSPrivateKeyFile, key); err != nil {
    				return nil, err
    			}
    
    			klog.V(4).InfoS("Using self-signed cert", "TLSCertFile", kc.TLSCertFile, "TLSPrivateKeyFile", kc.TLSPrivateKeyFile)
    		}
    	}
    
    	tlsCipherSuites, err := cliflag.TLSCipherSuites(kc.TLSCipherSuites)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				StaticPodURL:       "",
    				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)
  5. pkg/kubelet/apis/config/helpers_test.go

    	kubeletConfigurationPathFieldPaths = sets.New[string](
    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    	kubeletConfigurationNonPathFieldPaths = sets.New[string](
    		"Address",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    			return kubeClient, nil
    		}
    	}
    	certificateStore, err := certificate.NewFileStore(
    		"kubelet-server",
    		certDirectory,
    		certDirectory,
    		kubeCfg.TLSCertFile,
    		kubeCfg.TLSPrivateKeyFile)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize server certificate store: %v", err)
    	}
    	var certificateRenewFailure = compbasemetrics.NewCounter(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// if any, concatenated after server cert). If tlsCertFile and
    	// tlsPrivateKeyFile are not provided, a self-signed certificate
    	// and key are generated for the public address and saved to the directory
    	// passed to the Kubelet's --cert-dir flag.
    	TLSCertFile string
    	// tlsPrivateKeyFile is the file containing x509 private key matching tlsCertFile
    	TLSPrivateKeyFile string
    	// TLSCipherSuites is the list of allowed cipher suites for the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    		"are generated for the public address and saved to the directory passed to --cert-dir.")
    	fs.StringVar(&c.TLSPrivateKeyFile, "tls-private-key-file", c.TLSPrivateKeyFile, "File containing x509 private key matching --tls-cert-file.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. pkg/features/kube_features.go

    	// owner: @zhangweikop
    	// beta: v1.31
    	//
    	// Enable kubelet tls server to update certificate if the specified certificate files are changed.
    	// This feature is useful when specifying tlsCertFile & tlsPrivateKeyFile in kubelet Configuration.
    	// No effect for other cases such as using serverTLSbootstap.
    	ReloadKubeletServerCertificateFile featuregate.Feature = "ReloadKubeletServerCertificateFile"
    
    	// owner: @mikedanese
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"tlsPrivateKeyFile": {
    						SchemaProps: spec.SchemaProps{
    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