From: Jan Provaznik Date: Thu, 5 Oct 2017 08:00:20 +0000 (+0200) Subject: Evaluate cephfs pool variables X-Git-Tag: v3.0.0rc17~11^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=43e57abfd811e3825c11fbb67f70c318cb0e4a7d;p=ceph-ansible.git Evaluate cephfs pool variables Otherwise pools with names 'cephfs_data' and 'cephfs_metadata' are created. --- diff --git a/roles/ceph-mon/tasks/create_mds_filesystems.yml b/roles/ceph-mon/tasks/create_mds_filesystems.yml index 2d4bdec6a..a1292ee49 100644 --- a/roles/ceph-mon/tasks/create_mds_filesystems.yml +++ b/roles/ceph-mon/tasks/create_mds_filesystems.yml @@ -6,8 +6,8 @@ - name: create filesystem pools command: "{{ docker_exec_cmd }} ceph --cluster {{ cluster }} osd pool create {{ item }} {{ osd_pool_default_pg_num }}" with_items: - - cephfs_data - - cephfs_metadata + - "{{ cephfs_data }}" + - "{{ cephfs_metadata }}" changed_when: false - name: check if ceph filesystem already exists