aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpawel.denst <pawel.denst@external.t-mobile.pl>2023-03-17 14:22:54 +0000
committerpawel.denst <pawel.denst@external.t-mobile.pl>2023-03-24 08:08:28 +0000
commitc4a5bbb5fc83c79642ec083e869555b52a368234 (patch)
tree6ee3152eb46745e8dea929af220b76da24771236
parente9c8f4ca8876130d6985dcab5de3fb5b1fac4813 (diff)
Fix ONAP SDK integration tests for k8s plugin
Changed docker compose and urls.py Issue-ID: INT-2212 Signed-off-by: pawel.denst <pawel.denst@external.t-mobile.pl> Change-Id: If0dd10321701b0dbb1af26b8e1c724f29be01820
-rw-r--r--integration_tests/docker-compose.yml18
-rw-r--r--integration_tests/local_urls.py3
-rw-r--r--integration_tests/urls.py3
3 files changed, 11 insertions, 13 deletions
diff --git a/integration_tests/docker-compose.yml b/integration_tests/docker-compose.yml
index 6e92625..ca37a33 100644
--- a/integration_tests/docker-compose.yml
+++ b/integration_tests/docker-compose.yml
@@ -1,47 +1,47 @@
version: "3.4"
services:
sdc.api.fe.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-sdc:develop
+ image: nexus3.onap.org:10003/onap/onap-component-mock-sdc:master
networks:
sdk_integration:
ipv4_address: 172.20.0.2
aai.api.sparky.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-aai
+ image: nexus3.onap.org:10003/onap/onap-component-mock-aai:master
networks:
sdk_integration:
ipv4_address: 172.20.0.3
so.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-so
+ image: nexus3.onap.org:10003/onap/onap-component-mock-so:master
networks:
sdk_integration:
ipv4_address: 172.20.0.4
sdnc.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-sdnc
+ image: nexus3.onap.org:10003/onap/onap-component-mock-sdnc:master
networks:
sdk_integration:
ipv4_address: 172.20.0.5
clamp.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-clamp:develop
+ image: nexus3.onap.org:10003/onap/onap-component-mock-clamp:master
networks:
sdk_integration:
ipv4_address: 172.20.0.6
cds.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-cds
+ image: nexus3.onap.org:10003/onap/onap-component-mock-cds:master
networks:
sdk_integration:
ipv4_address: 172.20.0.7
msb.k8s.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-msb-k8s
+ image: nexus3.onap.org:10003/onap/onap-component-mock-k8s:master
networks:
sdk_integration:
ipv4_address: 172.20.0.8
ves.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-dcae/mock-ves
+ image: nexus3.onap.org:10003/onap/onap-component-mock-ves:master
networks:
sdk_integration:
ipv4_address: 172.20.0.9
dmaap.api.simpledemo.onap.org:
- image: registry.gitlab.com/orange-opensource/lfn/onap/mock_servers/mock-dmaap
+ image: nexus3.onap.org:10003/onap/onap-component-mock-dmaap:master
networks:
sdk_integration:
ipv4_address: 172.20.0.10
diff --git a/integration_tests/local_urls.py b/integration_tests/local_urls.py
index 8c2c30e..00f6a94 100644
--- a/integration_tests/local_urls.py
+++ b/integration_tests/local_urls.py
@@ -18,7 +18,6 @@ SO_URL = "http://172.20.0.4:5001"
SDNC_URL = "http://172.20.0.5:5002"
CLAMP_URL = "http://172.20.0.6:30258"
CDS_URL = "http://172.20.0.7:8080"
-MSB_URL = "http://172.20.0.8:5003"
VES_URL = "http://172.20.0.9:30417"
DMAAP_URL = "http://172.20.0.10:3904"
-K8SPLUGIN_URL = "http://172.20.0.11:5004"
+K8SPLUGIN_URL = "http://172.20.0.8:5003"
diff --git a/integration_tests/urls.py b/integration_tests/urls.py
index 32ffed8..f729017 100644
--- a/integration_tests/urls.py
+++ b/integration_tests/urls.py
@@ -18,7 +18,6 @@ SO_URL = "http://so.api.simpledemo.onap.org:5001"
SDNC_URL = "http://sdnc.api.simpledemo.onap.org:5002"
CLAMP_URL = "http://clamp.api.simpledemo.onap.org:30258"
CDS_URL = "http://cds.api.simpledemo.onap.org:8080"
-MSB_URL = "http://msb.k8s.api.simpledemo.onap.org:5003"
-K8SPLUGIN_URL = "http://k8splugin.api.simpledemo.onap.org:5004"
+K8SPLUGIN_URL = "http://k8splugin.api.simpledemo.onap.org:5003"
VES_URL = "http://ves.api.simpledemo.onap.org:30417"
DMAAP_URL = "http://dmaap.api.simpledemo.onap.org:3904"