mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-29 21:54:13 +01:00
eb470501be
1. Add configs in prepare 2. Add models and config items in Core 3. Encapdulate getting metric in commom package 4. Add a middleware for global request to collect 3 metrics Signed-off-by: DQ <dengq@vmware.com>
60 lines
1.1 KiB
Django/Jinja
60 lines
1.1 KiB
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:
|
|
{% if sentinel_master_set %}
|
|
# sentinel hosts with comma
|
|
addr: {{redis_host}}
|
|
sentinelMasterSet: {{sentinel_master_set}}
|
|
{% else %}
|
|
addr: {{redis_host}}
|
|
{% endif %}
|
|
readtimeout: 10s
|
|
writetimeout: 10s
|
|
dialtimeout: 10s
|
|
password: {{redis_password}}
|
|
db: {{redis_db_index_reg}}
|
|
http:
|
|
{% if internal_tls.enabled %}
|
|
addr: :5443
|
|
tls:
|
|
certificate: /etc/harbor/tls/registry.crt
|
|
key: /etc/harbor/tls/registry.key
|
|
minimumtls: tls1.2
|
|
{% else %}
|
|
addr: :5000
|
|
{% endif %}
|
|
secret: placeholder
|
|
debug:
|
|
{% if metric.enabled %}
|
|
addr: :{{ metric.port }}
|
|
prometheus:
|
|
enabled: true
|
|
path: {{ metric.path }}
|
|
{% else %}
|
|
addr: localhost:5001
|
|
{% endif %}
|
|
auth:
|
|
htpasswd:
|
|
realm: harbor-registry-basic-realm
|
|
path: /etc/registry/passwd
|
|
validation:
|
|
disabled: true
|
|
compatibility:
|
|
schema1:
|
|
enabled: true |