From: Guillaume Abrioux Date: Fri, 1 Jun 2018 13:11:21 +0000 (+0200) Subject: mons: move set_fact of openstack_keys in ceph-osd X-Git-Tag: v3.1.0rc6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=28319698e2f4692ae4bfbb62a02cf6b569179a76;p=ceph-ansible.git mons: move set_fact of openstack_keys in ceph-osd Since the openstack_config.yml has been moved to `ceph-osd` we must move this `set_fact` in ceph-osd otherwise the tasks in `openstack_config.yml` using `openstack_keys` will actually use the defaults value from `ceph-defaults`. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1585139 Signed-off-by: Guillaume Abrioux (cherry picked from commit aae37b44f5f17d14034181d5777226d3a582b42d) Signed-off-by: Guillaume Abrioux --- diff --git a/roles/ceph-mon/tasks/main.yml b/roles/ceph-mon/tasks/main.yml index 28273acce..8f9067154 100644 --- a/roles/ceph-mon/tasks/main.yml +++ b/roles/ceph-mon/tasks/main.yml @@ -40,19 +40,6 @@ - name: include set_osd_pool_default_pg_num.yml include: set_osd_pool_default_pg_num.yml -- name: set_fact openstack_keys_tmp - preserve backward compatibility after the introduction of the ceph_keys module - set_fact: - openstack_keys_tmp: "{{ openstack_keys_tmp|default([]) + [ { 'key': item.key, 'name': item.name, 'caps': { 'mon': item.mon_cap, 'osd': item.osd_cap|default(''), 'mds': item.mds_cap|default(''), 'mgr': item.mgr_cap|default('') } , 'mode': item.mode } ] }}" - with_items: "{{ openstack_keys }}" - when: - - item.get('mon_cap', None) # it's enough to assume we are running an old-fashionned syntax simply by checking the presence of mon_cap since every key needs this cap - -- name: set_fact keys - override keys_tmp with keys - set_fact: - openstack_keys: "{{ openstack_keys_tmp }}" - when: - - openstack_keys_tmp is defined - - name: include calamari.yml include: calamari.yml when: calamari diff --git a/roles/ceph-osd/tasks/main.yml b/roles/ceph-osd/tasks/main.yml index da84b279a..197a4b7cf 100644 --- a/roles/ceph-osd/tasks/main.yml +++ b/roles/ceph-osd/tasks/main.yml @@ -84,6 +84,19 @@ # Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent) static: False +- name: set_fact openstack_keys_tmp - preserve backward compatibility after the introduction of the ceph_keys module + set_fact: + openstack_keys_tmp: "{{ openstack_keys_tmp|default([]) + [ { 'key': item.key, 'name': item.name, 'caps': { 'mon': item.mon_cap, 'osd': item.osd_cap|default(''), 'mds': item.mds_cap|default(''), 'mgr': item.mgr_cap|default('') } , 'mode': item.mode } ] }}" + with_items: "{{ openstack_keys }}" + when: + - item.get('mon_cap', None) # it's enough to assume we are running an old-fashionned syntax simply by checking the presence of mon_cap since every key needs this cap + +- name: set_fact keys - override keys_tmp with keys + set_fact: + openstack_keys: "{{ openstack_keys_tmp }}" + when: + - openstack_keys_tmp is defined + # Create the pools listed in openstack_pools - name: include openstack_config.yml include: openstack_config.yml