Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,348 for info1 (0.04 sec)

  1. pkg/test/framework/components/registryredirector/kube.go

    	}
    	c.id = ctx.TrackResource(c)
    	var err error
    	scopes.Framework.Info("=== BEGIN: Deploy registry redirector server ===")
    	defer func() {
    		if err != nil {
    			err = fmt.Errorf("container registry deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy registry redirector server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy registry redirector server ===")
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/test/mock/caserver.go

    	*pb.IstioCertificateResponse, error,
    ) {
    	caServerLog.Infof("received CSR request")
    	if s.shouldReject() {
    		caServerLog.Info("force rejecting CSR request")
    		return nil, status.Error(codes.Unavailable, "CA server is not available")
    	}
    	if s.sendEmpty() {
    		caServerLog.Info("force sending empty cert chain in CSR response")
    		response := &pb.IstioCertificateResponse{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	}
    	info, ok := kubeconfig.AuthInfos[userName]
    	if !ok {
    		return errors.Errorf("the file %q does not contain authentication for user %q", kubeconfigPath, cfg.NodeRegistration.Name)
    	}
    
    	// Update the client certificate and key of the node authorizer to point to the PEM symbolic link.
    	info.ClientKeyData = []byte{}
    	info.ClientCertificateData = []byte{}
    	info.ClientKey = pemPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/phases/etcd/local.go

    			klog.V(5).Infof("[etcd] member was already removed, because no member id exists for peer %s", etcdPeerAddress)
    			return nil
    		}
    		return err
    	}
    
    	klog.V(1).Infof("[etcd] removing etcd member: %s, id: %d", etcdPeerAddress, id)
    	members, err = etcdClient.RemoveMember(id)
    	if err != nil {
    		return err
    	}
    	klog.V(1).Infof("[etcd] Updated etcd member list: %v", members)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    }
    
    func removeNonPersistedResources(infos []*storageversion.ResourceInfo) []*storageversion.ResourceInfo {
    	var filtered []*storageversion.ResourceInfo
    	for _, info := range infos {
    		// if EncodingVersion is empty, then the apiserver does not
    		// need to register this resource via the storage version API,
    		// thus we can remove it.
    		if info != nil && len(info.EncodingVersion) > 0 {
    			filtered = append(filtered, info)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/testing/fstest/testfs.go

    func formatInfoEntry(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Type=%v", info.Name(), info.IsDir(), info.Mode().Type())
    }
    
    // formatInfo formats an fs.FileInfo into a string for error messages and comparison.
    func formatInfo(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Mode=%v Size=%d ModTime=%v", info.Name(), info.IsDir(), info.Mode(), info.Size(), info.ModTime())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top