## Configuration file of Harbor #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. hostname: reg.mydomain.com # core, harbor http: port: 80 # https: # port: 443 # #The path of cert and key files for nginx, they are applied only the protocol is set to https # certificate: /your/certificate/path # private_key: /your/private/key/path # Uncomment extearnal_url if you want to enable external proxy # And when it enabled the hostname will no longger used # 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. harbor_admin_password: Harbor12345 ## Harbor DB configuration database: #The password for the root user of Harbor DB. Change this before any production use. password: root123 # The default data volume data_volume: /data # Harbor Storage settings storage_service: # registry_custom_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: # storaged in $data_volume/ # filesystem: # maxthreads: 100 # azure: # accountname: accountname # accountkey: base64encodedaccountkey # container: containername # gcs: # bucket: bucketname # keyfile: /path/to/keyfile # rootdirectory: /gcs/object/name/prefix # chunksize: 5242880 # s3: # accesskey: awsaccesskey # secretkey: awssecretkey # region: us-west-1 # regionendpoint: http://myobjects.local # bucket: bucketname # encrypt: true # keyid: mykeyid # secure: true # v4auth: true # chunksize: 5242880 # multipartcopychunksize: 33554432 # multipartcopymaxconcurrency: 100 # multipartcopythresholdsize: 33554432 # rootdirectory: /s3/object/name/prefix # swift: # username: username # password: password # authurl: https://storage.myprovider.com/auth/v1.0 or https://storage.myprovider.com/v2.0 or https://storage.myprovider.com/v3/auth # tenant: tenantname # tenantid: tenantid # domain: domain name for Openstack Identity v3 API # domainid: domain id for Openstack Identity v3 API # insecureskipverify: true # region: fr # container: containername # rootdirectory: /swift/object/name/prefix # oss: # accesskeyid: accesskeyid # accesskeysecret: accesskeysecret # region: OSS region name # endpoint: optional endpoints # internal: optional internal endpoint # bucket: OSS bucket # encrypt: optional data encryption setting # secure: optional ssl setting # chunksize: optional size valye # rootdirectory: optional root directory # Clair DB configuration clair: # The interval of clair updaters, the unit is hour, set to 0 to disable the updaters. updaters_interval: 12 # Config http proxy for Clair, e.g. http://my.proxy.com:3128 # Clair doesn't need to connect to harbor internal components via http proxy. http_proxy: https_proxy: no_proxy: 127.0.0.1,localhost,core,registry jobservice: # Maximum number of job workers in job service max_job_workers: 10 # Log configurations log: # debug, warn, error level: info # 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 # 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 # are all valid. rotate_size: 200M # The directory on your host that store log location: /var/log/harbor #This attribute is for migrator to detect the version of the .cfg file, DO NOT MODIFY! _version: 1.7.0 # Uncomment if using external database. Only support postgres. # external_database: # host: postgresql # port: 5432 # username: postgres # password: root123 # ssl_mode: disable # Umcomments if using external Redis server # external_redis: # # Redis connection address # host: redis # # Redis connection port # port: 6379 # # Redis connection password # password: # # db_index 0 is for core, it's unchangeable # registry_db_index: 1 # jobservice_db_index: 2 # chartmuseum_db_index: 3