Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 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. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

                    [":authority"] = "internal.org.net"
                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the Lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
          value: # cluster specification
            name: "lua_cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

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

    				t.Errorf("AdscSave() => %s expected ecds %s", ecds, tt.expectedJSON["_ecds"])
    			}
    			if cds := readFile(base+"_cds.json", t); cds != tt.expectedJSON["_cds"] {
    				t.Errorf("AdscSave() => %s expected cds %s", cds, tt.expectedJSON["_cds"])
    			}
    			if eds := readFile(base+"_eds.json", t); eds != tt.expectedJSON["_eds"] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds_test.go

    			got, err := adscConn.Wait(15*time.Second, v3.EndpointType)
    
    			// If in incremental mode, shouldn't receive cds|rds|lds here
    			if inc {
    				for _, g := range got {
    					if g == "cds" || g == "rds" || g == "lds" {
    						errChan <- fmt.Errorf("should be eds incremental but received cds. %v %v",
    							err, id)
    						return
    					}
    				}
    			}
    
    			rcvPush.Inc()
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/xds/lds_test.go

    	}
    
    	// Expect 9 CDS clusters:
    	// 2 inbound(http, inbound passthroughipv4) notes: no passthroughipv6
    	// 9 outbound (2 http services, 1 tcp service,
    	//   and 2 subsets of http1, 1 blackhole, 1 passthrough)
    	if (len(adsc.GetClusters()) + len(adsc.GetEdsClusters())) != 9 {
    		t.Fatalf("Expected 9 clusters in CDS output. Got %d", len(adsc.GetClusters())+len(adsc.GetEdsClusters()))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top