ceph-ansible/roles/ceph-mon/tasks/create_mds_filesystems.yml

10 lines
267 B
YAML

---
- name: Create filesystem pools
command: ceph osd pool create {{ item }} {{ pool_default_pg_num }}
with_items:
- cephfs_data
- cephfs_metadata
- name: Create Ceph Filesystem
command: ceph fs new {{ cephfs }} {{ cephfs_metadata }} {{ cephfs_data }}