Skip to content
Snippets Groups Projects
Commit 47f69dde authored by Timothée AUFORT's avatar Timothée AUFORT
Browse files

Merge branch 'feat/update-ci-for-mr' into 'master'

feat(gitlab): update CI pipeline

See merge request edebrye/cloud-monitor!16
parents 82a76acb acf9843a
No related branches found
No related tags found
No related merge requests found
...@@ -3,14 +3,20 @@ image: ...@@ -3,14 +3,20 @@ image:
entrypoint: entrypoint:
- '/usr/bin/env' - '/usr/bin/env'
- 'PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' - 'PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
stages: stages:
- Test and Lint - Test and Lint
- Staging Plan - Apply
- Staging Apply
- Integration Test - Integration Test
- Destroy - Destroy
.load_tf_workspace: &load_tf_workspace |
if [[ $CI_COMMIT_REF_SLUG == "master" ]]; then
export TF_WORKSPACE="staging"
else
export TF_WORKSPACE="dev"
fi
Validate Terraform: Validate Terraform:
stage: Test and Lint stage: Test and Lint
script: script:
...@@ -19,20 +25,12 @@ Validate Terraform: ...@@ -19,20 +25,12 @@ Validate Terraform:
- terraform init -backend=false - terraform init -backend=false
- terraform validate - terraform validate
rules: rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master)$/ || $CI_COMMIT_BRANCH =~ /^(master)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" || $CI_COMMIT_BRANCH == "master"'
Staging Plan: Apply:
stage: Staging Plan stage: Apply
script: before_script:
- cd deploy/ - *load_tf_workspace
- terraform init
- terraform workspace select staging || terraform workspace new staging
- terraform plan -var-file=vars/staging.tfvars
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master)$/ || $CI_COMMIT_BRANCH =~ /^(master)$/'
Staging Apply:
stage: Staging Apply
script: script:
- apk add --update npm - apk add --update npm
- cd deploy/ - cd deploy/
...@@ -40,14 +38,14 @@ Staging Apply: ...@@ -40,14 +38,14 @@ Staging Apply:
- npm install - npm install
- cd - - cd -
- terraform init - terraform init
- terraform workspace select staging - terraform plan -var-file=vars/${TF_WORKSPACE}.tfvars -out=tfplan.out
- terraform apply -var-file=vars/staging.tfvars -auto-approve - terraform apply tfplan.out
- echo "API_ENDPOINT=$(terraform output -raw api_endpoint)" >> ../deploy.env - echo "API_ENDPOINT=$(terraform output -raw api_endpoint)" >> ../deploy.env
artifacts: artifacts:
reports: reports:
dotenv: deploy.env dotenv: deploy.env
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" || $CI_COMMIT_BRANCH == "master"'
Integration Tests: Integration Tests:
stage: Integration Test stage: Integration Test
...@@ -57,7 +55,7 @@ Integration Tests: ...@@ -57,7 +55,7 @@ Integration Tests:
script: script:
- newman run Lambda_CRUD.postman_collection.json --env-var "endpoint=$API_ENDPOINT" - newman run Lambda_CRUD.postman_collection.json --env-var "endpoint=$API_ENDPOINT"
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" || $CI_COMMIT_BRANCH == "master"'
Load Tests: Load Tests:
stage: Integration Test stage: Integration Test
...@@ -70,16 +68,19 @@ Load Tests: ...@@ -70,16 +68,19 @@ Load Tests:
- echo "PATCH $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report - echo "PATCH $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report
- echo "DELETE $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report - echo "DELETE $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" || $CI_COMMIT_BRANCH == "master"'
allow_failure: true
when: manual when: manual
Staging Destroy: Destroy:
stage: Destroy stage: Destroy
before_script:
- *load_tf_workspace
script: script:
- cd deploy/ - cd deploy/
- terraform init - terraform init
- terraform workspace select staging - terraform destroy -var-file=vars/${TF_WORKSPACE}.tfvars -auto-approve
- terraform destroy -var-file=vars/staging.tfvars -auto-approve rules:
rules: - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "master" || $CI_COMMIT_BRANCH == "master"'
- if: '$CI_COMMIT_BRANCH =~ /^(master)$/' allow_failure: true
when: manual when: manual
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment