Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,536 for pcds (0.04 sec)

  1. pilot/pkg/xds/pcds.go

    John Howard <******@****.***> 1705429542 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/model/xds.go

    	switch typeURL {
    	case ClusterType:
    		return "CDS"
    	case ListenerType:
    		return "LDS"
    	case RouteType:
    		return "RDS"
    	case EndpointType:
    		return "EDS"
    	case SecretType:
    		return "SDS"
    	case NameTableType:
    		return "NDS"
    	case ProxyConfigType:
    		return "PCDS"
    	case ExtensionConfigurationType:
    		return "ECDS"
    	case AddressType, WorkloadType:
    		return "WDS"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    				if _, f := p.handlers[model.ProxyConfigType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.ProxyConfigType,
    					})
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/certcontroller.go

    	certChain, keyPEM, err := s.CA.GenKeyCert(s.dnsNames, SelfSignedCACertTTL.Get(), false)
    	if err != nil {
    		return err
    	}
    
    	if features.MultiRootMesh {
    		// Trigger trust anchor update, this will send PCDS to all sidecars.
    		log.Infof("Update trust anchor with new root cert")
    		err = s.workloadTrustBundle.UpdateTrustAnchor(&tb.TrustAnchorUpdate{
    			TrustAnchorConfig: tb.TrustAnchorConfig{Certs: []string{string(caBundle)}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    	// Wasm cache and ecds channel are used to replace wasm remote load with local file.
    	wasmCache wasm.Cache
    
    	// ecds version and nonce uses atomic only to prevent race in testing.
    	// In reality there should not be race as istiod will only have one
    	// in flight update for each type of resource.
    	// TODO(bianpengyuan): this relies on the fact that istiod versions all ECDS resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. istioctl/pkg/util/configdump/ecds.go

    	ecdsDumpAny, err := w.getSections(ecds)
    	if err != nil {
    		return nil, err
    	}
    
    	ecdsDump := &admin.EcdsConfigDump{}
    	for _, dump := range ecdsDumpAny {
    		ecds := &admin.EcdsConfigDump{}
    		err = dump.UnmarshalTo(ecds)
    		if err != nil {
    			return nil, err
    		}
    
    		ecdsDump.EcdsFilters = append(ecdsDump.EcdsFilters, ecds.EcdsFilters...)
    	}
    
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/pods.go

    	// where "pods" tracks all pods that have not reached a terminal state,
    	// count/pods tracks all pods independent of state.
    	result := corev1.ResourceList{
    		podObjectCountName: *(resource.NewQuantity(1, resource.DecimalSI)),
    	}
    
    	// by convention, we do not quota compute resources that have reached end-of life
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/ecds.go

    			return ecds[i].GetName() < ecds[j].GetName()
    		}
    
    		return ecds[i].GetTypedConfig().GetTypeUrl() < ecds[j].GetTypedConfig().GetTypeUrl()
    	})
    
    	return ecds, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/coverage/pods/pods.go

    			pod.Origins = append(pod.Origins, e.origin)
    			pod.ProcessIDs = append(pod.ProcessIDs, e.pid)
    		}
    		pods = append(pods, pod)
    	}
    	slices.SortFunc(pods, func(a, b Pod) int {
    		return strings.Compare(a.MetaFile, b.MetaFile)
    	})
    	return pods
    }
    
    func warning(s string, a ...interface{}) {
    	fmt.Fprintf(os.Stderr, "warning: ")
    	fmt.Fprintf(os.Stderr, s, a...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ecds.go

    				return nil, model.DefaultXdsLogDetails, nil
    			}
    			// Inserts Wasm pull secrets in ECDS response, which will be used at xds proxy for image pull.
    			// Before forwarding to Envoy, xds proxy will remove the secret from ECDS response.
    			secrets = e.GeneratePullSecrets(proxy, wasmSecrets, secretController)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top