hcornet 506716e703
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
first sync
2025-03-04 07:59:21 +01:00
..
2025-03-04 07:59:21 +01:00
2025-03-04 07:59:21 +01:00
2025-03-04 07:59:21 +01:00

ONPREM code

  • Onprem means it's supposed to be ran on a server of the customer, and not in the cloud. These are tweaked to hit the API and look for new work throughout workflows. Everything is handled by the initial main.go, which launches the others.

orborus.go - Handles NEW workflows - Same as WALKOFF UMPIRE

  • Executes and controls the docker environment used by workers.
  • A worker is deployed for every execution.
  • The apps are responsible for callbacks to the backend themselves.
  • After the worker is deployed / running, the execution ID is removed from the workflowqueue API.

worker/worker.go - one for each workflow requiring onprem stuff

  • Handles a workflow from start to finish as long as the action ID.
  • Starting and stopping APPS in docker.

app_sdk

Images - all valid images are located here currently

https://hub.docker.com/r/frikky/shuffle

Setup with Dockerhub

Requred - access to: https://hub.docker.com/r/docker/frikky/shuffle/general Login:

docker login

Update worker:

cd worker
docker build . -t frikky/shuffle:worker
docker push frikky/shuffle:worker

Update app_sdk:

cd app_sdk
docker build . -t frikky/shuffle:app_sdk
docker push frikky/shuffle:app_sdk

Update app_sdk_kali:

cd app_sdk_kali
docker build . -t frikky/shuffle:app_sdk_kali
docker push frikky/shuffle:app_sdk_kali

Update app_sdk_blackarch:

cd app_sdk_blackarch
docker build . -t frikky/shuffle:app_sdk_blackarch
docker push frikky/shuffle:app_sdk_blackarch