2018-11-15 04:09:57 +01:00
|
|
|
## Settings should be set
|
2020-02-11 06:47:55 +01:00
|
|
|
{%if internal_tls.enabled %}
|
|
|
|
PORT=9443
|
|
|
|
TLS_CERT=/etc/harbor/ssl/chartmuseum.crt
|
|
|
|
TLS_KEY=/etc/harbor/ssl/chartmuseum.key
|
2020-03-16 09:29:59 +01:00
|
|
|
# Uncomment if need mTLS
|
|
|
|
# TLS_CA_CERT=/etc/harbor/ssl/harbor_internal_ca.crt
|
2020-02-11 06:47:55 +01:00
|
|
|
{% else %}
|
2018-11-15 04:09:57 +01:00
|
|
|
PORT=9999
|
2020-02-11 06:47:55 +01:00
|
|
|
{% endif %}
|
2018-11-15 04:09:57 +01:00
|
|
|
|
|
|
|
# Only support redis now. If redis is setup, then enable cache
|
|
|
|
CACHE={{cache_store}}
|
|
|
|
CACHE_REDIS_ADDR={{cache_redis_addr}}
|
|
|
|
CACHE_REDIS_PASSWORD={{cache_redis_password}}
|
|
|
|
CACHE_REDIS_DB={{cache_redis_db_index}}
|
|
|
|
|
|
|
|
# Credential for internal communication
|
|
|
|
BASIC_AUTH_USER=chart_controller
|
|
|
|
BASIC_AUTH_PASS={{core_secret}}
|
|
|
|
|
|
|
|
# Multiple tenants
|
|
|
|
# Must be set with 1 to support project namespace
|
|
|
|
DEPTH=1
|
|
|
|
|
|
|
|
# Backend storage driver: e.g. "local", "amazon", "google" etc.
|
|
|
|
STORAGE={{storage_driver}}
|
|
|
|
|
|
|
|
# Storage driver settings
|
|
|
|
{{all_storage_driver_configs}}
|
|
|
|
|
|
|
|
## Settings with default values. Just put here for future changes
|
|
|
|
DEBUG=false
|
|
|
|
LOG_JSON=true
|
|
|
|
DISABLE_METRICS=false
|
|
|
|
DISABLE_API=false
|
|
|
|
DISABLE_STATEFILES=false
|
|
|
|
ALLOW_OVERWRITE=true
|
2019-05-08 06:59:44 +02:00
|
|
|
{% if chart_absolute_url %}
|
2019-05-06 12:36:33 +02:00
|
|
|
CHART_URL={{public_url}}/chartrepo
|
2019-05-08 06:59:44 +02:00
|
|
|
{% else %}
|
|
|
|
CHART_URL=
|
|
|
|
{% endif %}
|
2018-11-15 04:09:57 +01:00
|
|
|
AUTH_ANONYMOUS_GET=false
|
|
|
|
CONTEXT_PATH=
|
|
|
|
INDEX_LIMIT=0
|
|
|
|
MAX_STORAGE_OBJECTS=0
|
|
|
|
MAX_UPLOAD_SIZE=20971520
|
|
|
|
CHART_POST_FORM_FIELD_NAME=chart
|
|
|
|
PROV_POST_FORM_FIELD_NAME=prov
|
|
|
|
|