Fix heat.conf template bind_host parameter

The bind_host parameter was commented out in the Mitaka template. This
caused heat to not successfully start. This patch solves the issue by
simply uncommenting the lines that were commented out.

Change-Id: I2530d35c0789c95fb6851e1cf824e650c78c9aa9
This commit is contained in:
Sam Stoelinga 2016-11-07 11:34:26 -08:00
parent 413ad01706
commit 7d3f42833e
1 changed files with 4 additions and 4 deletions

View File

@ -203,7 +203,7 @@ rpc_backend = rabbit
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
#bind_host = {{ server.bind.api.address }}
bind_host = {{ server.bind.api.address }}
# The port on which the server will listen. (integer value)
#bind_port=8004
@ -238,7 +238,7 @@ rpc_backend = rabbit
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
#bind_host = {{ server.bind.api_cfn.address }}
bind_host = {{ server.bind.api_cfn.address }}
# The port on which the server will listen. (integer value)
#bind_port=8000
@ -273,7 +273,7 @@ rpc_backend = rabbit
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
#bind_host = {{ server.bind.api_cloudwatch.address }}
bind_host = {{ server.bind.api_cloudwatch.address }}
# The port on which the server will listen. (integer value)
#bind_port=8003
@ -729,4 +729,4 @@ auth_host_ip={{ client.identity.host }}
api_server={{ client.api.host }}
api_port={{ client.api.port }}
{%- endif %}
{%- endif %}