Update CephPools format in the docker templates to fit ceph-ansible
[apex-tripleo-heat-templates.git] / releasenotes / notes / ceph-pools-with-ceph-ansible-f82425e585f90ef6.yaml
1 ---
2 upgrade:
3   - |
4     The format to use for the CephPools parameter needs to be updated into the
5     form expected by ceph-ansible. For example, for a new pool named `mypool`
6     it should change from:
7     { "mypool": { "size": 3, "pg_num": 128, "pgp_num": 128 } }
8     into:
9     [ { "name": "mypool", "pg_num": 128, "rule_name": "" } ]
10     The first is a map where each key is a pool name and its value the pool
11     properties, the second is a list where each item describes all properties
12     of a pool, including its name.
13 other:
14   - |
15     With the migration from puppet-ceph to ceph-ansible for the deployment
16     of Ceph, the format of CephPools parameter changes because the two tools
17     use a different format to represent the list of additional pools to create.