From 235325ba45b163b33b6466e724c70b9254d4f6fe Mon Sep 17 00:00:00 2001 From: portdirect Date: Fri, 29 Dec 2017 11:04:26 -0500 Subject: [PATCH] Ceph: Dont create volume pool by default The Cinder chart can now manage its storage init itself. This PS now removes the unrequired pool creation in the Ceph bootstrap job. It also updates the `ensure_pool` to better support luminious. Change-Id: I4a71df9a6d3a0e45c6ef6812926d66455055ae9f --- ceph/values.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ceph/values.yaml b/ceph/values.yaml index a0017cbd3b..6cc6d17f42 100644 --- a/ceph/values.yaml +++ b/ceph/values.yaml @@ -295,8 +295,9 @@ bootstrap: ceph -s function ensure_pool () { ceph osd pool stats $1 || ceph osd pool create $1 $2 + ceph osd pool application enable $1 $3 } - ensure_pool volumes 8 + #ensure_pool volumes 8 cinder # if you change provision_storage_class to false # it is presumed you manage your own storage