ceph-ansible/roles/ceph-rgw
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
..
defaults rgw: add cpuset support 2019-04-23 09:09:32 +02:00
handlers rename docker_exec_cmd variable 2019-05-17 16:05:58 +02:00
meta meta: set the right minimum ansible version required for galaxy 2018-12-11 09:59:25 +01:00
tasks ceph-rgw: Fix custom pool size setting 2020-01-08 21:28:03 -05:00
templates Add radosgw_frontend_ssl_certificate parameter 2019-07-02 20:13:09 +00:00
LICENSE Add READMEs for each roles 2015-07-25 10:51:53 +02:00
README.md Cleanup readme files in roles directories 2017-10-17 11:22:06 +02:00

README.md

Ansible role: ceph-rgw

Documentation is available at http://docs.ceph.com/ceph-ansible/.