Deploy Mistral with Keystone v3 options (authtoken)

Deploy Mistral with Keystone v3 options (authtoken) like we do for other
services.

Change-Id: I145f02eb5e00e00f8b90b32d1fd495a5b3a2726b
Depends-On: Ibc600c16195816d90b817a96029845a2954ac809
This commit is contained in:
Emilien Macchi 2017-04-28 09:55:55 -04:00
parent fd53f5696f
commit 452d2c21a3
2 changed files with 9 additions and 4 deletions

View File

@ -101,15 +101,17 @@ outputs:
- service_debug_unset
- {get_param: Debug }
- {get_param: MistralDebug }
mistral::keystone_password: {get_param: MistralPassword}
mistral::keystone_tenant: 'service'
mistral::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
mistral::keystone::authtoken::project_name: 'service'
mistral::keystone::authtoken::user_domain_name: 'Default'
mistral::keystone::authtoken::project_domain_name: 'Default'
mistral::keystone::authtoken::password: {get_param: MistralPassword}
mistral::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
mistral::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
mistral::keystone_ec2_uri:
list_join:
- ''
- - {get_param: [EndpointMap, KeystoneV3Internal, uri]}
- '/ec2tokens'
mistral::identity_uri: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
service_config_settings:
keystone:
mistral::keystone::auth::tenant: 'service'

View File

@ -0,0 +1,3 @@
---
features:
- Mistral is now deployed with Keystone v3 options (authtoken).