endpoints like
linkerd config
routers:
- protocol: http
label: outgoing
dtab: |
/ph => /$/io.buoyant.rinet;
/external => /$/io.buoyant.porthostPfx/ph | /ph/80;
/srv => /#/daemonset/default/http & /#/daemonset/zipkin/http | /#/daemonset/hello/http;
/srv => /#/daemonset/cnet/http;
/host => /srv;
/svc => /host | /external;
/host/world => /srv/world-v1;
client:
failureAccrual:
kind: io.l5d.consecutiveFailures
failures: 1
backoff:
kind: constant
ms: 100000
servers:
- port: 4140
ip: 0.0.0.0
client:
kind: io.l5d.static
configs:
- prefix: /$/io.buoyant.rinet/443/{hostname}
tls:
commonName: "{hostname}"
Issue
Able to route to https://foo.corp.bar.com/query/id?wsdl
over https on port 443
http_proxy=$L5D:4140 http://foo.corp.bar.com:443/query/id?wsdl
and it works!
But one of my endpoints works on other ports, http://foo.corp.bar.com:1122/query/id?wsdl
http_proxy=$L5D:4140 curl http://foo.corp.bar.com:1122/query/id?wsdl
Routing issue!