diff options
author | Steven Hardy <shardy@redhat.com> | 2016-07-15 14:11:35 +0100 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2016-08-11 14:35:48 +0300 |
commit | 450be229c3df3c3d54a90bc715c859eb89c9810b (patch) | |
tree | 40142f60cb0308324c68e24069d1bba91d01ab7b /environments | |
parent | 05691d25087e83066fbf5caadd022dca4c7131f2 (diff) |
Convert EndpointMap to not require per-service VIP parameters
Currently we have a hard-coded set of per-service parameters, which
will cause problems for custom roles and full composability.
As a first step towards making this more configurable, remove the
hard-coded per-service parameters from overcloud.yaml, and adjust
the EndpointMap generation to instead accept two mappings, the
ServiceNetMap and a mapping of networks to IPs (effectively this
just moves the map lookup inside the endpoint map instead of
inside overcloud.yaml)
Change-Id: Ib522e89c36eed2115a6586dd5a6770907d9b33db
Partially-Implements: blueprint custom-roles
Diffstat (limited to 'environments')
-rw-r--r-- | environments/enable-tls.yaml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/environments/enable-tls.yaml b/environments/enable-tls.yaml index ee1f5387..290d2011 100644 --- a/environments/enable-tls.yaml +++ b/environments/enable-tls.yaml @@ -38,7 +38,6 @@ parameter_defaults: ManilaInternal: {protocol: 'http', port: '8786', host: 'IP_ADDRESS'} ManilaPublic: {protocol: 'https', port: '13786', host: 'CLOUDNAME'} MysqlInternal: {protocol: 'mysql+pymysql', port: '3306', host: 'IP_ADDRESS'} - MysqlNoBracketsInternal: {protocol: 'mysql+pymysql', port: '3306', host: 'IP_ADDRESS'} NeutronAdmin: {protocol: 'http', port: '9696', host: 'IP_ADDRESS'} NeutronInternal: {protocol: 'http', port: '9696', host: 'IP_ADDRESS'} NeutronPublic: {protocol: 'https', port: '13696', host: 'CLOUDNAME'} |