ceph-ansible/roles/ceph-rgw/tasks
Benoît Knecht 0cb1235962 ceph-rgw: Fix custom pool size setting
RadosGW pools can be created by setting

```yaml
rgw_create_pools:
  .rgw.root:
    pg_num: 512
    size: 2
```

for instance. However, doing so would create pools of size
`osd_pool_default_size` regardless of the `size` value. This was due to
the fact that the Ansible task used

```
{{ item.size | default(osd_pool_default_size) }}
```

as the pool size value, but `item.size` is always undefined; the
correct variable is `item.value.size`.

Signed-off-by: Benoît Knecht <bknecht@protonmail.ch>
(cherry picked from commit 3c31b19ab3)
2020-01-08 21:28:03 -05:00
..
multisite lint: fix error [201,206] 2019-08-30 09:04:00 -04:00
common.yml common: improve keyrings generation 2019-10-02 14:34:27 +02:00
main.yml ceph-rgw: Fix custom pool size setting 2020-01-08 21:28:03 -05:00
openstack-keystone.yml improve coding style 2019-05-06 15:09:06 +00:00
pre_requisite.yml ansible: use 'bool' filter on boolean conditionals 2019-06-07 16:05:51 +02:00
start_docker_rgw.yml rgw: refact tasks directory layout 2019-10-01 18:50:51 +02:00
start_radosgw.yml improve coding style 2019-05-06 15:09:06 +00:00
systemd.yml rgw: refact tasks directory layout 2019-10-01 18:50:51 +02:00