diff options
author | Justin chi <chigang@huawei.com> | 2017-08-15 08:59:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-15 08:59:08 +0000 |
commit | 5f2c78057f1a15ca90c5c25025f713a56a48dfc6 (patch) | |
tree | cd17d838ddfbeafe88a5fbb7ac9eab751e114559 /deploy/adapters/ansible/roles/config-osa/tasks/main.yml | |
parent | 7afdbb1351729dffa7d4bba7a2c505ef707d10c9 (diff) | |
parent | 3fc9da6b7dd0e3dc2d1afd7b2dfad4f4189232d4 (diff) |
Merge "Make the storage use ceph"
Diffstat (limited to 'deploy/adapters/ansible/roles/config-osa/tasks/main.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/config-osa/tasks/main.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/config-osa/tasks/main.yml b/deploy/adapters/ansible/roles/config-osa/tasks/main.yml index b1b32f77..cd1e90e9 100644 --- a/deploy/adapters/ansible/roles/config-osa/tasks/main.yml +++ b/deploy/adapters/ansible/roles/config-osa/tasks/main.yml @@ -77,3 +77,27 @@ copy: src: fetch-files.yml dest: /opt/openstack-ansible/playbooks/fetch-files.yml + +- name: copy user_ceph.yml + copy: + src: user_ceph.yml + dest: /etc/openstack_deploy/user_ceph.yml + when: + - "{{ hostvars[inventory_hostname]['groups']['ceph_mon'] |length > 0 }}" + - "{{ hostvars[inventory_hostname]['groups']['ceph_osd'] | length > 0 }}" + +- name: render ceph.yml.j2 + template: + src: ceph.yml.j2 + dest: /etc/openstack_deploy/conf.d/ceph.yml + when: + - "{{ hostvars[inventory_hostname]['groups']['ceph_mon'] |length > 0 }}" + - "{{ hostvars[inventory_hostname]['groups']['ceph_osd'] | length > 0 }}" + +- name: render user_variables_ceph.yml.j2 + template: + src: user_variables_ceph.yml.j2 + dest: /etc/openstack_deploy/user_variables_ceph.yml + when: + - "{{ hostvars[inventory_hostname]['groups']['ceph_mon'] |length > 0 }}" + - "{{ hostvars[inventory_hostname]['groups']['ceph_osd'] | length > 0 }}" |