Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FetchInitConfigurationFromCluster (0.24 sec)

  1. cmd/kubeadm/app/cmd/certs.go

    	if cfgPath == "" && client != nil {
    		internalcfg, err := configutil.FetchInitConfigurationFromCluster(client, printer, logPrefix, false, false)
    		if err == nil {
    			printer.Println() // add empty line to separate the FetchInitConfigurationFromCluster output from the command output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/common.go

    	klog.V(1).Info("running preflight checks")
    	if err := runPreflightChecks(client, ignorePreflightErrorsSet, printer); err != nil {
    		return nil, nil, nil, nil, err
    	}
    
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, printer, "upgrade/config", false, false)
    	if err != nil {
    		if apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/node.go

    	//    (worker node), we are not reading local API address and the CRI socket from the node object
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, nil, "upgrade", !isControlPlaneNode, false)
    	if err != nil {
    		return nil, errors.Wrap(err, "unable to fetch the kubeadm-config ConfigMap")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top