Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for endpoint_config (0.28 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

    {
        "configs": [
            {
                "@type": "type.googleapis.com/envoy.admin.v3.EndpointsConfigDump",
                "static_endpoint_configs": [
                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "zipkin",
                            "policy": {
                                "overprovisioning_factor": 140
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 66K bytes
    - Viewed (0)
  2. 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 Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  3. 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 Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. 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 Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.1K bytes
    - Viewed (0)
Back to top