runner.json 671 B

123456789101112131415161718192021222324
  1. {
  2. "grpc_port": 9011,
  3. "runner_id": "${RUNNER_ID:runner-1}",
  4. "webserver_address": "${WEBSERVER_ADDRESS:localhost:8090}",
  5. "node_sync_address": "${NODE_SYNC_ADDRESS:localhost:9012}",
  6. "credential_service_address": "${CREDENTIAL_SERVICE_ADDRESS:localhost:9013}",
  7. "database_address": "${DATABASE_ADDRESS:localhost:9010}",
  8. "node_sync": {
  9. "enabled": true,
  10. "reconnect_interval_ms": 5000
  11. },
  12. "registration": {
  13. "heartbeat_interval_sec": 10,
  14. "max_concurrent_executions": 10
  15. },
  16. "execution": {
  17. "default_timeout_ms": 60000,
  18. "max_memory_per_script_mb": 64
  19. },
  20. "logging": {
  21. "level": "${LOG_LEVEL:info}",
  22. "file": "${LOG_FILE:}"
  23. }
  24. }