To Keystone endpoint or not - that is the question [closed]
My keystone client is acting funny. I originally got a token using the os username, password and auth_url. Then keystone said I needed an endpoint - so I gave it the auth url endpoint, to which it said it would be best to use the auth url. So I removed the endpoint, etc, etc, etc.
kevin@ubuntu:~$ keystone --os-username=admin --os-password=admin_pass --os-auth-url=http://192.168.9.201:5000/v2.0 --force-new-token --os-endpoint=http://192.168.9.201:5000/v2.0 token-get
WARNING: Bypassing authentication using a token & endpoint (authentication credentials are being ignored).
Configuration error: Client configured to run without a service catalog. Run the client using --os-auth-url or OS_AUTH_URL, instead of --os-endpoint or OS_SERVICE_ENDPOINT, for example.
kevin@ubuntu:~$ keystone --os-username=admin --os-password=admin_pass --os-auth-url=http://192.168.9.201:5000/v2.0 --force-new-token token-get
Expecting an endpoint provided via either --os-endpoint or env[OS_SERVICE_ENDPOINT]
Any idea what is going on and how to resolve it? Kevin