Skip to content
Snippets Groups Projects
Commit 7ec2f76b authored by Dato Simó's avatar Dato Simó
Browse files

HTools/Types.hs: more auto-repair types


AutoRepairPolicy, AutoRepairStatus, and other auxiliary types are added.
These are used only internally by the auto-repair tool, and parsed from the
various object tags as defined in the design doc.

Signed-off-by: default avatarDato Simó <dato@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 3e77a36c
No related branches found
No related tags found
No related merge requests found
......@@ -78,9 +78,14 @@ module Ganeti.HTools.Types
, AutoRepairResult(..)
, autoRepairResultToRaw
, autoRepairResultFromRaw
, AutoRepairPolicy(..)
, AutoRepairSuspendTime(..)
, AutoRepairData(..)
, AutoRepairStatus(..)
) where
import qualified Data.Map as M
import System.Time (ClockTime)
import qualified Ganeti.Constants as C
import qualified Ganeti.THH as THH
......@@ -369,3 +374,30 @@ $(THH.declareSADT "AutoRepairResult"
, ("ArFailure", 'C.autoRepairFailure)
, ("ArEnoperm", 'C.autoRepairEnoperm)
])
-- | The possible auto-repair policy for a given instance.
data AutoRepairPolicy
= ArEnabled AutoRepairType -- ^ Auto-repair explicitly enabled
| ArSuspended AutoRepairSuspendTime -- ^ Suspended temporarily, or forever
| ArNotEnabled -- ^ Auto-repair not explicitly enabled
deriving (Eq, Show)
-- | The suspend timeout for 'ArSuspended'.
data AutoRepairSuspendTime = Forever -- ^ Permanently suspended
| Until ClockTime -- ^ Suspended up to a certain time
deriving (Eq, Show)
-- | The possible auto-repair states for any given instance.
data AutoRepairStatus
= ArHealthy -- ^ No problems detected with the instance
| ArNeedsRepair AutoRepairData -- ^ Instance has problems, no action taken
| ArPendingRepair AutoRepairData -- ^ Repair jobs ongoing for the instance
| ArFailedRepair AutoRepairData -- ^ Some repair jobs for the instance failed
-- | The data accompanying a repair operation (future, pending, or failed).
data AutoRepairData = AutoRepairData { arType :: AutoRepairType
, arUuid :: String
, arTime :: ClockTime
, arJobs :: [JobId]
, arResult :: Maybe AutoRepairResult
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment