Skip to content
Snippets Groups Projects
Commit ff91d53c authored by SamYaple's avatar SamYaple
Browse files

Refactor glance config tasks

This now matches the way we copy confis in other services.

TrivialFix

Change-Id: Ia9c6d5f9a633c0b20b4d9a697863bd2753d39443
parent 3c0641b3
No related branches found
No related tags found
No related merge requests found
...@@ -16,32 +16,18 @@ ...@@ -16,32 +16,18 @@
- "glance-api" - "glance-api"
- "glance-registry" - "glance-registry"
- name: Copying over glance-api.conf - name: Copying over glance-*.conf
merge_configs: merge_configs:
vars: vars:
service_name: "{{ item }}" service_name: "{{ item }}"
sources: sources:
- "{{ role_path }}/templates/glance-api.conf.j2" - "{{ role_path }}/templates/{{ item }}.conf.j2"
- "/etc/kolla/config/global.conf" - "/etc/kolla/config/global.conf"
- "/etc/kolla/config/database.conf" - "/etc/kolla/config/database.conf"
- "/etc/kolla/config/messaging.conf" - "/etc/kolla/config/messaging.conf"
- "/etc/kolla/config/glance.conf" - "/etc/kolla/config/glance.conf"
- "/etc/kolla/config/glance/{{ item }}.conf" - "/etc/kolla/config/glance/{{ item }}.conf"
dest: "{{ node_config_directory }}/{{ item }}/glance-api.conf" dest: "{{ node_config_directory }}/{{ item }}/{{ item }}.conf"
with_items: with_items:
- "glance-api" - "glance-api"
- name: Copying over glance-registry.conf
merge_configs:
vars:
service_name: "{{ item }}"
sources:
- "{{ role_path }}/templates/glance-registry.conf.j2"
- "/etc/kolla/config/global.conf"
- "/etc/kolla/config/database.conf"
- "/etc/kolla/config/messaging.conf"
- "/etc/kolla/config/glance.conf"
- "/etc/kolla/config/glance/{{ item }}.conf"
dest: "{{ node_config_directory }}/{{ item }}/glance-registry.conf"
with_items:
- "glance-registry" - "glance-registry"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment