diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-05-04 16:49:08 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-05-04 16:49:08 +0000 |
commit | 4d4a544c26ffca49a47a90d511996d3bdb2c1d06 (patch) | |
tree | 14baa003a3980f59c0eafd1e0a03df85628dfa7e /puppet/controller-puppet.yaml | |
parent | 0ef982864d85890acd061cc4fe31eb9b5320ade5 (diff) | |
parent | fd212bdd5ae421beda147d934c3a638c1444143c (diff) |
Merge "Add support for Glance RBD backend"
Diffstat (limited to 'puppet/controller-puppet.yaml')
-rw-r--r-- | puppet/controller-puppet.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/puppet/controller-puppet.yaml b/puppet/controller-puppet.yaml index e9195912..7c7d0f64 100644 --- a/puppet/controller-puppet.yaml +++ b/puppet/controller-puppet.yaml @@ -148,6 +148,13 @@ parameters: default: http description: Protocol to use when connecting to glance, set to https for SSL. type: string + GlanceBackend: + default: swift + description: The short name of the Glance backend to use. Should be one + of swift, rbd, or file + type: string + constraints: + - allowed_values: ['swift', 'file', 'rbd'] HeatPassword: default: unset description: The password for the Heat service account, used by the Heat services. @@ -495,6 +502,7 @@ resources: glance_port: {get_param: GlancePort} glance_protocol: {get_param: GlanceProtocol} glance_password: {get_param: GlancePassword} + glance_backend: {get_param: GlanceBackend} glance_swift_store_auth_address: {list_join: ['', ['http://', {get_param: VirtualIP} , ':5000/v2.0']]} glance_notifier_strategy: {get_param: GlanceNotifierStrategy} glance_log_file: {get_param: GlanceLogFile} @@ -719,6 +727,7 @@ resources: glance::backend::swift::swift_store_auth_address: {get_input: glance_swift_store_auth_address} glance::backend::swift::swift_store_user: service:glance glance::backend::swift::swift_store_key: {get_input: glance_password} + glance_backend: {get_input: glance_backend} # Heat heat_stack_domain_admin_password: {get_input: heat_stack_domain_admin_password} |