cyancow / ibex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ibex

ibex, running scripts on large scale machines

compile

# export GOPROXY=https://goproxy.cn
make

run server

mysql < sql/ibex.sql
./ibex server

run agentd

./ibex agentd

test

# create task
curl --location --request POST 'localhost:10090/ibex/v1/tasks' \
-u ibex:ibex \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "just a echo",
    "account": "root",
    "batch": 0,
    "tolerance": 0,
    "timeout": 10,
    "pause": "",
    "script": "#!/bin/sh\necho hello;date > nice.date;echo world",
    "action": "start",
    "creator": "qinxiaohui",
    "hosts": ["bogon"]
}'

TODO

[] task done flag

About


Languages

Language:Go 99.0%Language:Makefile 0.6%Language:Shell 0.3%Language:Dockerfile 0.1%