* chore(vagrant): initial vagrantfile * chore(vagrant): adding instructions after installation * chore(vagrant): Adding vagrant user to docker group * chore(vagrant): use local docker daemon for k3s * chore(vagrant): fix comment * chore(vagrant): adding hostname in /etc/hosts * chore(vagrant): fix doc * chore(vagrant): limiting cpu * chore(frontend): initialize dev env * chore(docker): adding dockerignore * chore(dockerfile): using cache for fasten build * chore(dockerignore): update * chore(docker): build optimizations * chore(build): all components build option * chore(build): utilities build fix * chore(scrpt): remove debug message * chore(vagrant): provision using stable branch always Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
71 lines
3 KiB
Bash
71 lines
3 KiB
Bash
#!/bin/bash
|
|
|
|
# Script to build alerts module
|
|
# flags to accept:
|
|
# envarg: build for enterprise edition.
|
|
# Default will be OSS build.
|
|
|
|
# Usage: IMAGE_TAG=latest DOCKER_REPO=myDockerHubID bash build.sh <ee>
|
|
|
|
function make_submodule() {
|
|
[[ $1 != "ee" ]] && {
|
|
# -- this part was generated by modules_lister.py --
|
|
mkdir alerts
|
|
cp -R ./{app_alerts,schemas}.py ./alerts/
|
|
mkdir -p ./alerts/chalicelib/
|
|
cp -R ./chalicelib/__init__.py ./alerts/chalicelib/
|
|
mkdir -p ./alerts/chalicelib/core/
|
|
cp -R ./chalicelib/core/{__init__,alerts_processor,alerts_listener,sessions,events,issues,sessions_metas,metadata,projects,users,authorizers,tenants,assist,events_ios,sessions_mobs,errors,sourcemaps,sourcemaps_parser,resources,performance_event,alerts,notifications,slack,collaboration_slack,webhook}.py ./alerts/chalicelib/core/
|
|
mkdir -p ./alerts/chalicelib/utils/
|
|
cp -R ./chalicelib/utils/{__init__,TimeUTC,pg_client,helper,event_filter_definition,dev,email_helper,email_handler,smtp,s3,metrics_helper}.py ./alerts/chalicelib/utils/
|
|
# -- end of generated part
|
|
}
|
|
[[ $1 == "ee" ]] && {
|
|
# -- this part was generated by modules_lister.py --
|
|
mkdir alerts
|
|
cp -R ./{app_alerts,schemas,schemas_ee}.py ./alerts/
|
|
mkdir -p ./alerts/chalicelib/
|
|
cp -R ./chalicelib/__init__.py ./alerts/chalicelib/
|
|
mkdir -p ./alerts/chalicelib/core/
|
|
cp -R ./chalicelib/core/{__init__,alerts_processor,alerts_listener,sessions,events,issues,sessions_metas,metadata,projects,users,authorizers,tenants,roles,assist,events_ios,sessions_mobs,errors,metrics,sourcemaps,sourcemaps_parser,resources,performance_event,alerts,notifications,slack,collaboration_slack,webhook}.py ./alerts/chalicelib/core/
|
|
mkdir -p ./alerts/chalicelib/utils/
|
|
cp -R ./chalicelib/utils/{__init__,TimeUTC,pg_client,helper,event_filter_definition,dev,SAML2_helper,email_helper,email_handler,smtp,s3,args_transformer,ch_client,metrics_helper}.py ./alerts/chalicelib/utils/
|
|
# -- end of generated part
|
|
}
|
|
cp -R ./{Dockerfile.alerts,requirements.txt,.env.default,entrypoint_alerts.sh} ./alerts/
|
|
cp -R ./chalicelib/utils/html ./alerts/chalicelib/utils/html
|
|
}
|
|
|
|
git_sha1=${IMAGE_TAG:-$(git rev-parse HEAD)}
|
|
envarg="default-foss"
|
|
check_prereq() {
|
|
which docker || {
|
|
echo "Docker not installed, please install docker."
|
|
exit=1
|
|
}
|
|
[[ exit -eq 1 ]] && exit 1
|
|
}
|
|
|
|
function build_api(){
|
|
tag=""
|
|
# Copy enterprise code
|
|
[[ $1 == "ee" ]] && {
|
|
cp -rf ../ee/api/* ./
|
|
envarg="default-ee"
|
|
tag="ee-"
|
|
}
|
|
make_submodule $1
|
|
cd alerts
|
|
docker build -f ./Dockerfile.alerts --build-arg envarg=$envarg -t ${DOCKER_REPO:-'local'}/alerts:${git_sha1} .
|
|
cd ..
|
|
rm -rf alerts
|
|
[[ $PUSH_IMAGE -eq 1 ]] && {
|
|
docker push ${DOCKER_REPO:-'local'}/alerts:${git_sha1}
|
|
docker tag ${DOCKER_REPO:-'local'}/alerts:${git_sha1} ${DOCKER_REPO:-'local'}/alerts:${tag}latest
|
|
docker push ${DOCKER_REPO:-'local'}/alerts:${tag}latest
|
|
}
|
|
echo "completed alerts build"
|
|
}
|
|
|
|
check_prereq
|
|
build_api $1
|