mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-05 11:36:25 +02:00
Minor changes
This commit is contained in:
parent
2d46fcf955
commit
b87f4be0bd
1 changed files with 10 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue