From 2176d4d0aa9552479842bf36154e6207e7720056 Mon Sep 17 00:00:00 2001 From: edebrye <edebrye@ippon.fr> Date: Wed, 17 Mar 2021 16:16:33 +0100 Subject: [PATCH] modified gitlab-ci / added load tests --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3c9f2a7..0918023 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,15 +74,15 @@ Load Tests: name: peterevans/vegeta entrypoint: [""] script: - - echo "GET $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report - - echo "PUT $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 "GET $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report + - echo "PUT $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 rules: - if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' when: manual - Production Plan: +Production Plan: stage: Production Plan script: - cd deploy/ -- GitLab