Enhance launch script for multi-tier deployment.#688
Conversation
| db_password="<DB passwordd>" | ||
| kb_admin_password="<Kaui admin login password>" | ||
|
|
||
| KB_PLUGINS_TEMP_DIR="/var/lib/killbill/bundles/temp" |
There was a problem hiding this comment.
Do we typically use temp or tmp - does it matter?
There was a problem hiding this comment.
This is a directory we create during AMI creation (we can give any name) -- https://github.com/killbill/killbill-cloud/blob/master/ansible/roles/killbill/tasks/plugins/kpm_plugin.yml#L10
|
|
||
| echo "Installing plugin DDLs..." | ||
|
|
||
| find "${KB_PLUGINS_TEMP_DIR}" \ |
There was a problem hiding this comment.
Are we guarantee that all ddl files will be there - the loop wait for the first one if I understand correctly?
There was a problem hiding this comment.
Ansible copies these DDL files during AMI creation: https://github.com/killbill/killbill-cloud/blob/master/ansible/roles/killbill/tasks/plugins/kpm_plugin.yml#L18. If the AMI is created successfully, these files should be present when the instance is launched.
No description provided.