ENUM

ClusterNodeStatus

Description

Represents the status of the node in a Rubrik cluster.

link GraphQL Schema definition

  • enum ClusterNodeStatus {
  • # Node is unhealthy.
  • BAD
  • # Node is being bootstrapped with the Rubrik cluster. This state precedes the OK
  • # state and the node services will not be functional until the node transitions to
  • # status OK.
  • BOOTSTRAPPING
  • # Node is joining the cluster.
  • JOINING
  • # Node is down for maintenance.
  • MAINTENANCE
  • # Node is healthy and normal operation is expected.
  • OK
  • # Node is being taken down for maintenance. After all sanity checks, the node
  • # status will change to MAINTENANCE state.
  • PRE_MAINTENANCE
  • # Node has been removed from the cluster.
  • REMOVED
  • # Node status is not known.
  • UNKNOWN
  • # Node is being upgraded. The node will not accept any new jobs and the upgrade
  • # operation will begin after existing jobs are completed.
  • UPGRADE
  • # Node needs attention. Either the node is down, or some of the disks on the node
  • # are unavailable.
  • WARNING
  • }