mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
0ffa6e076c
this commit is to specrate the redis_url into host,port,pwd and index for different components, and make it possible to set external redis server.
30 lines
639 B
YAML
30 lines
639 B
YAML
---
|
|
#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:
|
|
#Worker concurrency
|
|
workers: $max_job_workers
|
|
backend: "redis"
|
|
#Additional config if use 'redis' backend
|
|
redis_pool:
|
|
#redis://[arbitrary_username:password@]ipaddress:port/database_index
|
|
redis_url: $redis_url
|
|
namespace: "harbor_job_service_namespace"
|
|
#Logger for job
|
|
logger:
|
|
path: "/var/log/jobs"
|
|
level: "INFO"
|
|
archive_period: 14 #days
|
|
#Admin server endpoint
|
|
admin_server: "http://adminserver:8080/"
|