Update pipeline (DRY)

This commit is contained in:
Santiago Lo Coco 2023-11-07 10:58:04 -03:00
parent f2bee0960d
commit 234646749f
2 changed files with 58 additions and 65 deletions

View File

@ -23,11 +23,26 @@ stages:
- deliver - deliver
- deploy - deploy
.changes-backend: &changes-backend
changes:
- auth-domain/**/*
- flights-domain/**/*
- subscription-domain/**/*
- gateway/**/*
.changes-frontend: &changes-frontend
changes:
- screen-domain/**/*
- browser-domain/**/*
preparation: preparation:
stage: prep stage: prep
tags: tags:
- dev - dev
before_script: [] before_script: []
rules:
- *changes-frontend
- *changes-backend
script: script:
- export BUILD_ID=$(date +%Y%m%d%H%M) - export BUILD_ID=$(date +%Y%m%d%H%M)
- echo "BUILD_ID=${BUILD_ID}" > context.env - echo "BUILD_ID=${BUILD_ID}" > context.env
@ -65,8 +80,12 @@ preparation:
stage: build stage: build
tags: tags:
- dev - dev
rules:
- *changes-frontend
- *changes-backend
needs: needs:
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
build-auth-api: build-auth-api:
@ -162,7 +181,9 @@ test-auth-api:
- *test-api-script - *test-api-script
needs: needs:
- job: build-auth-api - job: build-auth-api
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
test-subscription-api: test-subscription-api:
@ -179,7 +200,9 @@ test-subscription-api:
- *test-api-script - *test-api-script
needs: needs:
- job: build-subscription-api - job: build-subscription-api
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
test-flights-api: test-flights-api:
@ -196,7 +219,9 @@ test-flights-api:
- *test-api-script - *test-api-script
needs: needs:
- job: build-flights-api - job: build-flights-api
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
test-gateway: test-gateway:
@ -213,7 +238,9 @@ test-gateway:
- *test-api-script - *test-api-script
needs: needs:
- job: build-gateway - job: build-gateway
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
.test-client-script: &test-client-script .test-client-script: &test-client-script
@ -248,7 +275,9 @@ test-browser-client:
- *test-client-script - *test-client-script
needs: needs:
- job: build-browser-client - job: build-browser-client
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
test-screen-client: test-screen-client:
@ -264,7 +293,9 @@ test-screen-client:
- *test-client-script - *test-client-script
needs: needs:
- job: build-screen-client - job: build-screen-client
optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
.test-integration: &test-integration .test-integration: &test-integration
@ -302,17 +333,27 @@ test-screen-client:
- export API_IMAGE=${GATEWAY_TEST_IMAGE_NAME} - export API_IMAGE=${GATEWAY_TEST_IMAGE_NAME}
- docker compose -f gateway/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - docker compose -f gateway/docker-compose.dev.yml --env-file $ENV_DEV_FILE down
.needs-backend-tests: &needs-backend-tests
- job: test-flights-api
optional: true
- job: test-auth-api
optional: true
- job: test-subscription-api
optional: true
- job: test-gateway
optional: true
- job: preparation
optional: true
artifacts: true
test-browser-integration: test-browser-integration:
stage: test stage: test
tags: tags:
- dev - dev
rules: rules:
- *changes-backend
- changes: - changes:
- auth-domain/**/*
- browser-domain/**/* - browser-domain/**/*
- flights-domain/**/*
- subscription-domain/**/*
- gateway/**/*
script: script:
- export CLIENT_IMAGE=${BROWSER_CLIENT_TEST_IMAGE_NAME} - export CLIENT_IMAGE=${BROWSER_CLIENT_TEST_IMAGE_NAME}
- export FOLDER=browser-domain - export FOLDER=browser-domain
@ -320,30 +361,18 @@ test-browser-integration:
after_script: after_script:
- *test-integration-clean - *test-integration-clean
needs: needs:
- job: test-flights-api
optional: true
- job: test-auth-api
optional: true
- job: test-subscription-api
optional: true
- job: test-gateway
optional: true
- job: test-browser-client - job: test-browser-client
optional: true optional: true
- job: preparation - *needs-backend-tests
artifacts: true
test-screen-integration: test-screen-integration:
stage: test stage: test
tags: tags:
- dev - dev
rules: rules:
- *changes-backend
- changes: - changes:
- auth-domain/**/*
- screen-domain/**/* - screen-domain/**/*
- flights-domain/**/*
- subscription-domain/**/*
- gateway/**/*
script: script:
- export CLIENT_IMAGE=${SCREEN_CLIENT_TEST_IMAGE_NAME} - export CLIENT_IMAGE=${SCREEN_CLIENT_TEST_IMAGE_NAME}
- export FOLDER=screen-domain - export FOLDER=screen-domain
@ -351,33 +380,19 @@ test-screen-integration:
after_script: after_script:
- *test-integration-clean - *test-integration-clean
needs: needs:
- job: test-flights-api
optional: true
- job: test-auth-api
optional: true
- job: test-subscription-api
optional: true
- job: test-gateway
optional: true
- job: test-screen-client - job: test-screen-client
optional: true optional: true
- job: test-browser-integration - job: test-browser-integration
optional: true optional: true
- job: preparation - *needs-backend-tests
artifacts: true
deliver-dockerhub: deliver-dockerhub:
stage: deliver stage: deliver
tags: tags:
- dev - dev
rules: rules:
- changes: - *changes-backend
- auth-domain/**/* - *changes-frontend
- screen-domain/**/*
- browser-domain/**/*
- flights-domain/**/*
- subscription-domain/**/*
- gateway/**/*
- if: $FORCE_DEPLOY == "true" - if: $FORCE_DEPLOY == "true"
script: script:
- docker login -u $DOCKER_HUB_USER --password $DOCKER_HUB_PASS - docker login -u $DOCKER_HUB_USER --password $DOCKER_HUB_PASS
@ -396,37 +411,14 @@ deliver-dockerhub:
- docker push $DOCKER_HUB_BROWSER_CLIENT_IMAGE - docker push $DOCKER_HUB_BROWSER_CLIENT_IMAGE
- docker push $DOCKER_HUB_SCREEN_CLIENT_IMAGE - docker push $DOCKER_HUB_SCREEN_CLIENT_IMAGE
needs: needs:
- job: test-browser-integration
optional: true
- job: test-screen-integration - job: test-screen-integration
optional: true optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true
# TODO: remove, it doesn't make sense for this to be in the pipeline...
# build-and-run-elk:
# extends:
# - .build
# rules:
# - changes:
# - observability/**/*
# script:
# - export ELK_SETUP_IMAGE=${IMAGE_BASE}/elasticsearch:prod
# - export ELASTICSEARCH_IMAGE=${IMAGE_BASE}/elk-setup:prod
# - export LOGSTASH_IMAGE=${IMAGE_BASE}/heartbeat:prod
# - export KIBANA_IMAGE=${IMAGE_BASE}/kibana:prod
# - export CURATOR_IMAGE=${IMAGE_BASE}/curator:prod
# - export HEARTBEAT_IMAGE=${IMAGE_BASE}/logstash:prod
# - export ELK=observability/elk
# - docker build $ELK/setup -f $ELK/setup/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${ELK_SETUP_IMAGE}
# - docker build $ELK/elasticsearch -f $ELK/elasticsearch/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${ELASTICSEARCH_IMAGE}
# - docker build $ELK/logstash -f $ELK/logstash/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${LOGSTASH_IMAGE}
# - docker build $ELK/kibana -f $ELK/kibana/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${KIBANA_IMAGE}
# - docker build $ELK/extensions/curator -f $ELK/extensions/curator/Dockerfile -t ${CURATOR_IMAGE}
# - docker build $ELK/extensions/heartbeat -f $ELK/extensions/heartbeat/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${HEARTBEAT_IMAGE}
# - docker compose -f observability/docker-compose.yml --env-file $ENV_DEV_FILE --profile setup up -d
# - docker compose -f observability/docker-compose.yml -f $ELK/extensions/curator/curator-compose.yml -f $ELK/extensions/heartbeat/heartbeat-compose.yml --env-file $ENV_DEV_FILE up -d
.stop-and-run: &stop-and-run .stop-and-run: &stop-and-run
- docker compose -f ${FOLDER}/docker-compose.yml --env-file $ENV_PROD_FILE down - docker compose -f ${FOLDER}/docker-compose.yml --env-file $ENV_PROD_FILE down
- docker compose -f ${FOLDER}/docker-compose.yml --env-file $ENV_PROD_FILE pull - docker compose -f ${FOLDER}/docker-compose.yml --env-file $ENV_PROD_FILE pull
@ -480,4 +472,5 @@ deploy-prod:
- job: build-and-run-elk - job: build-and-run-elk
optional: true optional: true
- job: preparation - job: preparation
optional: true
artifacts: true artifacts: true

