From b87f4be0bd0c3d715d042d8fba654f5ec0314833 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 26 Oct 2023 19:16:14 +0200 Subject: [PATCH] Minor changes --- clusterman/config.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/clusterman/config.py b/clusterman/config.py index 94294be..58dbdbc 100644 --- a/clusterman/config.py +++ b/clusterman/config.py @@ -15,19 +15,27 @@ class Config: "ip4_ignore": ["10.0.0.5", "10.0.0.1"], }, "plugins": { "ls": "ls -al" }, - "timeout": 0.5 + "timeout": 0.5, + "ssh_key_path": "" } SCHEMA_CONFIG = { "type": "object", "properties": { "timeout": {"type": "number"}, "plugins": {"type": "object"}, + "ssh_key_path": {"type": "string"}, "cluster": {"type": "object", "properties":{ "ip4_from": {"type": "string"}, "ip4_to": {"type": "string"}, "ip4_ignore": {"type": "array", "items":{"type": "string"}} }} - } + }, + "required":[ + "timeout", + "plugins", + "ssh_key_path", + "cluster" + ] } def __init__(self):