2018-03-22 12:48:22 +01:00
|
|
|
---
|
|
|
|
#Protocol used to serve
|
|
|
|
protocol: "http"
|
|
|
|
|
|
|
|
#Config certification if use 'https' protocol
|
|
|
|
#https_config:
|
|
|
|
# cert: "server.crt"
|
|
|
|
# key: "server.key"
|
|
|
|
|
|
|
|
#Server listening port
|
|
|
|
port: 8080
|
|
|
|
|
|
|
|
#Worker pool
|
|
|
|
worker_pool:
|
|
|
|
#0 means unlimited
|
|
|
|
workers: 10
|
|
|
|
backend: "redis"
|
|
|
|
#Additional config if use 'redis' backend
|
|
|
|
#TODO: switch to internal redis endpoint and namespace.
|
|
|
|
redis_pool:
|
2018-03-30 07:22:10 +02:00
|
|
|
host: "redis"
|
2018-03-22 12:48:22 +01:00
|
|
|
port: 6379
|
2018-03-30 07:22:10 +02:00
|
|
|
namespace: "harbor_job_service_namespace"
|
2018-03-22 12:48:22 +01:00
|
|
|
#Logger for job
|
2018-03-26 12:07:21 +02:00
|
|
|
logger:
|
|
|
|
path: "/var/log/jobs"
|
|
|
|
level: "INFO"
|
|
|
|
archive_period: 14 #days
|
|
|
|
#Admin server endpoint
|
|
|
|
admin_server: "http://adminserver:8080/"
|