From: Sebastian Wagner Date: Tue, 14 Dec 2021 12:09:35 +0000 (+0100) Subject: mgr/cephadm: improve doc strings for ambigous config values X-Git-Tag: v17.1.0~67^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=391ddf15530d4063d68b03dce1da9999490930d6;p=ceph.git mgr/cephadm: improve doc strings for ambigous config values Signed-off-by: Sebastian Wagner --- diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index e60ce48d743e..cf2648b2aeb9 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -282,19 +282,19 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule, 'registry_url', type='str', default=None, - desc='Custom repository url' + desc='Registry url for login purposes. This is not the default registry' ), Option( 'registry_username', type='str', default=None, - desc='Custom repository username' + desc='Custom repository username. Only used for logging into a registry.' ), Option( 'registry_password', type='str', default=None, - desc='Custom repository password' + desc='Custom repository password. Only used for logging into a registry.' ), Option( 'registry_insecure', @@ -318,7 +318,8 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule, 'default_registry', type='str', default='docker.io', - desc='Registry to which we should normalize unqualified image names', + desc='Search-registry to which we should normalize unqualified image names. ' + 'This is not the default registry', ), Option( 'max_count_per_host',