mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 10:10:12 +01:00
fcdab4d4af
This new prepare script now support offline packaging Signed-off-by: Qian Deng <dengq@vmware.com>
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
import os
|
|
|
|
from g import templates_dir
|
|
from .configs import parse_versions
|
|
from .jinja import render_jinja
|
|
|
|
docker_compose_template_path = os.path.join(templates_dir, 'docker_compose', 'docker-compose.yml.jinja')
|
|
docker_compose_yml_path = '/compose_location/docker-compose.yml'
|
|
|
|
# render docker-compose
|
|
def prepare_docker_compose(configs, with_clair, with_notary, with_chartmuseum):
|
|
versions = parse_versions()
|
|
VERSION_TAG = versions.get('VERSION_TAG') or 'dev'
|
|
REGISTRY_VERSION = versions.get('REGISTRY_VERSION') or 'v2.7.1'
|
|
NOTARY_VERSION = versions.get('NOTARY_VERSION') or 'v0.6.1'
|
|
CLAIR_VERSION = versions.get('CLAIR_VERSION') or 'v2.0.7'
|
|
CHARTMUSEUM_VERSION = versions.get('CHARTMUSEUM_VERSION') or 'v0.8.1'
|
|
|
|
rendering_variables = {
|
|
'version': VERSION_TAG,
|
|
'reg_version': "{}-{}".format(REGISTRY_VERSION, VERSION_TAG),
|
|
'redis_version': VERSION_TAG,
|
|
'notary_version': '{}-{}'.format(NOTARY_VERSION, VERSION_TAG),
|
|
'clair_version': '{}-{}'.format(CLAIR_VERSION, VERSION_TAG),
|
|
'chartmuseum_version': '{}-{}'.format(CHARTMUSEUM_VERSION, VERSION_TAG),
|
|
'data_volume': configs['data_volume'],
|
|
'log_location': configs['log_location'],
|
|
'cert_key_path': configs['cert_key_path'],
|
|
'cert_path': configs['cert_path'],
|
|
'protocol': configs['protocol'],
|
|
'registry_custom_ca_bundle_storage_path': configs['registry_custom_ca_bundle_path'],
|
|
'with_notary': with_notary,
|
|
'with_clair': with_clair,
|
|
'with_chartmuseum': with_chartmuseum
|
|
}
|
|
|
|
render_jinja(docker_compose_template_path, docker_compose_yml_path, **rendering_variables) |