Commit 8aa34435 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Bug solving on integration tests

parent 6bcd62ce
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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