Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for LDS (0.02 sec)

  1. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    NAME       CLUSTER      CDS          LDS         EDS         RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE        SYNCED      SYNCED      NOT SENT     SYNCED       istiod1     1.20
    proxy2     cluster2     STALE        SYNCED      STALE       SYNCED       STALE        istiod2     1.19
    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 522 bytes
    - Viewed (0)
  2. pkg/istio-agent/testdata/grpc-bootstrap.json

            "ca_certificate_file": "/cert/path/root-cert.pem",
            "refresh_interval": "900s"
          }
        }
      },
      "server_listener_resource_name_template": "xds.istio.io/grpc/lds/inbound/%s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  3. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds.go

    		return true
    	}
    	switch proxy.Type {
    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// TODO: this logic is identical to that used in LDS, consider refactor into a common function
    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    			// after implementing use-waypoint which decouples waypoint creation, wl pod creation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/xds/monitoring.go

    		"Pilot rejected EDS.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	ldsReject = monitoring.NewGauge(
    		"pilot_xds_lds_reject",
    		"Pilot rejected LDS.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	rdsReject = monitoring.NewGauge(
    		"pilot_xds_rds_reject",
    		"Pilot rejected RDS.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/apigen/apigen_test.go

    		err := adscConn.Run()
    		if err != nil {
    			t.Fatal("ADSC: failed running ", err)
    		}
    
    		_, err = adscConn.WaitVersion(10*time.Second, gvk.ServiceEntry.String(), "")
    		if err != nil {
    			t.Fatal("Failed to receive lds", err)
    		}
    
    		ses := adscConn.Store.List(gvk.ServiceEntry, "")
    		for _, se := range ses {
    			t.Log(se)
    		}
    		sec := adscConn.Store.List(gvk.EnvoyFilter, "")
    		for _, se := range sec {
    			t.Log(se)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/lib/panels.libsonnet

          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'),
            overrideSeries('wads', 'Authorization'),
            overrideSeries('wds', 'Workloads'),
          ]),
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/configgen.go

    // ConfigGenerator represents the interfaces to be implemented by code that generates xDS responses
    type ConfigGenerator interface {
    	// BuildListeners returns the list of inbound/outbound listeners for the given proxy. This is the LDS output
    	// Internally, the computation will be optimized to ensure that listeners are computed only
    	// once and shared across multiple invocations of this function.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/lds_test.go

    		{"foo.ns.svc.cluster.local", ""},
    		{"foo.com", ""},
    		{"foo.ns.com", ""},
    		{"foo.ns.svc.notdnsdomain", ""},
    		{"foo.ns.svc.cluster.local.extra", ""},
    		{"xds.istio.io/grpc/lds/inbound/0.0.0.0:1234", ""},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.in, func(t *testing.T) {
    			if got := tryFindFQDN(tc.in, node); got != tc.want {
    				t.Errorf("want %q but got %q", tc.want, got)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top