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

KPI Management:

- Activated CI/CD build and unitary test
parent 2ea824bf
No related branches found
No related tags found
2 merge requests!294Release TeraFlowSDN 4.0,!254Resolve "Multiple fixes on KPI Management"
......@@ -46,6 +46,8 @@ include:
- local: '/src/load_generator/.gitlab-ci.yml'
- local: '/src/bgpls_speaker/.gitlab-ci.yml'
- local: '/src/kpi_manager/.gitlab-ci.yml'
- local: '/src/kpi_value_api/.gitlab-ci.yml'
- local: '/src/kpi_value_writer/.gitlab-ci.yml'
# This should be last one: end-to-end integration tests
- local: '/src/tests/.gitlab-ci.yml'
......@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-manager:
variables:
IMAGE_NAME: 'kpi-manager' # name of the microservice
IMAGE_NAME: 'kpi_manager' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: build
before_script:
......@@ -41,7 +41,7 @@ build kpi-manager:
# Apply unit test to the component
unit_test kpi-manager:
variables:
IMAGE_NAME: 'kpi-manager' # name of the microservice
IMAGE_NAME: 'kpi_manager' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: unit_test
needs:
......
......@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-value-api:
variables:
IMAGE_NAME: 'kpi-value-api' # name of the microservice
IMAGE_NAME: 'kpi_value_api' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: build
before_script:
......@@ -41,7 +41,7 @@ build kpi-value-api:
# Apply unit test to the component
unit_test kpi-value-api:
variables:
IMAGE_NAME: 'kpi-value-api' # name of the microservice
IMAGE_NAME: 'kpi_value_api' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: unit_test
needs:
......
......@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-value-writer:
variables:
IMAGE_NAME: 'kpi-value-writer' # name of the microservice
IMAGE_NAME: 'kpi_value_writer' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: build
before_script:
......@@ -41,7 +41,7 @@ build kpi-value-writer:
# Apply unit test to the component
unit_test kpi-value-writer:
variables:
IMAGE_NAME: 'kpi-value-writer' # name of the microservice
IMAGE_NAME: 'kpi_value_writer' # name of the microservice
IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
stage: unit_test
needs:
......
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