Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for cds (0.06 sec)

  1. tests/integration/pilot/locality_test.go

    				destC = apps.VM[0]
    			}
    
    			cases := []struct {
    				name     string
    				input    LocalityInput
    				expected map[string]int
    			}{
    				{
    					"Prioritized/CDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    						Resolution:      "DNS",
    						Local:           destA.Config().Service,
    						Remote:          destB.Config().Service,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/monitoring.go

    	)
    	xdsClientTrackerMutex = &sync.Mutex{}
    	xdsClientTracker      = make(map[string]float64)
    
    	// Covers xds_builderr and xds_senderr for xds in {lds, rds, cds, eds}.
    	pushes = monitoring.NewSum(
    		"pilot_xds_pushes",
    		"Pilot build and send errors for lds, rds, cds and eds.",
    	)
    
    	cdsSendErrPushes = pushes.With(typeTag.Value("cds_senderr"))
    	edsSendErrPushes = pushes.With(typeTag.Value("eds_senderr"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/configgen.go

    	// BuildClusters returns the list of clusters for the given proxy. This is the CDS output
    	BuildClusters(node *model.Proxy, req *model.PushRequest) ([]*discovery.Resource, model.XdsLogDetails)
    
    	// BuildDeltaClusters returns both a list of resources that need to be pushed for a given proxy and a list of resources
    	// that have been deleted and should be removed from a given proxy. This is Delta CDS output.
    	BuildDeltaClusters(proxy *model.Proxy, updates *model.PushRequest,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. istioctl/pkg/proxystatus/proxystatus_test.go

    			expectedOutput: "Error: no running Istio pods in \"istio-system\"\n",
    			wantException:  true,
    		},
    		{ // case 1, with Istiod instance
    			args:           []string{},
    			expectedString: "NAME     CLUSTER     CDS     LDS     EDS     RDS     ECDS     ISTIOD",
    		},
    		{ // case 2: supplying nonexistent pod name should result in error with flag
    			args:          strings.Split("deployment/random-gibberish", " "),
    			wantException: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/xds/monitoring.go

    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	cdsReject = monitoring.NewGauge(
    		"pilot_xds_cds_reject",
    		"Pilot rejected CDS configs.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	edsReject = monitoring.NewGauge(
    		"pilot_xds_eds_reject",
    		"Pilot rejected EDS.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. 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