a71874f24f
- Add mistral in HAproxy - Set mistral api to bind on api_interface - Fix mistral endpoint - Add database population on bootstraping - Add mistral port prechecks Change-Id: If1617fb9dcd8b3bbd4f94c68ca87c36e39711016 Closes-Bug: #1626570
10 lines
355 B
Bash
10 lines
355 B
Bash
#!/bin/bash
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
mistral-db-manage --config-file /etc/mistral/mistral.conf upgrade head
|
|
mistral-db-manage --config-file /etc/mistral/mistral.conf populate
|
|
exit 0
|
|
fi
|