Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for endpoint_config (0.46 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

            }
          ]
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump",
          "static_endpoint_configs": [
            {
              "endpoint_config": {
                "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                "cluster_name": "prometheus_stats",
                "endpoints": [
                  {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	for _, e := range dump.GetDynamicEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    	for _, e := range dump.GetStaticEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/pilot/status.go

    		case *xdsstatus.PerXdsConfig_ClusterConfig:
    			typeURL = xdsresource.ClusterType
    		case *xdsstatus.PerXdsConfig_RouteConfig:
    			typeURL = xdsresource.RouteType
    		case *xdsstatus.PerXdsConfig_EndpointConfig:
    			typeURL = xdsresource.EndpointType
    		}
    
    		if typeURL != "" {
    			configs = append(configs, &xdsstatus.ClientConfig_GenericXdsConfig{
    				TypeUrl:      typeURL,
    				ConfigStatus: config.Status,
    			})
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.1K bytes
    - Viewed (0)
Back to top