Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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