client: change default pool size

default pool size should match the real default that is defined in ceph
itself.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit ed42262b37)
pull/3384/head
Guillaume Abrioux 2018-11-21 17:28:00 +01:00 committed by mergify[bot]
parent 1077ae0060
commit 316e49c6d7
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ dummy:
# type: 1
# erasure_profile: ""
# expected_num_objects: ""
# size: ""
# size: "{{ osd_pool_default_size }}"
#test2:
# name: "test2"
# pg_num: "{{ osd_pool_default_pg_num }}"
@ -35,7 +35,7 @@ dummy:
# type: 1
# erasure_profile: ""
# expected_num_objects: ""
# size: ""
# size: "{{ osd_pool_default_size }}"
#pools:
# - "{{ test }}"
# - "{{ test2 }}"

View File

@ -18,7 +18,7 @@ test:
type: 1
erasure_profile: ""
expected_num_objects: ""
size: ""
size: "{{ osd_pool_default_size }}"
test2:
name: "test2"
pg_num: "{{ osd_pool_default_pg_num }}"
@ -27,7 +27,7 @@ test2:
type: 1
erasure_profile: ""
expected_num_objects: ""
size: ""
size: "{{ osd_pool_default_size }}"
pools:
- "{{ test }}"
- "{{ test2 }}"