Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Infoln (0.11 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    	fmt.Printf("[bootstrap-token] Creating the %q ConfigMap in the %q namespace\n", bootstrapapi.ConfigMapClusterInfo, metav1.NamespacePublic)
    
    	klog.V(1).Infoln("[bootstrap-token] loading admin kubeconfig")
    	adminConfig, err := clientcmd.LoadFromFile(file)
    	if err != nil {
    		return errors.Wrap(err, "failed to load admin kubeconfig")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    			if len(args) > 0 {
    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    			if err := validation.ValidateMixedArguments(tokenCmd.Flags()); err != nil {
    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	if err != nil {
    		return err
    	}
    
    	klog.V(1).Infoln("[upload-config] Uploading the kubelet component config to a ConfigMap")
    	if err = kubeletphase.CreateConfigMap(&cfg.ClusterConfiguration, client); err != nil {
    		return errors.Wrap(err, "error creating kubelet configuration ConfigMap")
    	}
    
    	klog.V(1).Infoln("[upload-config] Preserving the CRISocket information for the control-plane node")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/preflight.go

    }
    
    // checkUnsupportedPlugins checks if there are any plugins included in the current configuration
    // that are unsupported for migration.
    func checkUnsupportedPlugins(client clientset.Interface) error {
    	klog.V(1).Infoln("validating if there are any unsupported CoreDNS plugins in the Corefile")
    	_, corefile, currentInstalledCoreDNSversion, err := dns.GetCoreDNSInfo(client)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/plan.go

    	klog.V(1).Infoln("[upgrade/plan] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/plan] retrieving configuration from cluster")
    	client, versionGetter, initCfg, upgradeCfg, err := enforceRequirements(flagSet, flags.applyPlanFlags, args, false, false, printer)
    	if err != nil {
    		return err
    	}
    
    	// Compute which upgrade possibilities there are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/completion.go

    	-e "s/\\\$(type${RWORD}/\$(__kubeadm_type/g" \
    	<<'BASH_COMPLETION_EOF'
    `
    	klog.V(1).Infoln("[completion] writing completion code for Zsh")
    	out.Write([]byte(zshInitialization))
    
    	buf := new(bytes.Buffer)
    	kubeadm.GenBashCompletion(buf)
    	klog.V(1).Infoln("[completion] writing completion code for Bash")
    	out.Write(buf.Bytes())
    
    	zshTail := `
    BASH_COMPLETION_EOF
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	// Start with general checks
    	klog.V(1).Infoln("[preflight] Running general checks")
    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// Continue with more specific checks based on the init configuration
    	klog.V(1).Infoln("[preflight] Running configuration dependant checks")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks.go

    func (ContainerRuntimeCheck) Name() string {
    	return "CRI"
    }
    
    // Check validates the container runtime
    func (crc ContainerRuntimeCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating the container runtime")
    	if err := crc.runtime.IsRunning(); err != nil {
    		errorList = append(errorList, err)
    	}
    	return warnings, errorList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("cleanup-node phase invoked with an invalid data struct")
    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top