Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,985 for Warningf (0.39 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.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
    - 11.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top