8
run.sh
View File

@ -62,7 +62,7 @@ elif [ -n "$domain" ] && [ -z "$down" ]; then
docker build $USER_MANAGER -f $USER_MANAGER/Dockerfile.prod -t $USER/user-manager:prod docker build $USER_MANAGER -f $USER_MANAGER/Dockerfile.prod -t $USER/user-manager:prod
if [ -n "$tests" ]; then if [ -n "$tests" ]; then
docker build $USER_MANAGER -f $USER_MANAGER/Dockerfile.test --build-arg "BASE_IMAGE=$USER/user-manager:prod" -t $USER/user-manager:test docker build $USER_MANAGER -f $USER_MANAGER/Dockerfile.test -t $USER/user-manager:test
export API_IMAGE=$USER/user-manager:test export API_IMAGE=$USER/user-manager:test
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod down docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.prod down
docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.dev up --abort-on-container-exit docker compose -f auth-domain/docker-compose.yml --env-file auth-domain/.env.dev up --abort-on-container-exit
@ -79,7 +79,7 @@ elif [ -n "$domain" ] && [ -z "$down" ]; then
docker build $FLIGHTS_INFORMATION -f $FLIGHTS_INFORMATION/Dockerfile.prod -t $USER/flights-information:prod docker build $FLIGHTS_INFORMATION -f $FLIGHTS_INFORMATION/Dockerfile.prod -t $USER/flights-information:prod
if [ -n "$tests" ]; then if [ -n "$tests" ]; then
docker build $FLIGHTS_INFORMATION -f $FLIGHTS_INFORMATION/Dockerfile.test --build-arg "BASE_IMAGE=$USER/flights-information:prod" -t $USER/flights-information:test docker build $FLIGHTS_INFORMATION -f $FLIGHTS_INFORMATION/Dockerfile.test -t $USER/flights-information:test
export API_IMAGE=$USER/flights-information:test export API_IMAGE=$USER/flights-information:test
docker compose -f flights-domain/docker-compose.yml --env-file flights-domain/.env.dev down docker compose -f flights-domain/docker-compose.yml --env-file flights-domain/.env.dev down
docker compose -f flights-domain/docker-compose.yml --env-file flights-domain/.env.dev up --abort-on-container-exit docker compose -f flights-domain/docker-compose.yml --env-file flights-domain/.env.dev up --abort-on-container-exit
@ -94,7 +94,7 @@ elif [ -n "$domain" ] && [ -z "$down" ]; then
docker build $SUBSCRIPTION_MANAGER -f $SUBSCRIPTION_MANAGER/Dockerfile.prod -t $USER/subs-manager:prod docker build $SUBSCRIPTION_MANAGER -f $SUBSCRIPTION_MANAGER/Dockerfile.prod -t $USER/subs-manager:prod
if [ -n "$tests" ]; then if [ -n "$tests" ]; then
docker build $SUBSCRIPTION_MANAGER -f $SUBSCRIPTION_MANAGER/Dockerfile.test --build-arg "BASE_IMAGE=$USER/subs-manager:prod" -t $USER/subs-manager:test docker build $SUBSCRIPTION_MANAGER -f $SUBSCRIPTION_MANAGER/Dockerfile.test -t $USER/subs-manager:test
export API_IMAGE=$USER/subs-manager:test export API_IMAGE=$USER/subs-manager:test
docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.dev down docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.dev down
docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.dev up --abort-on-container-exit docker compose -f subscription-domain/docker-compose.yml --env-file subscription-domain/.env.dev up --abort-on-container-exit
@ -108,7 +108,7 @@ elif [ -n "$domain" ] && [ -z "$down" ]; then
docker build gateway -f gateway/Dockerfile.prod -t $USER/gateway:prod docker build gateway -f gateway/Dockerfile.prod -t $USER/gateway:prod
if [ -n "$tests" ]; then if [ -n "$tests" ]; then
docker build gateway -f gateway/Dockerfile.test --build-arg "BASE_IMAGE=$USER/gateway:prod" -t $USER/gateway:test docker build gateway -f gateway/Dockerfile.test -t $USER/gateway:test
export API_IMAGE=$USER/gateway:test export API_IMAGE=$USER/gateway:test
docker compose -f gateway/docker-compose.yml down docker compose -f gateway/docker-compose.yml down
docker compose -f gateway/docker-compose.yml up -d docker compose -f gateway/docker-compose.yml up -d