mirror of
https://github.com/ceph/ceph
synced 2025-01-09 04:30:26 +00:00
efa03cef5e
The default of 8 is virtually never the right answer. Require the initial pg count to be explicitly provided. Signed-off-by: Sage Weil <sage@inktank.com>
19 lines
244 B
Bash
Executable File
19 lines
244 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph osd pool create foo 123 123
|
|
ceph osd pool create fooo 123
|
|
|
|
ceph osd pool create foo 123 # idempotent
|
|
|
|
ceph osd pool delete foo
|
|
ceph osd pool delete foo
|
|
ceph osd pool delete fuggg
|
|
|
|
ceph osd pool delete fooo
|
|
|
|
echo OK
|
|
|
|
|