Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,690 for Warningf (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    	switch {
    	case errors.IsNotFound(err):
    		// ignore, authConfigMap is nil now
    		return nil
    	case errors.IsForbidden(err):
    		klog.Warningf("Unable to get configmap/%s in %s.  Usually fixed by "+
    			"'kubectl create rolebinding -n %s ROLEBINDING_NAME --role=%s --serviceaccount=YOUR_NS:YOUR_SA'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    	// If the current API Server location on disk doesn't match the expected API server, show a warning
    	if currentConfig.Clusters[currentCluster].Server != config.Clusters[expectedCluster].Server {
    		klog.Warningf("a kubeconfig file %q exists already but has an unexpected API Server URL: expected: %s, got: %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/reset.go

    		klog.V(1).Infof("[reset] Loaded client set from kubeconfig file: %s", opts.kubeconfigPath)
    		initCfg, err = configutil.FetchInitConfigurationFromCluster(client, nil, "reset", false, false)
    		if err != nil {
    			klog.Warningf("[reset] Unable to fetch the kubeadm-config ConfigMap from cluster: %v", err)
    		}
    	} else {
    		klog.V(1).Infof("[reset] Could not obtain a client set from the kubeconfig file: %s", opts.kubeconfigPath)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/join.go

    	if len(args) == 0 {
    		opt.externalcfg.Discovery.BootstrapToken = nil
    	} else {
    		if len(opt.cfgPath) == 0 && len(args) > 1 {
    			klog.Warningf("[preflight] WARNING: More than one API server endpoint supplied on command line %v. Using the first one.", args)
    		}
    		opt.externalcfg.Discovery.BootstrapToken.APIServerEndpoint = args[0]
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			// If the mount path could not be found, don't fail the unmount, but instead log a warning and proceed,
    			// using the value from deviceToDetach.DeviceMountPath, so that the device can be marked as unmounted
    			deviceMountPath = deviceToDetach.DeviceMountPath
    			klog.Warningf(deviceToDetach.GenerateMsgDetailed(fmt.Sprintf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/lease.go

    		e.Subsets = endpointsv1.RepackSubsets(e.Subsets)
    	}
    
    	if len(e.Subsets) != 0 && !portsCorrect {
    		// Reset ports.
    		e.Subsets[0].Ports = endpointPorts
    	}
    
    	klog.Warningf("Resetting endpoints for master service %q to %v", serviceName, masterIPs)
    	if shouldCreate {
    		if _, err = r.epAdapter.Create(corev1.NamespaceDefault, e); errors.IsAlreadyExists(err) {
    			err = nil
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    	fcIfc utilflowcontrol.Interface,
    	workEstimator flowcontrolrequest.WorkEstimatorFunc,
    	defaultRequestWaitLimit time.Duration,
    ) http.Handler {
    	if fcIfc == nil {
    		klog.Warningf("priority and fairness support not found, skipping")
    		return handler
    	}
    	initAPFOnce.Do(func() {
    		initMaxInFlight(0, 0)
    		// Fetching these gauges is delayed until after their underlying metric has been registered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs = append(allErrs, componentconfigs.Validate(c)...)
    	for _, certError := range ValidateCertValidity(c) {
    		klog.Warningf("WARNING: %s", certError.Error())
    	}
    	return allErrs
    }
    
    // ValidateAPIServer validates a APIServer object and collects all encountered errors
    func ValidateAPIServer(a *kubeadm.APIServer, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks.go

    	if addr == nil {
    		warnings = append(warnings, errors.Errorf("hostname \"%s\" could not be reached", hc.nodeName))
    	}
    	if err != nil {
    		warnings = append(warnings, errors.Wrapf(err, "hostname \"%s\"", hc.nodeName))
    	}
    	return warnings, errorList
    }
    
    // HTTPProxyCheck checks if https connection to specific host is going
    // to be done directly or over proxy. If proxy detected, it will return warning.
    type HTTPProxyCheck struct {
    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/phases/addons/dns/dns.go

    			// Errors in Corefile Migration is verified during preflight checks. This part will be executed when a user has chosen
    			// to ignore preflight check errors.
    			canMigrateCorefile = false
    			klog.Warningf("the CoreDNS Configuration was not migrated: %v. The existing CoreDNS Corefile configuration has been retained.", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top