Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RouteConfiguration (0.48 sec)

  1. istioctl/pkg/writer/envoy/configdump/listener.go

    					return tcpProxy.GetCluster()
    				}
    				return fmt.Sprintf("Cluster: %s", tcpProxy.GetCluster())
    			}
    		}
    	}
    	return "Non-HTTP/Non-TCP"
    }
    
    func describeRouteConfig(route *route.RouteConfiguration) string {
    	if cluster := getMatchAllCluster(route); cluster != "" {
    		return cluster
    	}
    	vhosts := []string{}
    	for _, vh := range route.GetVirtualHosts() {
    		if describeDomains(vh) == "" {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/testdata/describe/http_config.json

          "dynamic_route_configs": [
            {
              "version_info": "2022-03-04T10:22:24Z/54",
              "route_config": {
                "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
                "name": "http.8080",
                "virtual_hosts": [
                  {
                    "name": "*:80",
                    "domains": [
                      "*"
                    ],
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 13.7K bytes
    - Viewed (0)
Back to top