Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,986 for Warningf (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		if err := removeContainers(r.CRISocketPath()); err != nil {
    			klog.Warningf("[reset] Failed to remove containers: %v\n", err)
    		}
    	} else {
    		fmt.Println("[reset] Would remove Kubernetes-managed containers")
    	}
    
    	// Remove contents from the config and pki directories
    	if certsDir != kubeadmapiv1.DefaultCertificatesDir {
    		klog.Warningf("[reset] WARNING: Cleaning a non-default certificates directory: %q\n", certsDir)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    		key := h.Name + "/" + k
    		if err := attr.Attributes.AddAnnotation(key, v); err != nil {
    			klog.Warningf("Failed to set admission audit annotation %s to %s for validating webhook %s: %v", key, v, h.Name, err)
    		}
    	}
    	for _, w := range result.Warnings {
    		warning.AddWarning(ctx, "", w)
    	}
    	if result.Allowed {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	for k, v := range result.AuditAnnotations {
    		key := h.Name + "/" + k
    		if err := attr.Attributes.AddAnnotation(key, v); err != nil {
    			klog.Warningf("Failed to set admission audit annotation %s to %s for mutating webhook %s: %v", key, v, h.Name, err)
    		}
    	}
    	for _, w := range result.Warnings {
    		warning.AddWarning(ctx, "", w)
    	}
    
    	if !result.Allowed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    			if !r.DryRun() {
    				err := etcdphase.RemoveStackedEtcdMemberFromCluster(r.Client(), cfg)
    				if err != nil {
    					klog.Warningf("[reset] Failed to remove etcd member: %v, please manually remove this etcd member using etcdctl", err)
    				} else {
    					if err := CleanDir(etcdDataDir); err != nil {
    						klog.Warningf("[reset] Failed to delete contents of the etcd directory: %q, error: %v", etcdDataDir, err)
    					} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		insecureCiphers := flag.InsecureTLSCiphers()
    		for i := 0; i < len(s.CipherSuites); i++ {
    			for cipherName, cipherID := range insecureCiphers {
    				if s.CipherSuites[i] == cipherID {
    					klog.Warningf("Use of insecure cipher '%s' detected.", cipherName)
    				}
    			}
    		}
    	}
    
    	if s.ClientCA != nil {
    		// Populate PeerCertificates in requests, but don't reject connections without certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    			if err != nil {
    				if s.TolerateInClusterLookupFailure {
    					klog.Warningf("Error looking up in-cluster authentication configuration: %v", err)
    					klog.Warning("Continuing without authentication configuration. This may treat all requests as anonymous.")
    					klog.Warning("To require authentication configuration lookup to succeed, set --authentication-tolerate-lookup-failure=false")
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    		if err := strict.VerifyUnmarshalStrict([]*runtime.Scheme{kubeadmscheme.Scheme}, gvk, bytes); err != nil {
    			klog.Warning(err.Error())
    		}
    
    		if kubeadmutil.GroupVersionKindsHasInitConfiguration(gvk) || kubeadmutil.GroupVersionKindsHasClusterConfiguration(gvk) {
    			klog.Warningf("[config] WARNING: YAML document with GroupVersionKind %v is deprecated for upgrade, please use config file with kind of UpgradeConfiguration instead \n", gvk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		// TODO: Need to check if this device file is actually the expected bind mount
    		if file.Mode()&os.ModeDevice == os.ModeDevice {
    			klog.Warningf("Warning: Map skipped because bind mount already exist on the path: %v", linkPath)
    			return nil
    		}
    
    		klog.Warningf("Warning: file %s is already exist but not mounted, skip creating file", linkPath)
    	}
    
    	// Bind mount file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/version.go

    				klog.Warningf("could not fetch a Kubernetes version from the internet: %v", err)
    				klog.Warningf("falling back to the local client version: %s", clientVersion)
    				return kubernetesReleaseVersion(clientVersion, fetcher)
    			}
    		}
    
    		if clientVersionErr != nil {
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute.go

    		return ""
    	}
    	etcdVersion, warning, err := kubeadmconstants.EtcdSupportedVersion(kubeadmconstants.SupportedEtcdVersion, kubernetesVersion)
    	if err != nil {
    		klog.Warningf("[upgrade/versions] could not retrieve an etcd version for the target Kubernetes version: %v", err)
    		return "N/A"
    	}
    	if warning != nil {
    		klog.V(1).Infof("[upgrade/versions] WARNING: %v", warning)
    	}
    	return etcdVersion.String()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top