Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,118 for Warningf (0.12 sec)

  1. cmd/kubeadm/app/discovery/file/file.go

    					// If the request is unauthorized, the cluster admin has not granted access to the cluster info configmap for unauthenticated users
    					// In that case, trust the cluster admin and do not refresh the cluster-info data
    					klog.Warningf("[discovery] Could not access the %s ConfigMap for refreshing the cluster-info information, but the TLS cert is valid so proceeding...\n", bootstrapapi.ConfigMapClusterInfo)
    					return true, nil
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/instancecount.go

    		// Something is egregiously wrong, just re-make the endpoints record.
    		e.Subsets = []corev1.EndpointSubset{{
    			Addresses: []corev1.EndpointAddress{{IP: ip.String()}},
    			Ports:     endpointPorts,
    		}}
    		klog.Warningf("Resetting endpoints for master service %q to %#v", serviceName, e)
    		_, err = r.epAdapter.Update(metav1.NamespaceDefault, e)
    		return err
    	}
    
    	if !skipMirrorChanged && ipCorrect && portsCorrect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    		klog.V(5).InfoSDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    	}
    }
    
    func (klogWrapper) Warning(args ...interface{}) {
    	klog.WarningDepth(klogWrapperDepth, args...)
    }
    
    func (klogWrapper) Warningln(args ...interface{}) {
    	klog.WarningDepth(klogWrapperDepth, fmt.Sprintln(args...))
    }
    
    func (klogWrapper) Warningf(format string, args ...interface{}) {
    	klog.WarningDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/attacher.go

    	if err != nil {
    		klog.Warningf("failed to get iscsi mounter: %v", err)
    		return "", err
    	}
    	return attacher.manager.AttachDisk(*mounter)
    }
    
    func (attacher *iscsiAttacher) GetDeviceMountPath(
    	spec *volume.Spec) (string, error) {
    	mounter, err := volumeSpecToMounter(spec, attacher.host, attacher.targetLocks, nil)
    	if err != nil {
    		klog.Warningf("failed to get iscsi mounter: %v", err)
    		return "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. pkg/volume/emptydir/empty_dir.go

    			// In this case, delete ready file and print a warning for it.
    			klog.Warningf("volume ready file dir %s exist, but volume dir %s does not. Remove ready dir", readyDir, dir)
    			if err := os.RemoveAll(readyDir); err != nil && !os.IsNotExist(err) {
    				klog.Warningf("failed to remove ready dir [%s]: %v", readyDir, err)
    			}
    		}
    	}
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/volume/fc/attacher.go

    	if err != nil {
    		klog.Warningf("failed to get fc mounter: %v", err)
    		return "", err
    	}
    	return attacher.manager.AttachDisk(*mounter)
    }
    
    func (attacher *fcAttacher) GetDeviceMountPath(
    	spec *volume.Spec) (string, error) {
    	mounter, err := volumeSpecToMounter(spec, attacher.host)
    	if err != nil {
    		klog.Warningf("failed to get fc mounter: %v", err)
    		return "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options.go

    			}
    			if completed.Authentication.ServiceAccounts.ExtendExpiration {
    				if completed.Authentication.ServiceAccounts.MaxExpiration < serviceaccount.WarnOnlyBoundTokenExpirationSeconds*time.Second {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi_util.go

    		if err != nil {
    			klog.Warningf("Warning: Failed to flush multipath device map: %s\nError: %v", mpathDevice, err)
    			// Fall through -- keep deleting the block devices
    		}
    		klog.V(4).Infof("Flushed multipath device: %s", mpathDevice)
    	}
    	for _, deviceName := range deviceNames {
    		err = deleteDevice(deviceName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/reader.go

    			lenientErr     error
    		)
    		_, gvk, lenientErr = lenientDecoder.Decode(policyDef, nil, policy)
    		if lenientErr != nil {
    			return nil, fmt.Errorf("failed lenient decoding: %w", lenientErr)
    		}
    		klog.Warningf("Audit policy contains errors, falling back to lenient decoding: %v", err)
    	}
    
    	// Ensure the policy file contained an apiVersion and kind.
    	gv := schema.GroupVersion{Group: gvk.Group, Version: gvk.Version}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 04:09:40 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	return out
    }
    
    // WarningHeader contains a single RFC2616 14.46 warnings header
    type WarningHeader struct {
    	// Codeindicates the type of warning. 299 is a miscellaneous persistent warning
    	Code int
    	// Agent contains the name or pseudonym of the server adding the Warning header.
    	// A single "-" is recommended when agent is unknown.
    	Agent string
    	// Warning text
    	Text string
    }
    
    // ParseWarningHeaders extract RFC2616 14.46
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
Back to top