aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.yaml
diff options
context:
space:
mode:
authorBen Nemec <bnemec@redhat.com>2016-01-14 21:24:18 -0600
committerBen Nemec <bnemec@redhat.com>2016-01-20 09:43:40 -0600
commitdfcd5b7f53af9f9f059c90bb9b87b94bf82ea7b7 (patch)
treeed40bec80f6ef7183721987d6f5853436a91388c /overcloud.yaml
parentbdfdce52ad08d4ce70e7d4ca61b1c6d8409a8730 (diff)
Don't write CLOUDNAME to the hosts file.
Currently the value of the CloudName param gets written into the /etc/hosts file on each controller, but it turns out this is an invalid configuration. CloudName is supposed to be the DNS name of the overcloud, and the IP being written is (at least in my case) the internal API VIP. This breaks in cases such as SSL because the services are not listening on an SSL port on the internal API network, so if a service tries to talk to another service using a CloudName-defined public endpoint it ends up pointed at a non-existent internal address:port. Since by definition CloudName is supposed to be resolvable by the configured DNS server, we should not need an explicit hosts entry as well. Thus, this patch removes that from the file. Change-Id: I919b42a219d95296f46852dd3266a54d968cf66b
Diffstat (limited to 'overcloud.yaml')
-rw-r--r--overcloud.yaml1
1 files changed, 0 insertions, 1 deletions
diff --git a/overcloud.yaml b/overcloud.yaml
index bedd0546..9e0e3b2b 100644
--- a/overcloud.yaml
+++ b/overcloud.yaml
@@ -859,7 +859,6 @@ resources:
CinderEnableNfsBackend: {get_param: CinderEnableNfsBackend}
CinderEnableIscsiBackend: {get_param: CinderEnableIscsiBackend}
CinderEnableRbdBackend: {get_param: CinderEnableRbdBackend}
- CloudName: {get_param: CloudName}
CloudDomain: {get_param: CloudDomain}
ControlVirtualInterface: {get_param: ControlVirtualInterface}
ControllerExtraConfig: {get_param: controllerExtraConfig}