From 60ddc4d97eeb8c956e9d5633c102c868b5c96e9b Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 6 Nov 2019 14:49:12 -0600 Subject: [PATCH] ceph-daemon: set container_image during bootstrap Set the new cluster's container_image to match the image we bootstrapped with. Signed-off-by: Sage Weil --- src/ceph-daemon | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ceph-daemon b/src/ceph-daemon index 9391b6148fc1..d5332f273dab 100755 --- a/src/ceph-daemon +++ b/src/ceph-daemon @@ -831,6 +831,7 @@ def command_bootstrap(): cp.add_section('global') cp.set('global', 'fsid', fsid); cp.set('global', 'mon host', addr_arg) + cp.set('global', 'container_image', args.image) cpf = StringIO() cp.write(cpf) config = cpf.getvalue() -- 2.47.3