The instance health status in failed state due to monitoring check type set on the instance

When creating a node type via an api, and if the ‘serverType’ attribute is not set to ‘vm’ Morpheus will set the check type to docker. When provisioning an instance with this node, the health status of the instance will go into failed state. When creating the node type you will need to pass the following payload to set the serverType.

API Endpoint : /api/library/container-types/

Payload
{
  "containerType": {
    "serverType": "vm"
  }
}
2 Likes