diff --git a/Makefile b/Makefile index 4bf3065..31a970e 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,12 @@ build: clean go build . +run-tools: + docker compose -f docker-compose.tools.yml up -d + +build-monitord: + go build -o ../oc-monitord ../oc-monitord + run: ./oc-schedulerd @@ -21,4 +27,6 @@ publish-registry: all: docker publish-kind publish-registry +dev: run-tools build-monitord build run + .PHONY: build run clean docker publish-kind publish-registry \ No newline at end of file diff --git a/README.md b/README.md index aaa169c..47a7126 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ OC-Scheduler retrieves the content of submitted workflows and prepare them to be executed. +make dev + ## Parsing From a workflow's name we retrieve the xml graph associated and parse it in order to create the object representing each componant.