Set OS_AUTH_TYPE on undercloud stackrc

This is required for clients with default auth not set to
keystone. For example, gnocchiclient. So lets set this
explicitly. This should hurt the existing behavior for
rest of the clients.

Closes-bug: #1671829

Change-Id: I2271584aab410287c55408deaebb418346f13e8d
This commit is contained in:
Pradeep Kilambi 2017-03-09 13:01:36 -05:00
parent a9e2873d96
commit 2a4aeacd7f
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,8 @@ NOVA_VERSION=1.1
export NOVA_VERSION
OS_PASSWORD=$(sudo hiera admin_password)
export OS_PASSWORD
OS_AUTH_TYPE=password
export OS_AUTH_TYPE
{{#service_certificate}}
OS_AUTH_URL=https://{{public_host}}:13000/v2.0
PYTHONWARNINGS="ignore:Certificate has no, ignore:A true SSLContext object is not available"

View File

@ -0,0 +1,4 @@
---
fixes:
- Add OS_AUTH_TYPE to undercloud stackrc file. Not all clients default to
keystone auth, so lets explicitly set the auth type in env.