Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,885 for info2 (0.07 sec)

  1. pkg/kubelet/cm/dra/manager.go

    			// Add the prepared CDI devices to the claim info
    			err := m.cache.withLock(func() error {
    				info, exists := m.cache.get(claim.Name, claim.Namespace)
    				if !exists {
    					return fmt.Errorf("unable to get claim info for claim %s in namespace %s", claim.Name, claim.Namespace)
    				}
    				if err := info.setCDIDevices(pluginName, result.GetCDIDevices()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cni/pkg/install/install.go

    			return err
    		}
    		installLog.Info("Istio CNI configuration and binaries validated/reinstalled.")
    	}
    }
    
    // Cleanup remove Istio CNI's config, kubeconfig file, and binaries.
    func (in *Installer) Cleanup() error {
    	installLog.Info("Cleaning up.")
    	if len(in.cniConfigFilepath) > 0 && file.Exists(in.cniConfigFilepath) {
    		if in.cfg.ChainedCNIPlugin {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/content/content.go

    	if err != nil {
    		return nil, err
    	}
    
    	if len(result.SkippedAnalyzers) > 0 {
    		log.Infof("Skipped analyzers:")
    		for _, a := range result.SkippedAnalyzers {
    			log.Infof("\t: %s", a)
    		}
    	}
    	if len(result.ExecutedAnalyzers) > 0 {
    		log.Infof("Executed analyzers:")
    		for _, a := range result.ExecutedAnalyzers {
    			log.Infof("\t: %s", a)
    		}
    	}
    
    	// Get messages for output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    			if err != nil {
    				return fmt.Errorf("failed to get proxy config: %v", err)
    			}
    			if out, err := protomarshal.ToYAML(proxyConfig); err != nil {
    				log.Infof("Failed to serialize to YAML: %v", err)
    			} else {
    				log.Infof("Effective config: %s", out)
    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	if operatorRevision != "" && operatorRevision != iop.Spec.Revision {
    		scope.Infof("Ignoring IstioOperator CR %s with revision %s, since operator revision is %s.", iopName, iop.Spec.Revision, operatorRevision)
    		return reconcile.Result{}, nil
    	}
    	if iop.Annotations != nil {
    		if ir := iop.Annotations[IgnoreReconcileAnnotation]; ir == "true" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/predicate.go

    		case *PredicateFailureError:
    			reason = re.PredicateName
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		case *InsufficientResourceError:
    			reason = fmt.Sprintf("OutOf%s", re.ResourceName)
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/wait.go

    					if cond.Status == apiextensions.ConditionTrue {
    						scope.Infof("established CRD %s", crdName)
    						continue descriptor
    					}
    				case apiextensions.NamesAccepted:
    					if cond.Status == apiextensions.ConditionFalse {
    						scope.Warnf("name conflict for %v: %v", crdName, cond.Reason)
    					}
    				}
    			}
    			scope.Infof("missing status condition for %q", crdName)
    			return false, nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. pkg/hbone/server.go

    		log.Errorf("failed to dial upstream: %v", err)
    		return true
    	}
    	log.Infof("Connected to %v", r.Host)
    	w.WriteHeader(http.StatusOK)
    
    	wg := sync.WaitGroup{}
    	wg.Add(1)
    	go func() {
    		// downstream (hbone client) <-- upstream (app)
    		copyBuffered(w, dst, log.WithLabels("name", "dst to w"))
    		err = r.Body.Close()
    		if err != nil {
    			log.Infof("connection to hbone client is not closed: %v", err)
    		}
    		wg.Done()
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    	if err != nil {
    		if !os.IsNotExist(err) {
    			return nil, fmt.Errorf("failed to get file info: %v", err)
    		}
    
    		// File does not exist.
    		if certSignerDomain == "" {
    			log.Infof("CA cert file %q not found, using %q.", caCertFile, defaultCACertPath)
    			caCertFile = defaultCACertPath
    		} else {
    			log.Infof("CA cert file %q not found - ignoring.", caCertFile)
    			caCertFile = ""
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. pkg/kube/multicluster/secretcontroller.go

    		c.deleteCluster(secretKey, cluster)
    	}
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    func (c *Controller) deleteCluster(secretKey string, cluster *Cluster) {
    	log.Infof("Deleting cluster_id=%v configured by secret=%v", cluster.ID, secretKey)
    	cluster.Stop()
    	c.handleDelete(cluster.ID)
    	c.cs.Delete(secretKey, cluster.ID)
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top