We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b0f3a5 + fcdae78 commit 0537c19Copy full SHA for 0537c19
src/cephadm/cephadm.py
@@ -2410,6 +2410,12 @@ def enable_cephadm_mgr_module(
2410
logger.info('Enabling cephadm module...')
2411
cli(['mgr', 'module', 'enable', 'cephadm'])
2412
wait_for_mgr_restart()
2413
+ # https://tracker.ceph.com/issues/67969
2414
+ # luckily `ceph mgr module enable <module>` returns
2415
+ # a zero rc when the module is already enabled so
2416
+ # this is no issue even if it is unnecessary
2417
+ logger.info('Verifying orchestrator module is enabled...')
2418
+ cli(['mgr', 'module', 'enable', 'orchestrator'])
2419
logger.info('Setting orchestrator backend to cephadm...')
2420
cli(['orch', 'set', 'backend', 'cephadm'])
2421
0 commit comments