mirror of
https://github.com/prymitive/karma
synced 2026-05-13 03:56:59 +00:00
Drop config.dir and use config.file to pass full path to the config file. Passing two options is just an unnecessary complexity Fixes #22.
32 lines
735 B
Plaintext
32 lines
735 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
pidfile=/tmp/supervisord.pid
|
|
logfile = /tmp/supervisord.log
|
|
logfile_maxbytes = 1MB
|
|
logfile_backups=0
|
|
loglevel = info
|
|
|
|
[program:alertmanager]
|
|
command=/alertmanager --config.file=/etc/alertmanager.yaml --storage.path=/tmp/alertmanager
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:generator]
|
|
command=/generator.py
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:karma]
|
|
command=/karma --config.file /etc/karma.yaml
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|