#!/bin/bash # Build time configuration options # Values belong in here if they are used in Dockerfiles for buiding images # They can also be accessed at runtime in the *start*.sh and docker-compose.yaml files # Repository name for the project code (top level directory name) CHART_REPO_NAME=chartepssg # The project name gets expanded into several config files (subdirectory name) CHART_PROJECT_NAME=chartepssg # Command line launcher tool name from bin/ directory CHART_LAUNCHER_NAME=chartepssg # Image tag for the CHART-framework (core) image to import CHART_FRAMEWORK_IMAGE_NAME=${CHART_FRAMEWORK_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/framework:epssg-3.5} # Image tag for the project image to create CHART_PROJECT_IMAGE_NAME=${CHARTEPSSG_PROJECT_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/chartepssg:3.5} # Image tag for the proxy image to use # (not used for building - it's only used by docker-proxy-start.sh but # it's simple to put it here) CHART_PROXY_IMAGE_NAME=${CHART_PROXY_IMAGE_NAME:-harbor.opscloud.eumetsat.int/chart/proxy:1.5} # For the "invoke dev" script to use to create subrepos, and for build.sh # to check correct branches # Subdirectory for CHART framework GIT_FRAMEWORK_DIR=chart # Link to gitlab repo for framework # Set $CHART_GITLAB=https://gitlab.eumetsat.int/chart/ for https retrieval GIT_FRAMEWORK_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/chart.git # Set the required branch for this release GIT_FRAMEWORK_BRANCH=release/epssg-3.5 # Git remote server name GIT_FRAMEWORK_REMOTE=origin # configure the main DU GIT_DU_DIR=chartepssg_du GIT_DU_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/charteps_sg_du.git GIT_DU_BRANCH=release-3.5 GIT_DU_REMOTE=origin # configure the SRDB DU GIT_DU_SRDB_DIR=chartepssg_srdb_du GIT_DU_SRDB_REPO=${CHART_GITLAB:-git@gitlab.eumetsat.int:chart}/charteps_sg_srdb_du.git GIT_DU_SRDB_BRANCH=release/3.5 GIT_DU_SRDB_REMOTE=origin