- These are reasonable names that a user would probably want
- If they run bootstrap in /etc/ceph then they are already installed in
the right location
- This means that the bootstrap command has only 1 (!) required argument
(--mon-ip or equivalent)
Signed-off-by: Sage Weil <sage@redhat.com>
* refs/pull/31501/head:
ceph-mon: bind to public_addrv if set (before public_addr or public_network)
common/options: add public_addrv
common/options: fix ADDRVEC parsing
ceph-daemon: support --mon-addrv for deploy subcommand
Reviewed-by: Neha Ojha <nojha@redhat.com>
Moving ceph-daemon into src/ceph-daemon/ makes it simpler to add extra
code (eg. tox.ini, README, unittests, ...) specific to ceph-daemon.
That way related files are in a single directory.
Signed-off-by: Thomas Bechtold <tbechtold@suse.com>
It's usually okay to use the mon. key for CLI commands, except we had a
mgr but that prevented you from issuing mgr commands correctly. We have
the new client.admin key available, so use that instead.
Update tests to not --skip-ssh (now that it doesn't hang).
Signed-off-by: Sage Weil <sage@redhat.com>
Not sure what the difference between latest-master and latest-master-devel
is, but the -devel image is way out of date.
Signed-off-by: Sage Weil <sage@redhat.com>
- New Popen wrapper that grabs stdout, stderr, and return code. This is
adapted from ceph-volume's process.py helper(s).
- Optionally log output to logger
- By default, be more verbose if the command fails.
Signed-off-by: Sage Weil <sage@redhat.com>