Skip to content

Commit 49d060c

Browse files
authored
Merge pull request ceph#55686 from rkachach/fix_issue_64516
mgr/rook: adding empty calls to upgrade_ls and upgrade_status
2 parents 10402b6 + 3928995 commit 49d060c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/pybind/mgr/rook/module.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,3 +631,11 @@ def remove_osds(self,
631631
@handle_orch_error
632632
def blink_device_light(self, ident_fault: str, on: bool, locs: List[orchestrator.DeviceLightLoc]) -> List[str]:
633633
return self.rook_cluster.blink_light(ident_fault, on, locs)
634+
635+
@handle_orch_error
636+
def upgrade_status(self) -> orchestrator.UpgradeStatusSpec:
637+
return orchestrator.UpgradeStatusSpec()
638+
639+
@handle_orch_error
640+
def upgrade_ls(self, image: Optional[str], tags: bool, show_all_versions: Optional[bool]) -> Dict[Any, Any]:
641+
return {}

0 commit comments

Comments
 (0)