ceph-ansible/roles/ceph-rgw/tasks
Benoît Knecht 3c31b19ab3 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>
2020-01-08 16:16:38 -05:00
..
multisite lint: fix error [201,206] 2019-08-29 14:28:35 -04:00
common.yml common: improve keyrings generation 2019-10-02 13:09:50 +02:00
main.yml ceph-rgw: Fix custom pool size setting 2020-01-08 16:16:38 -05:00
openstack-keystone.yml improve coding style 2019-04-23 15:37:07 +02:00
pre_requisite.yml ansible: use 'bool' filter on boolean conditionals 2019-06-06 10:21:17 +02:00
start_docker_rgw.yml rgw: refact tasks directory layout 2019-10-01 10:27:51 -04:00
start_radosgw.yml improve coding style 2019-04-23 15:37:07 +02:00
systemd.yml rgw: refact tasks directory layout 2019-10-01 10:27:51 -04:00