diff options
author | rope252 <gareth.roper@est.tech> | 2021-02-18 15:24:18 +0000 |
---|---|---|
committer | rope252 <gareth.roper@est.tech> | 2021-02-18 15:29:44 +0000 |
commit | d2656ff025d9e2d1b7ee1ea8331d2bc21357bc52 (patch) | |
tree | e9773bd14321fdd1cc7c651d4120b10aa80afa26 /plans/so/integration-etsi-testing/docker-compose.local.yml | |
parent | 49679a66c9c84b0cfc2f0d0fbab5109c5dad3730 (diff) |
Fixing CSIT ETSI NFVO Failures on Master + Small Refactoring
- Due to Camunda Engine changes we needed to update the Camunda Engine SQL file. We don't want to effect any other components, so replacing this just within our tests.
- Extracting image versions for MariaDB and NFVO containers.
- Updated Maven Repos to use HTTPS as required now.
- Refactored the WAIT script code in Setup.sh.
Change-Id: I8423e4009cea9b962a0eae64b3cbc7e267ac7366
Issue-ID: INT-1839
Signed-off-by: rope252 <gareth.roper@est.tech>
Diffstat (limited to 'plans/so/integration-etsi-testing/docker-compose.local.yml')
-rw-r--r-- | plans/so/integration-etsi-testing/docker-compose.local.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plans/so/integration-etsi-testing/docker-compose.local.yml b/plans/so/integration-etsi-testing/docker-compose.local.yml index c7c37aa0..f92aa150 100644 --- a/plans/so/integration-etsi-testing/docker-compose.local.yml +++ b/plans/so/integration-etsi-testing/docker-compose.local.yml @@ -2,7 +2,7 @@ version: '3' services: ################################################################################ mariadb: - image: mariadb:10.1.11 + image: mariadb:${MARIADB_VERSION} ################################################################################ catalog-db-adapter: image: onap/so/catalog-db-adapter:${TAG} @@ -30,3 +30,6 @@ services: ################################################################################ modeling-etsicatalog: image: ${NEXUS_DOCKER_REPO_MSO}/onap/modeling/etsicatalog:${ETSI_CATALOG_IMAGE_VERSION} +################################################################################ + so-etsi-nfvo-ns-lcm: + image: onap/so/so-etsi-nfvo-ns-lcm:${ETSI_NFVO_NS_LCM_IMAGE_VERSION} |