diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-04-01 08:49:39 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-04-01 08:49:39 +0000 |
commit | 76a8a88486e44e761571e1f9d46696aa669fa7ec (patch) | |
tree | 6ff8b156bc51dcc4c0ae7e3723a8eb266bc1936b /puppet/cinder-storage-puppet.yaml | |
parent | 8eec7d77584f883456653339eb99976ddea62ea1 (diff) | |
parent | 21eed9350afeeb56210923a1e9aa68d7eb8fc7e6 (diff) |
Merge "Ensure all Rabbit params are propagated to interested nodes."
Diffstat (limited to 'puppet/cinder-storage-puppet.yaml')
-rw-r--r-- | puppet/cinder-storage-puppet.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/puppet/cinder-storage-puppet.yaml b/puppet/cinder-storage-puppet.yaml index 2f7a04c8..104130b3 100644 --- a/puppet/cinder-storage-puppet.yaml +++ b/puppet/cinder-storage-puppet.yaml @@ -76,6 +76,16 @@ parameters: RabbitUserName: default: '' type: string + RabbitClientUseSSL: + default: false + description: > + Rabbit client subscriber parameter to specify + an SSL connection to the RabbitMQ host. + type: string + RabbitClientPort: + default: 5672 + description: Set rabbit subscriber port, change this if using SSL + type: number SnmpdReadonlyUserName: default: ro_snmp_user description: The user name for SNMPd with readonly rights running on all Overcloud nodes @@ -128,6 +138,8 @@ resources: host: {get_param: VirtualIP} rabbit_username: {get_param: RabbitUserName} rabbit_password: {get_param: RabbitPassword} + rabbit_client_use_ssl: {get_param: RabbitClientUseSSL} + rabbit_client_port: {get_param: RabbitClientPort} ntp_servers: str_replace: template: '["server"]' @@ -162,6 +174,8 @@ resources: cinder::rabbit_hosts: {get_input: rabbit_hosts} cinder::rabbit_userid: {get_input: rabbit_username} cinder::rabbit_password: {get_input: rabbit_password} + cinder::rabbit_use_ssl: {get_input: rabbit_client_use_ssl} + cinder::rabbit_port: {get_input: rabbit_client_port} cinder_enable_iscsi_backend: {get_input: cinder_enable_iscsi_backend} ntp::servers: {get_input: ntp_servers} enable_package_install: {get_input: enable_package_install} |