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

feat(ci): update .gitlab-ci.yml file

parent 79405641
No related branches found
No related tags found
No related merge requests found
image: image:
name: hashicorp/terraform:0.14.8 name: hashicorp/terraform:0.14.9
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'
...@@ -9,26 +9,17 @@ stages: ...@@ -9,26 +9,17 @@ stages:
- Staging Plan - Staging Plan
- Staging Apply - Staging Apply
- Integration Test - Integration Test
- Production Plan
- Production Apply
- Destroy - Destroy
Test and Lint:
stage: Test and Lint
script:
- echo "test to do"
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master|production)$/ || $CI_COMMIT_BRANCH =~ /^(master|production)$/'
Validate Terraform: Validate Terraform:
stage: Test and Lint stage: Test and Lint
script: script:
- cd deploy/ - cd deploy/
- terraform fmt -check -recursive
- terraform init -backend=false - terraform init -backend=false
- terraform validate - terraform validate
- terraform fmt -check
rules: rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master|production)$/ || $CI_COMMIT_BRANCH =~ /^(master|production)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master)$/ || $CI_COMMIT_BRANCH =~ /^(master)$/'
Staging Plan: Staging Plan:
stage: Staging Plan stage: Staging Plan
...@@ -38,7 +29,7 @@ Staging Plan: ...@@ -38,7 +29,7 @@ Staging Plan:
- terraform workspace select staging || terraform workspace new staging - terraform workspace select staging || terraform workspace new staging
- terraform plan - terraform plan
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master)$/ || $CI_COMMIT_BRANCH =~ /^(master)$/'
Staging Apply: Staging Apply:
stage: Staging Apply stage: Staging Apply
...@@ -56,22 +47,22 @@ Staging Apply: ...@@ -56,22 +47,22 @@ Staging Apply:
reports: reports:
dotenv: deploy.env dotenv: deploy.env
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' - if: '$CI_COMMIT_BRANCH =~ /^(master)$/'
Integration Tests: Integration Tests:
stage: Integration Test stage: Integration Test
image: image:
name: postman/newman name: postman/newman:5
entrypoint: [""] entrypoint: [""]
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|production)$/' - if: '$CI_COMMIT_BRANCH =~ /^(master)$/'
Load Tests: Load Tests:
stage: Integration Test stage: Integration Test
image: image:
name: peterevans/vegeta name: peterevans/vegeta:6.9
entrypoint: [""] entrypoint: [""]
script: script:
- echo "GET $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report - echo "GET $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report
...@@ -79,29 +70,9 @@ Load Tests: ...@@ -79,29 +70,9 @@ 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|production)$/' - if: '$CI_COMMIT_BRANCH =~ /^(master)$/'
when: manual when: manual
Production Plan:
stage: Production Plan
script:
- cd deploy/
- terraform init
- terraform workspace select production || terraform workspace new production
- terraform plan
rules:
- if: '$CI_COMMIT_BRANCH == "production"'
Production Apply:
stage: Production Apply
script:
- cd deploy/
- terraform init
- terraform workspace select production
- terraform apply -auto-approve
rules:
- if: '$CI_COMMIT_BRANCH == "production"'
Staging Destroy: Staging Destroy:
stage: Destroy stage: Destroy
script: script:
...@@ -110,16 +81,5 @@ Staging Destroy: ...@@ -110,16 +81,5 @@ Staging Destroy:
- terraform workspace select staging - terraform workspace select staging
- terraform destroy -auto-approve - terraform destroy -auto-approve
rules: rules:
- if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' - if: '$CI_COMMIT_BRANCH =~ /^(master)$/'
when: manual
Production Destroy:
stage: Destroy
script:
- cd deploy/
- terraform init
- terraform workspace select production
- terraform destroy -auto-approve
rules:
- if: '$CI_COMMIT_BRANCH == "production"'
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