Initial commit
[ta/infra-ansible.git] / playbooks / associate_pools_for_application.yml
1 ---
2
3 # Copyright 2019 Nokia
4
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 - name: Associate the rbd application pools
18   # TODO: in the scope of the Hybrid storage feature this role needs to be executed also for the CaaS installation controllers. so, in the scope of that feature we will need to change this to "baremetal-infra-hosts"
19   hosts: baremetal-infra_hosts
20   become: yes
21   become_method: sudo
22   become_user: root
23   gather_facts: no
24   tasks:
25     - name: get the pool names
26       command: "rados lspools ls"
27       args:
28         creates: /etc/storage/osd_disk_metadata.json
29       register: pools
30
31     - name: associate the pools for rbd application
32       command: "ceph osd pool application enable {{ item }} rbd --yes-i-really-mean-it"
33       args:
34         creates: /etc/storage/osd_disk_metadata.json
35       with_items: "{{ pools.stdout_lines }}"