]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/cephadm: improve doc strings for ambigous config values
authorSebastian Wagner <sewagner@redhat.com>
Tue, 14 Dec 2021 12:09:35 +0000 (13:09 +0100)
committerAdam King <adking@redhat.com>
Mon, 21 Feb 2022 18:43:45 +0000 (13:43 -0500)
Signed-off-by: Sebastian Wagner <sewagner@redhat.com>
(cherry picked from commit 391ddf15530d4063d68b03dce1da9999490930d6)

src/pybind/mgr/cephadm/module.py

index 0b7a3edd2f8e72badd6ec3f6f370ce2a24ab3c44..4a1f89a8de35e20aa13f98a60e51281ac8e834be 100644 (file)
@@ -302,19 +302,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(
@@ -339,7 +339,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',