1#!/bin/bash
 2
 3# Build time configuration options
 4# Values belong in here if they are used in Dockerfiles for buiding images
 5# They can also be accessed at runtime in the *start*.sh and docker-compose.yaml files
 6
 7# Repository name for the project code (top level directory name)
 8CHART_REPO_NAME=chartepssg
 9
10# The project name gets expanded into several config files (subdirectory name)
11CHART_PROJECT_NAME=chartepssg
12
13# Command line launcher tool name from bin/ directory
14CHART_LAUNCHER_NAME=chartepssg
15
16# Image tag for the CHART-framework (core) image to import
17CHART_FRAMEWORK_IMAGE_NAME=${CHART_FRAMEWORK_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/framework:epssg-3.5}
18
19# Image tag for the project image to create
20CHART_PROJECT_IMAGE_NAME=${CHARTEPSSG_PROJECT_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/chartepssg:3.5}
21
22# Image tag for the proxy image to use
23# (not used for building - it's only used by docker-proxy-start.sh but
24#  it's simple to put it here)
25CHART_PROXY_IMAGE_NAME=${CHART_PROXY_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/proxy:1.5}
26
27# For the "invoke dev" script to use to create subrepos, and for build.sh
28# to check correct branches
29
30# Subdirectory for CHART framework
31GIT_FRAMEWORK_DIR=chart
32# Link to gitlab repo for framework
33# Set $CHART_GITLAB=https://gitlab.eumetsat.int/chart/ for https retrieval
34GIT_FRAMEWORK_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/chart.git
35# Set the required branch for this release
36GIT_FRAMEWORK_BRANCH=release/epssg-3.5
37# Git remote server name
38GIT_FRAMEWORK_REMOTE=origin
39
40# configure the main DU
41GIT_DU_DIR=chartepssg_du
42GIT_DU_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/charteps_sg_du.git
43GIT_DU_BRANCH=release-3.5
44GIT_DU_REMOTE=origin
45
46# configure the SRDB DU
47GIT_DU_SRDB_DIR=chartepssg_srdb_du
48GIT_DU_SRDB_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/charteps_sg_srdb_du.git
49GIT_DU_SRDB_BRANCH=release/3.5
50GIT_DU_SRDB_REMOTE=origin