Skip to content
Snippets Groups Projects
Commit 8aa34435 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Bug solving on integration tests

parent 6bcd62ce
No related branches found
No related tags found
1 merge request!54Release 2.0.0
...@@ -40,6 +40,9 @@ test integration_tester: ...@@ -40,6 +40,9 @@ test integration_tester:
# Run integration tests in Kubernetes Cluster # Run integration tests in Kubernetes Cluster
integration_test integration_tester: 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 stage: integration_test
needs: needs:
- build integration_tester - build integration_tester
...@@ -54,3 +57,4 @@ integration_test 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 run $IMAGE_NAME --image "$IMAGE_NAME:$IMAGE_TAG" --restart=Never --rm -i --tty
- kubectl get all - kubectl get all
when: manual when: manual
allow_failure: false
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