Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,118 for Warningf (0.3 sec)

  1. cmd/kubeadm/app/util/config/common.go

    func ChooseAPIServerBindAddress(bindAddress net.IP) (net.IP, error) {
    	ip, err := netutil.ResolveBindAddress(bindAddress)
    	if err != nil {
    		if netutil.IsNoRoutesError(err) {
    			klog.Warningf("WARNING: could not obtain a bind address for the API Server: %v; using: %s", err, constants.DefaultAPIServerBindAddress)
    			defaultIP := netutils.ParseIPSloppy(constants.DefaultAPIServerBindAddress)
    			if defaultIP == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/arguments.go

    		// Warn in all other cases, but don't error out. This can happen only if the user has edited the argument list by hand, so they might know what they are doing
    		if err != nil {
    			if i != 0 {
    				klog.Warningf("[kubeadm] WARNING: The component argument %q could not be parsed correctly. The argument must be of the form %q. Skipping...\n", arg, "--")
    			}
    			continue
    		}
    
    		args = append(args, kubeadmapi.Arg{Name: key, Value: val})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/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
    - 12K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/kubeconfig.go

    				SkipCRIDetect: true,
    			})
    			if err != nil {
    				return err
    			}
    
    			if validityPeriod > kubeadmconstants.CertificateValidityPeriod {
    				klog.Warningf("WARNING: the specified certificate validity period %v is longer than the default duration %v, this may increase security risks.",
    					validityPeriod, kubeadmconstants.CertificateValidityPeriod)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top