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
be63ecd7dc
commit
f8d4827e49
3 changed files with 28 additions and 21 deletions
|
@ -18,6 +18,9 @@ def main():
|
||||||
# List
|
# List
|
||||||
node_cmd_list=node_subparsers.add_parser("list")
|
node_cmd_list=node_subparsers.add_parser("list")
|
||||||
node_cmd_list.add_argument("-g", "--group" ,help="Group to list")
|
node_cmd_list.add_argument("-g", "--group" ,help="Group to list")
|
||||||
|
# Exec
|
||||||
|
node_cmd_list=node_subparsers.add_parser("exec")
|
||||||
|
node_cmd_list.add_argument("cmd",help="Command to run",nargs=argparse.REMAINDER)
|
||||||
|
|
||||||
##### Frontend commands #####
|
##### Frontend commands #####
|
||||||
target_frontend = subparsers.add_parser("frontend")
|
target_frontend = subparsers.add_parser("frontend")
|
||||||
|
@ -54,6 +57,8 @@ def main():
|
||||||
node.ls(args.group)
|
node.ls(args.group)
|
||||||
else:
|
else:
|
||||||
node.ls()
|
node.ls()
|
||||||
|
elif args.command == "exec":
|
||||||
|
node.exec(args.cmd)
|
||||||
else:
|
else:
|
||||||
target_node.print_help(sys.stderr)
|
target_node.print_help(sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
|
@ -1,28 +1,24 @@
|
||||||
import os, json, re
|
import os, json, re
|
||||||
|
from datetime import datetime
|
||||||
from clusterman.config import CONF
|
from clusterman.config import CONF
|
||||||
from clusterman.commands.node import get_node_in_group
|
import clusterman.commands.node as node
|
||||||
|
|
||||||
def info():
|
def info():
|
||||||
nodes=None
|
nodes=node.get_node_list()
|
||||||
if os.path.exists(CONF.NODE_FILE):
|
|
||||||
with open(CONF.NODE_FILE) as f:
|
|
||||||
nodes=json.load(f)
|
|
||||||
|
|
||||||
cache=None
|
cache=None
|
||||||
if os.path.exists(CONF.CACHE_FILE):
|
if os.path.exists(CONF.CACHE_FILE):
|
||||||
with open(CONF.CACHE_FILE) as f:
|
with open(CONF.CACHE_FILE) as f:
|
||||||
cache=json.load(f)
|
cache=json.load(f)
|
||||||
|
|
||||||
# Node
|
# Node
|
||||||
print("Node count: ",end="")
|
print("Node count: "+str(len(nodes)))
|
||||||
print("NA") if nodes==None else print(len(nodes))
|
|
||||||
|
|
||||||
# Groups
|
# Groups
|
||||||
print("Node groups: ",end="")
|
print("Node groups: ",end="")
|
||||||
if len(CONF["cluster"]["groups"]) > 0:
|
if len(CONF["cluster"]["groups"]) > 0:
|
||||||
content=list()
|
content=list()
|
||||||
for group in CONF["cluster"]["groups"].keys():
|
for group in CONF["cluster"]["groups"].keys():
|
||||||
content.append("{}({})".format(group,len(get_node_in_group(group))))
|
content.append("{}({})".format(group,len(node.get_node_in_group(group))))
|
||||||
print(", ".join(content))
|
print(", ".join(content))
|
||||||
else:
|
else:
|
||||||
print("NA")
|
print("NA")
|
||||||
|
@ -31,7 +27,8 @@ def info():
|
||||||
# Cache
|
# Cache
|
||||||
print("Last node scan: ",end="")
|
print("Last node scan: ",end="")
|
||||||
if cache!=None and "last_scan" in CONF["cache"]:
|
if cache!=None and "last_scan" in CONF["cache"]:
|
||||||
print(CONF["cache"]["last_scan"])
|
dt=datetime.fromtimestamp(int(CONF["cache"]["last_scan"]), tz=None)
|
||||||
|
print(dt)
|
||||||
else:
|
else:
|
||||||
print("NA")
|
print("NA")
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,20 @@
|
||||||
import os, json, time, re, sys, subprocess
|
import os, json, time, re, sys, subprocess
|
||||||
from clusterman.config import CONF
|
from clusterman.config import CONF
|
||||||
|
|
||||||
|
def get_node_list():
|
||||||
def get_node_in_group(group):
|
|
||||||
nodes_path=CONF.NODE_FILE
|
nodes_path=CONF.NODE_FILE
|
||||||
nodes=None
|
|
||||||
if os.path.exists(nodes_path):
|
if os.path.exists(nodes_path):
|
||||||
with open(nodes_path) as f:
|
with open(nodes_path) as f:
|
||||||
nodes=json.load(f)
|
nodes=json.load(f)
|
||||||
|
return nodes
|
||||||
|
return list()
|
||||||
|
|
||||||
|
|
||||||
|
def get_node_in_group(group):
|
||||||
|
nodes=get_node_list()
|
||||||
# Search
|
# Search
|
||||||
ingroup=list()
|
ingroup=list()
|
||||||
if nodes is not None and group in CONF["cluster"]["groups"]:
|
if len(nodes) > 0 and group in CONF["cluster"]["groups"]:
|
||||||
patterns=[re.compile(pattern) for pattern in CONF["cluster"]["groups"][group]]
|
patterns=[re.compile(pattern) for pattern in CONF["cluster"]["groups"][group]]
|
||||||
for node in nodes:
|
for node in nodes:
|
||||||
for pattern in patterns:
|
for pattern in patterns:
|
||||||
|
@ -18,16 +22,11 @@ def get_node_in_group(group):
|
||||||
ingroup.append(node)
|
ingroup.append(node)
|
||||||
break;
|
break;
|
||||||
return ingroup
|
return ingroup
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def ls(group=None):
|
def ls(group=None):
|
||||||
nodes_path=CONF.NODE_FILE
|
nodes_path=CONF.NODE_FILE
|
||||||
nodes=None
|
nodes=get_node_list()
|
||||||
if os.path.exists(nodes_path):
|
if len(nodes)<=0:
|
||||||
with open(nodes_path) as f:
|
|
||||||
nodes=json.load(f)
|
|
||||||
else:
|
|
||||||
print("Please perform a scan before")
|
print("Please perform a scan before")
|
||||||
exit(0)
|
exit(0)
|
||||||
# Print nodes
|
# Print nodes
|
||||||
|
@ -88,3 +87,9 @@ def check(timeout):
|
||||||
print("Success: All nodes are reachable")
|
print("Success: All nodes are reachable")
|
||||||
else:
|
else:
|
||||||
print("Error: Some of your nodes are not reachable")
|
print("Error: Some of your nodes are not reachable")
|
||||||
|
|
||||||
|
def exec(command):
|
||||||
|
print(["ssh", "-i", CONF["ssh_key_path"], command])
|
||||||
|
for ip in get_node_list():
|
||||||
|
print("----- Node {} -----".format(ip))
|
||||||
|
subprocess.run(["ssh", "-i", CONF["ssh_key_path"],"root@"+ip, " ".join(command)])
|
||||||
|
|
Loading…
Add table
Reference in a new issue