mirror of https://github.com/ceph/ceph-ansible.git
infrastructure-playbooks/lv-create.yml: copy without using a template file
Signed-off-by: Neha Ojha <nojha@redhat.com>pull/3036/head
parent
186c4e11c7
commit
50a6d8141c
|
@ -2,6 +2,23 @@
|
|||
hosts:
|
||||
- osds
|
||||
|
||||
vars:
|
||||
logfile: |
|
||||
Suggested cut and paste into "group_vars/osds.yml" for configuring with osd_scenario=lvm
|
||||
----------------------------------------------------------------------------------------
|
||||
{% for lv in nvme_device_lvs %}
|
||||
- data: {{ lv.lv_name }}
|
||||
data_vg: {{ nvme_vg_name }}
|
||||
journal: {{ lv.journal_name }}
|
||||
journal_vg: {{ nvme_vg_name }}
|
||||
{% endfor %}
|
||||
{% for hdd in hdd_devices %}
|
||||
- data: {{ hdd_lv_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
data_vg: {{ hdd_vg_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
journal: {{ hdd_journal_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
journal_vg: {{ nvme_vg_name }}
|
||||
{% endfor %}
|
||||
|
||||
tasks:
|
||||
|
||||
- name: include vars of lv_vars.yaml
|
||||
|
@ -71,7 +88,7 @@
|
|||
|
||||
# Write ending configuration logfile
|
||||
- name: write output for osds.yml to logfile /tmp/logfile.txt
|
||||
template:
|
||||
src: templates/logfile.j2
|
||||
dest: /tmp/logfile.txt
|
||||
copy:
|
||||
content: "{{ logfile }}"
|
||||
dest: "/tmp/logfile.txt"
|
||||
delegate_to: localhost
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
Suggested cut and paste into "group_vars/osds.yml" for configuring with osd_scenario=lvm
|
||||
----------------------------------------------------------------------------------------
|
||||
{% for lv in nvme_device_lvs %}
|
||||
- data: {{ lv.lv_name }}
|
||||
data_vg: {{ nvme_vg_name }}
|
||||
journal: {{ lv.journal_name }}
|
||||
journal_vg: {{ nvme_vg_name }}
|
||||
{% endfor %}
|
||||
{% for hdd in hdd_devices %}
|
||||
- data: {{ hdd_lv_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
data_vg: {{ hdd_vg_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
journal: {{ hdd_journal_prefix }}-{{ hdd.split('/')[-1] }}
|
||||
journal_vg: {{ nvme_vg_name }}
|
||||
{% endfor %}
|
Loading…
Reference in New Issue