mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +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"],
|
"ip4_ignore": ["10.0.0.5", "10.0.0.1"],
|
||||||
},
|
},
|
||||||
"plugins": { "ls": "ls -al" },
|
"plugins": { "ls": "ls -al" },
|
||||||
"timeout": 0.5
|
"timeout": 0.5,
|
||||||
|
"ssh_key_path": ""
|
||||||
}
|
}
|
||||||
SCHEMA_CONFIG = {
|
SCHEMA_CONFIG = {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"timeout": {"type": "number"},
|
"timeout": {"type": "number"},
|
||||||
"plugins": {"type": "object"},
|
"plugins": {"type": "object"},
|
||||||
|
"ssh_key_path": {"type": "string"},
|
||||||
"cluster": {"type": "object", "properties":{
|
"cluster": {"type": "object", "properties":{
|
||||||
"ip4_from": {"type": "string"},
|
"ip4_from": {"type": "string"},
|
||||||
"ip4_to": {"type": "string"},
|
"ip4_to": {"type": "string"},
|
||||||
"ip4_ignore": {"type": "array", "items":{"type": "string"}}
|
"ip4_ignore": {"type": "array", "items":{"type": "string"}}
|
||||||
}}
|
}}
|
||||||
}
|
},
|
||||||
|
"required":[
|
||||||
|
"timeout",
|
||||||
|
"plugins",
|
||||||
|
"ssh_key_path",
|
||||||
|
"cluster"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue