diff options
Diffstat (limited to 'src/pybind/mgr/rook/module.py')
-rw-r--r-- | src/pybind/mgr/rook/module.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pybind/mgr/rook/module.py b/src/pybind/mgr/rook/module.py index 2bfb0ed5f50..15613c2d81d 100644 --- a/src/pybind/mgr/rook/module.py +++ b/src/pybind/mgr/rook/module.py @@ -287,6 +287,12 @@ class RookOrchestrator(MgrModule, orchestrator.Orchestrator): continue sd.container_image_name = p['container_image_name'] + + sd.created = p['created'] + sd.last_configured = p['created'] + sd.last_deployed = p['created'] + sd.started = p['started'] + sd.last_refresh = p['refreshed'] result.append(sd) return result |