Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadOrDefaultJoinConfiguration (0.33 sec)

  1. cmd/kubeadm/app/util/config/joinconfiguration.go

    	if cfg != nil {
    		if err := SetAPIEndpointDynamicDefaults(&cfg.LocalAPIEndpoint); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // LoadOrDefaultJoinConfiguration takes a path to a config file and a versioned configuration that can serve as the default config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join.go

    		opt.externalcfg.Discovery.BootstrapToken = nil //NB. this could be removed when we get better control on args (e.g. phases without discovery should have NoArgs )
    	}
    
    	cfg, err := configutil.LoadOrDefaultJoinConfiguration(opt.cfgPath, opt.externalcfg, configutil.LoadOrDefaultConfigurationOptions{
    		SkipCRIDetect: opt.skipCRIDetect,
    	})
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top