mirror of https://github.com/ceph/ceph
16 lines
285 B
Bash
Executable File
16 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
touch foo.$$
|
|
ceph osd pool create foo.$$ 8
|
|
ceph fs add_data_pool cephfs foo.$$
|
|
setfattr -n ceph.file.layout.pool -v foo.$$ foo.$$
|
|
|
|
# cleanup
|
|
rm foo.$$
|
|
ceph fs rm_data_pool cephfs foo.$$
|
|
ceph osd pool rm foo.$$ foo.$$ --yes-i-really-really-mean-it
|
|
|
|
echo OK
|