Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Infoln (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/kubeadm/app/cmd/join.go

    	// and validates JoinConfiguration
    	if opt.externalcfg.NodeRegistration.Name == "" {
    		klog.V(1).Infoln("[preflight] found NodeName empty; using OS hostname as NodeName")
    	}
    
    	if opt.externalcfg.ControlPlane != nil && opt.externalcfg.ControlPlane.LocalAPIEndpoint.AdvertiseAddress == "" {
    		klog.V(1).Infoln("[preflight] found advertiseAddress empty; using default interface's IP address as advertiseAddress")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    
    	// Configure the kubelet. In this short timeframe, kubeadm is trying to stop/restart the kubelet
    	// Try to stop the kubelet service so no race conditions occur when configuring it
    	if !data.DryRun() {
    		klog.V(1).Infoln("[kubelet-start] Stopping the kubelet")
    		kubeletphase.TryStopKubelet()
    	} else {
    		fmt.Println("[kubelet-start] Would stop the kubelet")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/manifests.go

    func CreateInitStaticPodManifestFiles(manifestDir, patchesDir string, cfg *kubeadmapi.InitConfiguration, isDryRun bool) error {
    	klog.V(1).Infoln("[control-plane] creating static Pod files")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    	// show the migration changes
    	klog.V(2).Infof("the CoreDNS configuration has been migrated and applied: %v.", updatedCorefile)
    	klog.V(2).Infoln("the old migration has been saved in the CoreDNS ConfigMap under the name [Corefile-backup]")
    	klog.V(2).Infoln("The changes in the new CoreDNS Configuration are as follows:")
    	for _, change := range changes {
    		klog.V(2).Infof("%v", change.ToString())
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    // case the upstream upgrade fails, we delegate communication to the passed
    // in "w" ResponseWriter.
    func (h *TunnelingHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	klog.V(4).Infoln("TunnelingHandler ServeHTTP")
    
    	spdyProtocols := spdyProtocolsFromWebsocketProtocols(req)
    	if len(spdyProtocols) == 0 {
    		http.Error(w, "unable to upgrade: no tunneling spdy protocols provided", http.StatusBadRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/certs.go

    // If the PKI assets already exists in the target folder, they are used only if evaluated equal; otherwise an error is returned.
    func CreatePKIAssets(cfg *kubeadmapi.InitConfiguration) error {
    	klog.V(1).Infoln("creating PKI assets")
    
    	// This structure cannot handle multilevel CA hierarchies.
    	// This isn't a problem right now, but may become one in the future.
    
    	var certList Certificates
    
    	if cfg.Etcd.Local == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top