Files
codeocean/config/code_ocean.yml.example
Felix Auringer d0d1b1bffd Introduce strategy for runner behavior
The runner model is only a class responsible for storing information
now. Based on the configuration it picks a strategy for the runner
management. The Poseidon strategy is already implemented and tested.
The Docker strategy will follow.
2021-11-01 17:12:49 +01:00

35 lines
607 B
Plaintext

default: &default
flowr:
enabled: false
answers_per_query: 3
code_pilot:
enabled: false
url: //localhost:3000
codeharbor:
enabled: false
codeocean_events:
enabled: false
prometheus_exporter:
enabled: false
runner_management:
strategy: poseidon
url: https://runners.example.org
unused_runner_expiration_time: 180
development:
<<: *default
flowr:
enabled: true
answers_per_query: 3
codeharbor:
enabled: true
url: https://codeharbor.openhpi.de
production:
<<: *default
prometheus_exporter:
enabled: true
test:
<<: *default