From 2878c9183fa01bf2fe27580852a165300e3ea061 Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Thu, 16 Jul 2015 13:33:13 -0700 Subject: [PATCH] [BZ-1228842] Echo RGW default port during rgw create Let the user know the default port has been used for RGW, as the default port is probably not one people will guess. Signed-off-by: Travis Rhoden --- ceph_deploy/rgw.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ceph_deploy/rgw.py b/ceph_deploy/rgw.py index 1c37a79..73cd748 100644 --- a/ceph_deploy/rgw.py +++ b/ceph_deploy/rgw.py @@ -155,6 +155,12 @@ def rgw_create(args): create_rgw(distro, name, args.cluster, distro.init) distro.conn.exit() + LOG.info( + ('The Ceph Object Gateway (RGW) is now running on host %s and ' + 'default port %s'), + hostname, + '7480' + ) except RuntimeError as e: LOG.error(e) errors += 1 -- 2.47.3