Skip to content
Snippets Groups Projects
Commit a423b510 authored by Iustin Pop's avatar Iustin Pop
Browse files

Add new command-line option for group selection


Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarBalazs Lecz <leczb@google.com>
parent 32b8d9c0
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ module Ganeti.HTools.CLI
, oExInst
, oExTags
, oExecJobs
, oGroup
, oIDisk
, oIMem
, oINodes
......@@ -95,6 +96,7 @@ data Options = Options
, optExInst :: [String] -- ^ Instances to be excluded
, optExTags :: Maybe [String] -- ^ Tags to use for exclusion
, optExecJobs :: Bool -- ^ Execute the commands via Luxi
, optGroup :: Maybe GroupID -- ^ The UUID of the group to process
, optINodes :: Int -- ^ Nodes required for an instance
, optISpec :: RSpec -- ^ Requested instance specs
, optLuxi :: Maybe FilePath -- ^ Collect data from Luxi
......@@ -130,6 +132,7 @@ defaultOptions = Options
, optExInst = []
, optExTags = Nothing
, optExecJobs = False
, optGroup = Nothing
, optINodes = 2
, optISpec = RSpec 1 4096 102400
, optLuxi = Nothing
......@@ -196,6 +199,11 @@ oExecJobs = Option "X" ["exec"]
"execute the suggested moves via Luxi (only available when using\
\ it for data gathering)"
oGroup :: OptType
oGroup = Option "G" ["group"]
(ReqArg (\ f o -> Ok o { optGroup = Just f }) "ID")
"the ID of the group to balance"
oIDisk :: OptType
oIDisk = Option "" ["disk"]
(ReqArg (\ d opts ->
......
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