aboutsummaryrefslogtreecommitdiffstats
path: root/releasenotes
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2017-11-03 02:53:24 +0000
committerGerrit Code Review <review@openstack.org>2017-11-03 02:53:24 +0000
commitb1c1a8df15b3271df9b2674ce83c4e322856ffeb (patch)
tree2abd323547b394022d057b6e1dbaeafa71c88de3 /releasenotes
parent7bfae61023d34043d8fe9523f88febac6e7597be (diff)
parentf0bd09dc2807d1d1edcfd9a3d87c6ba8c70e2267 (diff)
Merge "Update CephPools format in the docker templates to fit ceph-ansible" into stable/pike
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/ceph-pools-with-ceph-ansible-f82425e585f90ef6.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/releasenotes/notes/ceph-pools-with-ceph-ansible-f82425e585f90ef6.yaml b/releasenotes/notes/ceph-pools-with-ceph-ansible-f82425e585f90ef6.yaml
new file mode 100644
index 00000000..63e6f212
--- /dev/null
+++ b/releasenotes/notes/ceph-pools-with-ceph-ansible-f82425e585f90ef6.yaml
@@ -0,0 +1,17 @@
+---
+upgrade:
+ - |
+ The format to use for the CephPools parameter needs to be updated into the
+ form expected by ceph-ansible. For example, for a new pool named `mypool`
+ it should change from:
+ { "mypool": { "size": 3, "pg_num": 128, "pgp_num": 128 } }
+ into:
+ [ { "name": "mypool", "pg_num": 128, "rule_name": "" } ]
+ The first is a map where each key is a pool name and its value the pool
+ properties, the second is a list where each item describes all properties
+ of a pool, including its name.
+other:
+ - |
+ With the migration from puppet-ceph to ceph-ansible for the deployment
+ of Ceph, the format of CephPools parameter changes because the two tools
+ use a different format to represent the list of additional pools to create.