Skip to content

Commit

Permalink
Merge pull request #55686 from rkachach/fix_issue_64516
Browse files Browse the repository at this point in the history
mgr/rook: adding empty calls to upgrade_ls and upgrade_status
  • Loading branch information
rkachach committed Feb 21, 2024
2 parents 10402b6 + 3928995 commit 49d060c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/pybind/mgr/rook/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,3 +631,11 @@ def remove_osds(self,
@handle_orch_error
def blink_device_light(self, ident_fault: str, on: bool, locs: List[orchestrator.DeviceLightLoc]) -> List[str]:
return self.rook_cluster.blink_light(ident_fault, on, locs)

@handle_orch_error
def upgrade_status(self) -> orchestrator.UpgradeStatusSpec:
return orchestrator.UpgradeStatusSpec()

@handle_orch_error
def upgrade_ls(self, image: Optional[str], tags: bool, show_all_versions: Optional[bool]) -> Dict[Any, Any]:
return {}

0 comments on commit 49d060c

Please sign in to comment.