mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-18 22:57:38 +01:00
6005101c95
Update config.yaml.jinja to remove notification Change api/ping in core/Dockerfile Signed-off-by: stonezdj <stonezdj@gmail.com>
36 lines
641 B
Django/Jinja
36 lines
641 B
Django/Jinja
version: 0.1
|
|
log:
|
|
level: {{log_level}}
|
|
fields:
|
|
service: registry
|
|
storage:
|
|
cache:
|
|
layerinfo: redis
|
|
{{storage_provider_info}}
|
|
maintenance:
|
|
uploadpurging:
|
|
enabled: false
|
|
delete:
|
|
enabled: true
|
|
{% if storage_redirect_disabled %}
|
|
redirect:
|
|
disable: true
|
|
{% endif %}
|
|
redis:
|
|
addr: {{redis_host}}:{{redis_port}}
|
|
password: {{redis_password}}
|
|
db: {{redis_db_index_reg}}
|
|
http:
|
|
addr: :5000
|
|
secret: placeholder
|
|
debug:
|
|
addr: localhost:5001
|
|
auth:
|
|
htpasswd:
|
|
realm: harbor-registry-basic-realm
|
|
path: /etc/registry/passwd
|
|
validation:
|
|
disabled: true
|
|
compatibility:
|
|
schema1:
|
|
enabled: true |