Neutron uses wrong os-auth-url
I have Keystone (Juno) configured to listen on port 35358. I'm using HAProxy for SSL termination, it's listening on 35357 and forwarding to 35358. However the command line tool neutron refuses to use the correct os-auth-url even if I supply it directly.
Here is an example:
neutron --os-auth-url https://ControllerNode.sdn:35357/v2.0 net-list
Unable to establish connection to http://ControllerNode.sdn:35357/v2.0/tokens
This problem only occurs when I try to use the ssl url. The following does work:
neutron --os-auth-url http://ControllerNode.sdn:35358/v2.0 net-list
Is this a bug or did I miss something?
Keystone and nova work, it's only neutron that has this problem.