Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for cds (0.03 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

          + custom.withGradientMode('none'),
    
        xdsPushes(title, targets, desc=''):
          self.bars(title, targets, desc='')
          + timeSeries.standardOptions.withOverrides([
            overrideSeries('cds', 'Clusters'),
            overrideSeries('eds', 'Endpoints'),
            overrideSeries('lds', 'Listeners'),
            overrideSeries('rds', 'Routes'),
            overrideSeries('istio.io/debug', 'Debug'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	}
    
    	err := s.pushDeltaXds(con, con.proxy.GetWatchedResource(req.TypeUrl), request)
    	if err != nil {
    		return err
    	}
    	// Anytime we get a CDS request on reconnect, we should always push EDS as well.
    	// It is always the server's responsibility to send EDS after CDS, regardless if
    	// Envoy asks for it or not (See https://github.com/envoyproxy/envoy/issues/33607 for more details).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/adsc/adsc.go

    	edscds := map[string]*cluster.Cluster{}
    	cds := map[string]*cluster.Cluster{}
    	for _, c := range ll {
    		cdsSize += proto.Size(c)
    		switch v := c.ClusterDiscoveryType.(type) {
    		case *cluster.Cluster_Type:
    			if v.Type != cluster.Cluster_EDS {
    				cds[c.Name] = c
    				continue
    			}
    		}
    		cn = append(cn, c.Name)
    		edscds[c.Name] = c
    	}
    
    	adscLog.Infof("CDS: %d size=%d", len(cn), cdsSize)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcgen.go

    // default prefix, and is expects just the route for one host.
    // handleAck will detect if the message is an ACK or NACK, and update/log/count
    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    var log = istiolog.RegisterScope("grpcgen", "xDS Generator for Proxyless gRPC")
    
    type GrpcConfigGenerator struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

                    [":authority"] = "internal.org.net"
                   },
                  "authorize call",
                  5000)
                end
      # The third patch adds the cluster that is referenced by the lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: NETWORK_FILTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
          value: # cluster specification
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/retry"
    	wasmcache "istio.io/istio/pkg/wasm"
    )
    
    // Validates basic xds proxy flow by proxying one CDS requests end to end.
    func TestXdsProxyBasicFlow(t *testing.T) {
    	proxy := setupXdsProxy(t)
    	f := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	setDialOptions(proxy, f.BufListener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/apigen/apigen.go

    		})
    	}
    
    	// TODO: MeshConfig, current dynamic ProxyConfig (for this proxy), Networks
    
    	if w.TypeUrl == gvk.ServiceEntry.String() {
    		// Include 'synthetic' SE - but without the endpoints. Used to generate CDS, LDS.
    		// EDS is pass-through.
    		svcs := proxy.SidecarScope.Services()
    		for _, s := range svcs {
    			// Ignore services that are result of conversion from ServiceEntry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta_test.go

    	ads = s.ConnectDeltaADS()
    	// Sometimes we get an EDS request first before CDS
    	ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    		TypeUrl:                v3.EndpointType,
    		ResponseNonce:          "",
    		ResourceNamesSubscribe: []string{"outbound|80||local.default.svc.cluster.local"},
    	})
    
    	// Now send initial CDS request
    	res = ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta_test.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // Validates basic xds proxy flow by proxying one CDS requests end to end.
    func TestDeltaXdsProxyBasicFlow(t *testing.T) {
    	proxy := setupXdsProxy(t)
    	f := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	setDialOptions(proxy, f.BufListener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    	}
    }
    
    // SvcUpdate is called when a service port mapping definition is updated.
    // This interface is WIP - labels, annotations and other changes to service may be
    // updated to force a EDS and CDS recomputation and incremental push, as it doesn't affect
    // LDS/RDS.
    func (fx *Updater) SvcUpdate(c model.ShardKey, hostname string, ns string, ev model.Event) {
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top