Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateConfigInfo (0.35 sec)

  1. cmd/kubeadm/app/discovery/file/file.go

    	if err != nil {
    		return nil, err
    	}
    	return ValidateConfigInfo(config, discoveryTimeout)
    }
    
    // ValidateConfigInfo connects to the API Server and makes sure it can talk
    // securely to the API Server using the provided CA cert/client certificates  and
    // optionally refreshes the cluster-info information from the cluster-info ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/discovery/https/https.go

    	kubeconfig, err := io.ReadAll(response.Body)
    	if err != nil {
    		return nil, err
    	}
    
    	config, err := clientcmd.Load(kubeconfig)
    	if err != nil {
    		return nil, err
    	}
    	return file.ValidateConfigInfo(config, discoveryTimeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 24 04:29:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top