From 8aa34435beff0dc836bde43179029b363e6cbc2b Mon Sep 17 00:00:00 2001 From: Lluis Gifre Date: Tue, 10 Aug 2021 09:39:25 +0200 Subject: [PATCH] Bug solving on integration tests --- src/integration_tester/.gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/integration_tester/.gitlab-ci.yml b/src/integration_tester/.gitlab-ci.yml index fef34bcf8..1158edede 100644 --- a/src/integration_tester/.gitlab-ci.yml +++ b/src/integration_tester/.gitlab-ci.yml @@ -40,6 +40,9 @@ test integration_tester: # Run integration tests in Kubernetes Cluster integration_test integration_tester: + variables: + IMAGE_NAME: 'integration_tester' # name of the microservice + IMAGE_TAG: 'latest' # tag of the container image (production, development, etc) stage: integration_test needs: - build integration_tester @@ -54,3 +57,4 @@ integration_test integration_tester: - kubectl run $IMAGE_NAME --image "$IMAGE_NAME:$IMAGE_TAG" --restart=Never --rm -i --tty - kubectl get all when: manual + allow_failure: false -- GitLab