Disabling wait conditions by default

Wait conditions do not work with default heat configuration
and should not be used in sahara by default. However they can
be enabled as described at https://review.openstack.org/#/c/404114
So making it configurable for now.

Change-Id: I79ffdafb17efa85d27d294841fbed946a36c9efc
This commit is contained in:
Andrey Pavlov 2016-12-16 16:52:05 +00:00
parent 388081b4aa
commit 6d8f78a0ed
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
configs:
sahara:
debug: false
enable_wait_condition: false
port:
cont: 8386
ingress: data-processing

View File

@ -13,6 +13,8 @@ port = {{ sahara.port.cont }}
periodic_coordinator_backend_url = memcached://{{ address("memcached", memcached.port) }}
transport_url = rabbit://{{ rabbitmq.user }}:{{ rabbitmq.password }}@{{ address("rabbitmq", rabbitmq.port) }}/
heat_enable_wait_condition = {{ sahara.enable_wait_condition }}
[database]
connection = mysql+pymysql://{{ sahara.db.username }}:{{ sahara.db.password }}@{{ address(service.database) }}/{{ sahara.db.name }}
max_retries = -1