Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for _rds (0.09 sec)

  1. pilot/pkg/model/gateway.go

    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    //	Multiple HTTP servers can exist on the same port and the code will combine all of them into
    //	one single RDS payload for http.<portNumber>
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. manifests/addons/gen.sh

    GRAFANA_VERSION=${GRAFANA_VERSION:-"8.0.1"}
    
    # Set up kiali
    {
    helm3 template kiali-server \
      --namespace istio-system \
      --version 1.85.0 \
      --set deployment.image_version=v1.85 \
      --include-crds \
      --set nameOverride=kiali \
      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		}
    
    		f := l.FilterChains[0].Filters[0]
    		cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    		rds := cfg.Fields["rds"].GetStructValue().Fields["route_config_name"].GetStringValue()
    		if rds != "8080" {
    			t.Fatalf("expect routes %s, found %s", "8080", rds)
    		}
    
    		l = findListenerByAddress(listeners, "1.2.3.4")
    		if l == nil {
    			t.Fatalf("expect listener %s", "1.2.3.4_8080")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pkg/kube/kclient/client_test.go

    		}, 1)
    		tracker.WaitOrdered("add/name")
    	})
    	t.Run("CRD not ready", func(t *testing.T) {
    		stop := test.NewStop(t)
    		c := kube.NewFakeClient()
    
    		// Client created before CRDs are ready
    		wasm := kclient.NewDelayedInformer[controllers.Object](c, gvr.WasmPlugin, kubetypes.StandardInformer, kubetypes.Filter{})
    		tracker := assert.NewTracker[string](t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/panels.libsonnet

          + 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'),
          ]),
      },
    
      heatmap: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pilot/test/xds/fake.go

    			NetworksWatcher: opts.NetworksWatcher,
    			SkipRun:         true,
    			ConfigCluster:   k8sCluster == opts.DefaultClusterName,
    			MeshWatcher:     mesh.NewFixedWatcher(m),
    			CRDs: []schema.GroupVersionResource{
    				// Install all CRDs used (mostly in Ambient)
    				gvr.AuthorizationPolicy,
    				gvr.PeerAuthentication,
    				gvr.KubernetesGateway,
    				gvr.KubernetesGateway,
    				gvr.WorkloadEntry,
    				gvr.ServiceEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/dashboard_test.go

    }{
    	{
    		"istio-grafana-dashboards",
    		"pilot-dashboard.json",
    		[]string{
    			"pilot_xds_push_errors",
    			"pilot_total_xds_internal_errors",
    			"pilot_xds_push_context_errors",
    			`pilot_xds_pushes{type!~"lds|cds|rds|eds"}`,
    			// We do not push credentials in this test
    			`pilot_xds_pushes{type="sds"}`,
    			"_timeout",
    			"_rejects",
    			// We do not simulate injection errors
    			"sidecar_injection_failure_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot-dashboard.gen.json

                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
                         "options": "rds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Routes"
                         }
                      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    	var filters []*listener.Filter
    	httpOpts := &httpListenerOpts{
    		routeConfig:      buildWaypointInboundHTTPRouteConfig(lb, svc, cc),
    		rds:              "", // no RDS for inbound traffic
    		useRemoteAddress: false,
    		connectionManager: &hcm.HttpConnectionManager{
    			ServerName:                 ph.ServerName,
    			ServerHeaderTransformation: ph.ServerHeaderTransformation,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    	"istio.io/istio/pkg/queue"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var scope = log.RegisterScope("kube", "Kubernetes client messages")
    
    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    	// schemas defines the set of schemas used by this client.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top