Fixing value of 'host'

Previously, the value of 'host' was hardcoded to 0.0.0.0.
This patch corrects it to the actual IP address of the
containers.

Change-Id: Ie63c532b9a91415c969c56fcc96e0c6bf9cf6832
This commit is contained in:
Chris Hultin 2016-09-16 12:04:26 -05:00
parent 703704b309
commit fb0f928b4a
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
[DEFAULT]
# Disable stderr logging
use_stderr = False
host = 0.0.0.0
host = {{ ansible_ssh_host | default(ansible_host) }}
rpc_backend = {{ magnum_rpc_backend }}
[api]
host = 0.0.0.0
host = {{ ansible_ssh_host | default(ansible_host) }}
[barbican_client]
endpoint_type = internalURL