File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -213,9 +213,15 @@ def sync_cluster_health_status(self, ctx):
213213 try :
214214 LOG .debug ('Starting to sync up cluster health status' )
215215
216- status = [objects .fields .ClusterStatus .CREATE_COMPLETE ,
217- objects .fields .ClusterStatus .UPDATE_COMPLETE ,
216+ status = [
217+ objects .fields .ClusterStatus .CREATE_IN_PROGRESS ,
218+ objects .fields .ClusterStatus .CREATE_FAILED ,
219+ objects .fields .ClusterStatus .CREATE_COMPLETE ,
218220 objects .fields .ClusterStatus .UPDATE_IN_PROGRESS ,
221+ objects .fields .ClusterStatus .UPDATE_COMPLETE ,
222+ objects .fields .ClusterStatus .UPDATE_FAILED ,
223+ objects .fields .ClusterStatus .DELETE_IN_PROGRESS ,
224+ objects .fields .ClusterStatus .DELETE_FAILED ,
219225 objects .fields .ClusterStatus .ROLLBACK_IN_PROGRESS ]
220226 filters = {'status' : status }
221227 clusters = objects .Cluster .list (ctx , filters = filters )
You can’t perform that action at this time.
0 commit comments