Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EnsureAuthenticationInfoAreEmbedded (0.28 sec)

  1. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    		return true
    	}
    
    	return false
    }
    
    // EnsureAuthenticationInfoAreEmbedded check if some authentication info are provided as external key/certificate
    // files, and eventually embeds such files into the kubeconfig file
    func EnsureAuthenticationInfoAreEmbedded(config *clientcmdapi.Config) error {
    	authInfo := getCurrentAuthInfo(config)
    	if authInfo == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/discovery/file/file.go

    		// the kubeconfig file will be stored in /etc/kubernetes/boostrap-kubelet.conf
    		if err := kubeconfigutil.EnsureAuthenticationInfoAreEmbedded(config); err != nil {
    			return nil, err
    		}
    	} else {
    		// If the discovery file config does not contains authentication credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top