Fix cyborg api failed to load api-paste.ini file

Change-Id: Id0f5809b50d0f6a0c96704e8f855d18f16f8de56
Closes-bug: #1874028
This commit is contained in:
ya.wang 2020-04-21 16:36:33 +08:00
parent bb6e23fb29
commit a374ff9f3f
2 changed files with 10 additions and 14 deletions

View File

@ -82,28 +82,18 @@
notify:
- Restart {{ item.key }} container
- name: Checking whether cyborg-api-paste.ini file exists
vars:
service: "{{ cyborg_services['cyborg-api'] }}"
stat:
path: "{{ node_custom_config }}/cyborg/cyborg-api-paste.ini"
delegate_to: localhost
run_once: True
register: check_cyborg_api_paste_ini
when:
- service.enabled | bool
- name: Copying over cyborg-api-paste.ini
vars:
service: "{{ cyborg_services['cyborg-api'] }}"
template:
src: "{{ node_custom_config }}/cyborg/cyborg-api-paste.ini"
merge_configs:
sources:
- "{{ role_path }}/templates/cyborg-api-paste.ini.j2"
- "{{ node_custom_config }}/cyborg/cyborg-api-paste.ini"
dest: "{{ node_config_directory }}/cyborg-api/api-paste.ini"
mode: "0660"
when:
- inventory_hostname in groups['cyborg-api']
- service.enabled | bool
- check_cyborg_api_paste_ini.stat.exists
notify:
- Restart cyborg-api container

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fix cyborg api container failed to load api paste file. For details
please see `bug 1874028
<https://bugs.launchpad.net/kolla-ansible/+bug/1874028>`__.