parent
e775b4ac16
commit
1255ca2599
2 changed files with 37 additions and 14 deletions
@ -1,9 +1,18 @@ |
|||||||
const nodeState: ReadonlyMap<string, string> = new Map([ |
const NODE_STATUS_MESSAGE_MAP: ReadonlyMap<string, string> = new Map([ |
||||||
['unknown', 'Unknown'], |
['message_0222', 'The node is in an unknown state.'], |
||||||
['off', 'Off'], |
['message_0223', 'The node is a full cluster member.'], |
||||||
['on', 'On'], |
[ |
||||||
['accessible', 'Accessible'], |
'message_0224', |
||||||
['ready', 'Ready'], |
'The node is coming online; the cluster resource manager is running (step 2/3).', |
||||||
|
], |
||||||
|
[ |
||||||
|
'message_0225', |
||||||
|
'The node is coming online; the node is a consensus cluster member (step 1/3).', |
||||||
|
], |
||||||
|
[ |
||||||
|
'message_0226', |
||||||
|
'The node has booted, but it is not (yet) joining the cluster.', |
||||||
|
], |
||||||
]); |
]); |
||||||
|
|
||||||
export default nodeState; |
export default NODE_STATUS_MESSAGE_MAP; |
||||||
|
Loading…
Reference in new issue