Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,290 for Warningf (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for customresourcedefinitions, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	if watchListOptions, hasWatchListOptionsPrepared, watchListOptionsErr := watchlist.PrepareWatchListOptionsFromListOptions(opts); watchListOptionsErr != nil {
    		klog.Warningf("Failed preparing watchlist options for examples, falling back to the standard LIST semantics, err = %v", watchListOptionsErr)
    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/registry/scheduling/rest/storage_scheduling.go

    							return false, nil
    						}
    						return false, err
    					} else {
    						// Unable to get the priority class for reasons other than "not found".
    						klog.Warningf("unable to get PriorityClass %v: %v. Retrying...", pc.Name, err)
    						return false, nil
    					}
    				}
    			}
    			klog.Infof("all system priority classes are created successfully or already exist.")
    			return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. pkg/volume/fc/fc_util.go

    	if pathExists, pathErr := mount.PathExists(path); pathErr != nil {
    		return pathExists, fmt.Errorf("error checking if path exists: %w", pathErr)
    	} else if !pathExists {
    		klog.Warningf("Warning: Unmap skipped because path does not exist: %v", path)
    		return pathExists, nil
    	}
    	return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		context.TODO(),
    		kubeadmconstants.CoreDNSConfigMap,
    		metav1.GetOptions{},
    	); err != nil && apierrors.IsNotFound(err) {
    		missingCoreDNSConfigMap = true
    	}
    	if missingCoreDNSConfigMap {
    		klog.Warningf("the ConfigMaps %q in the namespace %q were not found. "+
    			"Assuming that a DNS server was not deployed for this cluster. "+
    			"Note that once 'kubeadm upgrade apply' supports phases you "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/resetconfiguration.go

    		if err != nil {
    			return err
    		}
    		klog.V(1).Infof("detected and using CRI socket: %s", cfg.CRISocket)
    	} else {
    		if !strings.HasPrefix(cfg.CRISocket, kubeadmapiv1.DefaultContainerRuntimeURLScheme) {
    			klog.Warningf("Usage of CRI endpoints without URL scheme is deprecated and can cause kubelet errors "+
    				"in the future. Automatically prepending scheme %q to the \"criSocket\" with value %q. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/features/features.go

    		featureSpec, ok := (*f)[k]
    		if !ok {
    			return nil, errors.Errorf("unrecognized feature-gate key: %s", k)
    		}
    
    		if featureSpec.PreRelease == featuregate.Deprecated {
    			klog.Warningf("Setting deprecated feature gate %s=%s. It will be removed in a future release.", k, v)
    		}
    
    		boolValue, err := strconv.ParseBool(v)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/initconfiguration.go

    				return nil, err
    			}
    			continue
    		}
    
    		// If the group is neither a kubeadm core type or of a supported component config group, we dump a warning about it being ignored
    		if !componentconfigs.Scheme.IsGroupRegistered(gvk.Group) {
    			klog.Warningf("[config] WARNING: Ignored YAML document with GroupVersionKind %v\n", gvk)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    			v.Err = appendError(v.Err, t.Err)
    			v.Warning = appendError(v.Warning, t.Warning)
    		default:
    			v.Err = appendError(v.Err, t)
    		}
    	}
    	return v
    }
    
    // AppendWarningf appends a formatted warning string
    // nolint: unparam
    func AppendWarningf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, Warningf(format, a...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests.go

    			if isValidAuthzMode(requested) {
    				mode = append(mode, requested)
    			} else {
    				klog.Warningf("ignoring unknown kube-apiserver authorization-mode %q", requested)
    			}
    		}
    
    		// only return the user provided mode if at least one was valid
    		if len(mode) > 0 {
    			if !compareAuthzModes(defaultMode, mode) {
    				klog.Warningf("the default kube-apiserver authorization-mode is %q; using %q",
    					strings.Join(defaultMode, ","),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top