Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tlsCertFile (0.27 sec)

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

    	ProviderID string
    	// tlsCertFile is the file containing x509 Certificate for HTTPS.  (CA cert,
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. 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(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

                  value: "--caCertFile=/server-certs/root-cert.pem"
                - path: spec.template.spec.containers.[name:discovery].args[1002]
                  value: "--tlsCertFile=/server-certs/cert-chain.pem"
                - path: spec.template.spec.containers.[name:discovery].args[1003]
                  value: "--tlsKeyFile=/server-certs/key.pem"
                - path: spec.template.spec.volumes[-1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    		"The duration to cache 'unauthorized' responses from the webhook authorizer.")
    
    	fs.StringVar(&c.TLSCertFile, "tls-cert-file", c.TLSCertFile, ""+
    		"File containing x509 Certificate used for serving HTTPS (with intermediate certs, if any, concatenated after server cert). "+
    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. 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"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top