Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewKubeletClientCertificateManager (0.42 sec)

  1. pkg/kubelet/certificate/kubelet.go

    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    // client that can be used to sign new certificates (or rotate). If a CSR
    // client is set later, it may begin rotating/renewing the client cert.
    func NewKubeletClientCertificateManager(
    	certDirectory string,
    	nodeName types.NodeName,
    	bootstrapCertData []byte,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		config := certConfig
    		if current != nil {
    			config = clientConfig
    		}
    		return clientset.NewForConfig(config)
    	}
    
    	return kubeletcertificate.NewKubeletClientCertificateManager(
    		certDir,
    		nodeName,
    
    		// this preserves backwards compatibility with kubeadm which passes
    		// a high powered certificate to the kubelet as --kubeconfig and expects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top