first share

This commit is contained in:
dcore94 2020-07-16 12:52:02 +02:00
commit 9128f4da94
2 changed files with 33 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: '3'
services:
conductor:
image: "nubisware/netflixoss-conductor:latest"
container_name: conductorserver
ports:
- "5000:5000"
- "8080:8080"
networks:
- orchestrator
pyworkers:
image: "nubisware/conductor-py-workers:latest"
container_name: pyworkers
networks:
- orchestrator
networks:
orchestrator:

16
tasks/pyrest.json Normal file
View File

@ -0,0 +1,16 @@
[
{
"name" : "pyrest",
"description" : "Execute an HTTP request with pyrest worker",
"inputKeys" : ["url", "body", "contentType", "method", "accept", "headers", "connectionTimeout", "readTimeout", "expect"],
"outputKeys" : ["body", "status", "reason", "headers"],
"ownerEmail" : "marco.lettere@nubisware.com"
},
{
"name" : "pyexec",
"description" : "Execute PyExec operations. Currently allowed operations: Nop, Identity, Http, Eval",
"inputKeys" : ["operation"],
"outputKeys" : ["output"],
"ownerEmail" : "marco.lettere@nubisware.com"
}
]