-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:ls1intum/hades into feat/add-test-s…
…uite
- Loading branch information
Showing
20 changed files
with
166 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
### Redis Options ### | ||
REDIS_ADDR=localhost:6379 # Address of the Redis server | ||
REDIS_PWD=notverysecret # Password for the Redis server | ||
REDIS_TLS_ENABLED=false # Whether to use TLS for the Redis connection | ||
|
||
### HadesAPI Options ### | ||
API_PORT=8080 # Port for the API to listen on (default: 8080) | ||
AUTH_KEY="" # Key used for Basic Auth with the API (default: "" for no auth) | ||
PROMETHEUS_ADDRESS="" # Address for Prometheus metrics to be exposed (default: "" for no metrics) | ||
RETENTION_IN_MIN=30 # Time in minutes to keep completed jobs for monitoring (default: 30) | ||
MAX_RETRIES=3 # Number of times to retry a job before marking it as failed (default: 3) | ||
TIMEOUT_IN_MIN=0 # How long a task can run before being killed (default: 0 for no limit) | ||
|
||
### HadesScheduler Options ### | ||
CONCURRENCY=1 # Number of jobs to run concurrently (default: 1) | ||
|
||
### DockerScheduler Options ### | ||
DOCKER_HOST="unix:///var/run/docker.sock" # Docker host to connect to (default: unix:///var/run/docker.sock) | ||
DOCKER_SCRIPT_EXECUTOR="/bin/bash -c" # Path to the script executor to use (default: /bin/sh) | ||
DOCKER_CPU_LIMIT=2 # Number of CPUs to limit the container to (see Docker documentation for more info) | ||
DOCKER_MEMORY_LIMIT=2g # Memory limit for the container (see Docker documentation for more info) | ||
DOCKER_CONTAINER_AUTOREMOVE=true # Automatically remove containers after they finish running (default: true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.