Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 760 for Warningf (0.15 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    				addStrictDecodingWarnings(req.Context(), strictError.Errors())
    			case isStrictError && validationDirective == metav1.FieldValidationIgnore:
    				klog.Warningf("unexpected strict error when field validation is set to ignore")
    				fallthrough
    			default:
    				err = transformDecodeError(scope.Typer, err, original, gvk, body)
    				scope.err(err, w, req)
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/kubemark/controller.go

    	}
    
    	return err
    }
    
    func (kubemarkController *KubemarkController) RemoveNodeFromNodeGroup(nodeGroup string, node string) error {
    	pod := kubemarkController.getPodByName(node)
    	if pod == nil {
    		klog.Warningf("Can't delete node %s from nodegroup %s. Node does not exist.", node, nodeGroup)
    		return nil
    	}
    	if pod.ObjectMeta.Labels[nodeGroupLabel] != nodeGroup {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/volume/portworx/portworx_util.go

    	locator.VolumeLabels[pvcNamespaceLabel] = p.options.PVC.Namespace
    
    	for k, v := range p.options.PVC.Annotations {
    		if _, present := spec.VolumeLabels[k]; present {
    			klog.Warningf("not saving annotation: %s=%s in spec labels due to an existing key", k, v)
    			continue
    		}
    		spec.VolumeLabels[k] = v
    	}
    
    	volumeID, err := driver.Create(locator, source, spec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	// to log the stacktrace to allow debugging if that will happen.
    	// OTOH, we don't want to spam logs with it.
    	// So we try to log it at most once per second.
    	if shouldLogCacheInvalidation(time.Now()) {
    		klog.Warningf("Unexpected cache invalidation for %#v\n%s", o.object, string(debug.Stack()))
    	}
    	o.serializations.Store(make(serializationsCache))
    }
    
    // The following functions implement metav1.Object interface:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K 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