This commit is contained in:
Hrankin, Aleksandr (contracted)
2026-02-19 11:34:13 +00:00
commit f243f440c3
191 changed files with 6183 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
---
- name: add host ceph02
ansible.builtin.command: >
ceph orch host add dev-kyiv01-vm-ceph-main-02 192.168.0.103
changed_when: true
- name: add host ceph03
ansible.builtin.command: >
ceph orch host add dev-kyiv01-vm-ceph-main-03 192.168.0.104
changed_when: true
- name: add osd ceph01 sdb
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-01:/dev/sdb
changed_when: true
- name: add osd ceph01 sdc
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-01:/dev/sdc
changed_when: true
- name: add osd ceph02 sdb
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-02:/dev/sdb
changed_when: true
- name: add osd ceph02 sdc
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-02:/dev/sdc
changed_when: true
- name: add osd ceph03 sdb
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-03:/dev/sdb
changed_when: true
- name: add osd ceph03 sdc
ansible.builtin.command: >
ceph orch daemon add osd dev-kyiv01-vm-ceph-main-03:/dev/sdc
changed_when: true