mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 18:55:18 +01:00
250360307b
Fix typo in Makefile under photon Fix version tag issue of redis container Assign container name for redis container Update docker compose template to enable network for redis Remove exposed ports of redis from compose yaml tpl
31 lines
616 B
YAML
31 lines
616 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:
|
|
#0 means unlimited
|
|
workers: 10
|
|
backend: "redis"
|
|
#Additional config if use 'redis' backend
|
|
#TODO: switch to internal redis endpoint and namespace.
|
|
redis_pool:
|
|
host: "redis"
|
|
port: 6379
|
|
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/"
|