Initial commit
[ta/infra-ansible.git] / playbooks / collect_disk_jsons_together.yml
diff --git a/playbooks/collect_disk_jsons_together.yml b/playbooks/collect_disk_jsons_together.yml
new file mode 100644 (file)
index 0000000..e6c5375
--- /dev/null
@@ -0,0 +1,35 @@
+---
+
+# Copyright 2019 Nokia
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+- name: collect all disks jsons together
+  hosts: base
+  become: yes
+  become_method: sudo
+  become_user: root
+  gather_facts: no
+  tasks:
+  - name: initialize list variables
+    set_fact:
+      all_disk_config: {}
+
+  - name: Load variables from the json file
+    include_vars:
+      file: "/etc/storage/{{ item }}-disks.json"
+      name: "all_disk_config"
+    with_items: "{{ osds }}"
+
+  - name: dump disk_config variable
+    action: template src=osd_disk_metadata.j2 dest=/etc/storage/osd_disk_metadata.json  mode=644