aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Neal <phil.neal@hp.com>2014-10-27 13:30:16 -0600
committerPhil Neal <phil.neal@hp.com>2014-10-27 13:30:16 -0600
commit309931c3d00c1918536283d4daf11f926d48f716 (patch)
tree4f8f2c3d02deff390d76d270e34f05ab6e5a2db4
parent04dd8be0108a953aa82510d8ec85313a546cc0a7 (diff)
Add overcloud options for SSL RabbitMQ connections
Adds configuration options for Rabbit port and use_ssl settings using a shared RabbitMQ parameter. Change-Id: I7b7613cb60b9095ba5665c335c496fea4514391a
-rw-r--r--overcloud-source.yaml12
1 files changed, 12 insertions, 0 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml
index a1e71f00..0b60047a 100644
--- a/overcloud-source.yaml
+++ b/overcloud-source.yaml
@@ -334,6 +334,16 @@ parameters:
default: guest
description: The username for RabbitMQ
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
@@ -646,6 +656,8 @@ resources:
get_attr:
- RabbitCookie
- value
+ rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
+ rabbit_port: {get_param: RabbitClientPort}
ntp:
servers:
- {server: {get_param: NtpServer}, fudge: "stratum 0"}