2019-05-16 09:15:42 +02:00
# Configuration file of Harbor
2016-04-04 08:04:02 +02:00
2019-05-16 09:15:42 +02:00
# The IP address or hostname to access admin UI and registry service.
# DO NOT use localhost or 127.0.0.1, because Harbor needs to be accessed by external clients.
2018-11-15 04:09:57 +01:00
hostname : reg.mydomain.com
2019-04-09 11:19:05 +02:00
2019-04-29 12:51:00 +02:00
# http related config
2019-04-01 08:20:16 +02:00
http :
2019-04-09 11:19:05 +02:00
# port for http, default is 80. If https enabled, this port will redirect to https port
2019-04-01 08:20:16 +02:00
port : 80
2019-04-02 09:21:50 +02:00
2019-04-29 12:51:00 +02:00
# https related config
2019-10-23 08:08:15 +02:00
https :
# https port for harbor, default is 443
port : 443
# The path of cert and key files for nginx
certificate : /your/certificate/path
private_key : /your/private/key/path
2019-04-01 08:20:16 +02:00
2019-04-29 12:51:00 +02:00
# Uncomment external_url if you want to enable external proxy
# And when it enabled the hostname will no longer used
2019-04-01 08:20:16 +02:00
# external_url: https://reg.mydomain.com:8433
# The initial password of Harbor admin
# It only works in first time to install harbor
# Remember Change the admin password from UI after launching Harbor.
2018-11-15 04:09:57 +01:00
harbor_admin_password : Harbor12345
2016-04-04 08:04:02 +02:00
2019-05-16 09:15:42 +02:00
# Harbor DB configuration
2019-02-25 11:16:35 +01:00
database :
2019-05-16 09:15:42 +02:00
# The password for the root user of Harbor DB. Change this before any production use.
2019-02-25 11:16:35 +01:00
password : root123
2019-08-12 11:14:57 +02:00
# The maximum number of connections in the idle connection pool. If it <=0, no idle connections are retained.
max_idle_conns : 50
# The maximum number of open connections to the database. If it <= 0, then there is no limit on the number of open connections.
# Note: the default number of connections is 100 for postgres.
max_open_conns : 100
2019-02-25 11:16:35 +01:00
2019-04-01 08:20:16 +02:00
# The default data volume
data_volume : /data
2019-02-25 11:16:35 +01:00
2019-04-02 14:08:26 +02:00
# Harbor Storage settings by default is using /data dir on local filesystem
# Uncomment storage_service setting If you want to using external storage
# storage_service:
# # ca_bundle is the path to the custom root ca certificate, which will be injected into the truststore
# # of registry's and chart repository's containers. This is usually needed when the user hosts a internal storage with self signed certificate.
# ca_bundle:
2019-04-01 08:20:16 +02:00
2019-04-02 14:08:26 +02:00
# # storage backend, default is filesystem, options include filesystem, azure, gcs, s3, swift and oss
# # for more info about this configuration please refer https://docs.docker.com/registry/configuration/
# filesystem:
# maxthreads: 100
2019-04-30 11:05:27 +02:00
# # set disable to true when you want to disable registry redirect
# redirect:
# disabled: false
2019-02-25 11:16:35 +01:00
2019-04-02 14:08:26 +02:00
# Clair configuration
2019-08-12 11:14:57 +02:00
clair :
2019-02-25 11:16:35 +01:00
# The interval of clair updaters, the unit is hour, set to 0 to disable the updaters.
updaters_interval : 12
2019-04-01 08:20:16 +02:00
jobservice :
2019-08-12 11:14:57 +02:00
# Maximum number of job workers in job service
2019-04-01 08:20:16 +02:00
max_job_workers : 10
2019-08-07 14:56:31 +02:00
notification :
# Maximum retry count for webhook job
webhook_job_max_retry : 10
2019-05-08 06:59:44 +02:00
chart :
2019-05-16 09:15:42 +02:00
# Change the value of absolute_url to enabled can enable absolute url in chart
2019-05-08 06:59:44 +02:00
absolute_url : disabled
2019-04-01 08:20:16 +02:00
# Log configurations
log :
2019-05-15 04:28:52 +02:00
# options are debug, info, warning, error, fatal
2019-04-01 08:20:16 +02:00
level : info
2019-06-21 08:18:28 +02:00
# configs for logs in local storage
local :
# Log files are rotated log_rotate_count times before being removed. If count is 0, old versions are removed rather than rotated.
rotate_count : 50
2019-08-12 11:14:57 +02:00
# Log files are rotated only if they grow bigger than log_rotate_size bytes. If size is followed by k, the size is assumed to be in kilobytes.
# If the M is used, the size is in megabytes, and if G is used, the size is in gigabytes. So size 100, size 100k, size 100M and size 100G
2019-06-21 08:18:28 +02:00
# are all valid.
rotate_size : 200M
# The directory on your host that store log
location : /var/log/harbor
# Uncomment following lines to enable external syslog endpoint.
# external_endpoint:
# # protocol used to transmit log to external endpoint, options is tcp or udp
# protocol: tcp
# # The host of external endpoint
# host: localhost
# # Port of external endpoint
# port: 5140
2019-04-01 08:20:16 +02:00
#This attribute is for migrator to detect the version of the .cfg file, DO NOT MODIFY!
2019-11-07 10:06:20 +01:00
_version : 1.10 .0
2018-03-15 07:21:53 +01:00
2019-05-14 05:26:44 +02:00
# Uncomment external_database if using external database.
2019-04-01 08:20:16 +02:00
# external_database:
2019-05-10 04:44:05 +02:00
# harbor:
2019-05-10 07:41:47 +02:00
# host: harbor_db_host
# port: harbor_db_port
# db_name: harbor_db_name
# username: harbor_db_username
# password: harbor_db_password
2019-05-10 04:44:05 +02:00
# ssl_mode: disable
2019-08-29 09:04:10 +02:00
# max_idle_conns: 2
# max_open_conns: 0
2019-05-10 04:44:05 +02:00
# clair:
2019-05-10 07:41:47 +02:00
# host: clair_db_host
# port: clair_db_port
# db_name: clair_db_name
# username: clair_db_username
# password: clair_db_password
2019-05-10 04:44:05 +02:00
# ssl_mode: disable
# notary_signer:
2019-05-10 07:41:47 +02:00
# host: notary_signer_db_host
# port: notary_signer_db_port
# db_name: notary_signer_db_name
# username: notary_signer_db_username
# password: notary_signer_db_password
2019-05-10 04:44:05 +02:00
# ssl_mode: disable
# notary_server:
2019-05-10 07:41:47 +02:00
# host: notary_server_db_host
# port: notary_server_db_port
# db_name: notary_server_db_name
# username: notary_server_db_username
# password: notary_server_db_password
2019-05-10 04:44:05 +02:00
# ssl_mode: disable
2019-04-01 08:20:16 +02:00
2019-04-29 12:51:00 +02:00
# Uncomment external_redis if using external Redis server
2019-04-01 08:20:16 +02:00
# external_redis:
# host: redis
# port: 6379
# password:
# # db_index 0 is for core, it's unchangeable
# registry_db_index: 1
# jobservice_db_index: 2
2019-04-02 14:08:26 +02:00
# chartmuseum_db_index: 3
2019-11-13 03:35:21 +01:00
# clair_db_index: 4
2019-05-06 10:32:00 +02:00
# Uncomment uaa for trusting the certificate of uaa instance that is hosted via self-signed cert.
# uaa:
2019-05-10 04:44:05 +02:00
# ca_file: /path/to/ca
2019-08-10 17:59:33 +02:00
# Global proxy
# Config http proxy for components, e.g. http://my.proxy.com:3128
# Components doesn't need to connect to each others via http proxy.
# Remove component from `components` array if want disable proxy
# for it. If you want use proxy for replication, MUST enable proxy
# for core and jobservice, and set `http_proxy` and `https_proxy`.
# Add domain to the `no_proxy` field, when you want disable proxy
# for some special registry.
proxy :
http_proxy :
https_proxy :
2019-11-25 10:28:11 +01:00
# no_proxy endpoints will appended to 127.0.0.1,localhost,.local,.internal,log,db,redis,nginx,core,portal,postgresql,jobservice,registry,registryctl,clair,chartmuseum,notary-server
no_proxy :
2019-08-10 17:59:33 +02:00
components :
- core
- jobservice
- clair