Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 760 for Warningf (0.12 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return
    	}
    
    	if r.svcQueue.NumRequeues(key) < maxRetries {
    		klog.V(2).InfoS("Error syncing Service, retrying", "service", key, "err", err)
    		r.svcQueue.AddRateLimited(key)
    		return
    	}
    
    	klog.Warningf("Dropping Service %q out of the queue: %v", key, err)
    	r.svcQueue.Forget(key)
    	runtime.HandleError(err)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certs.go

    // and validates that the cert is a CA. Failure to load the key produces a warning.
    func validateCACertAndKey(l certKeyLocation) error {
    	if err := validateCACert(l); err != nil {
    		return err
    	}
    
    	_, err := pkiutil.TryLoadKeyFromDisk(l.pkiDir, l.caBaseName)
    	if err != nil {
    		klog.Warningf("assuming external key for %s: %v", l.uxName, err)
    	}
    	return 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)
  3. pkg/kubeapiserver/options/authentication.go

    			if o.TokenSuccessCacheTTL > 0 && o.WebHook.CacheTTL < o.TokenSuccessCacheTTL {
    				klog.Warningf("the webhook cache ttl of %s is shorter than the overall cache ttl of %s for successful token authentication attempts.", o.WebHook.CacheTTL, o.TokenSuccessCacheTTL)
    			}
    			if o.TokenFailureCacheTTL > 0 && o.WebHook.CacheTTL < o.TokenFailureCacheTTL {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/configset.go

    	configMap, err := apiclient.GetConfigMapWithShortRetry(client, metav1.NamespaceSystem, cmName)
    	if err != nil {
    		if !mustExist && (apierrors.IsNotFound(err) || apierrors.IsForbidden(err)) {
    			klog.Warningf("Warning: No %s config is loaded. Continuing without it: %v", h.GroupVersion, err)
    			return nil, nil
    		}
    		return nil, err
    	}
    
    	configData, ok := configMap.Data[cmKey]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/imagepolicy/admission.go

    		a.responseCache.Add(string(cacheKey), review.Status, a.statusTTL(review.Status))
    	}
    
    	for k, v := range review.Status.AuditAnnotations {
    		if err := attributes.AddAnnotation(AuditKeyPrefix+k, v); err != nil {
    			klog.Warningf("failed to set admission audit annotation %s to %s: %v", AuditKeyPrefix+k, v, err)
    		}
    	}
    	if !review.Status.Allowed {
    		if len(review.Status.Reason) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. pkg/volume/local/local.go

    	mountOptions := util.MountOptionFromSpec(spec, options...)
    	err = dm.mounter.FormatAndMount(devicePath, deviceMountPath, fstype, mountOptions)
    	if err != nil {
    		if rmErr := os.Remove(deviceMountPath); rmErr != nil {
    			klog.Warningf("local: failed to remove %s: %v", deviceMountPath, rmErr)
    		}
    		return fmt.Errorf("local: failed to mount device %s at %s (fstype: %s), error %w", devicePath, deviceMountPath, fstype, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top