From ae4e76d70319521004568349fb6f1a935add8678 Mon Sep 17 00:00:00 2001 From: oviner Date: Sat, 17 Aug 2024 16:08:02 +0300 Subject: [PATCH] Add cpu,storage,memory parametrs Signed-off-by: oviner --- framework/main.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/framework/main.py b/framework/main.py index 2943c8c..87dd332 100644 --- a/framework/main.py +++ b/framework/main.py @@ -80,6 +80,24 @@ def init_argparser(): type=int, action="store", ) + parser.add_argument( + "--cpu_cluster", + help="Add the cpu the cluster needs.", + type=int, + action="store", + ) + parser.add_argument( + "--memory_cluster", + help="Add the memory the cluster needs.", + type=int, + action="store", + ) + parser.add_argument( + "--storage_cluster", + help="Add the storage the cluster needs.", + type=int, + action="store", + ) return parser.parse_args()