Project

General

Profile

Bug #41992

Updated by Sebastian Wagner over 4 years ago

The output of 'ceph mgr module ls', in 4.0 displays detailed information of the disabled modules. Unlike what we observed in 3. Is this change expected? 

 PFB, the output in 3.3 and 4.0 

 Output in 3.3 

     [root@magna027 ceph-ansible]# ceph mgr module ls 
     { 
         "enabled_modules": [ 
             "prometheus", 
             "status" 
         ], 
         "disabled_modules": [ 
             "balancer", 
             "dashboard", 
             "influx", 
             "localpool", 
             "restful", 
             "selftest", 
             "zabbix" 
         ] 
     } 
 
 Output in 4.0  
 snippet: 
 <pre> 
 

 [root@magna070 ceph-ansible]# ceph mgr module ls 
 { 
     "enabled_modules": [ 
         "dashboard", 
         "prometheus", 
         "restful" 
     ], 
     "disabled_modules": [ 
         { 
             "name": "ansible", 
             "can_run": true, 
             "error_string": "", 
             "module_options": { 
                 "password": { 
                     "name": "password", 
                     "type": "str", 
                     "level": "advanced", 
                     "flags": 0, 
                     "default_value": "", 
                     "min": "", 
                     "max": "", 
                     "enum_allowed": [], 
                     "desc": "", 
                     "long_desc": "", 
                     "tags": [], 
                     "see_also": [] 
                 }, 
 </pre>

Back