diff options
author | BjornMagnussonXA <bjorn.magnusson@est.tech> | 2020-11-17 15:46:43 +0100 |
---|---|---|
committer | BjornMagnussonXA <bjorn.magnusson@est.tech> | 2020-11-17 15:49:16 +0100 |
commit | ea2fb7dca82a4d6a254ee271eea33e1fa7f81346 (patch) | |
tree | fa8f9faa94b4574fe6dca466c5ee18a3dab96ab1 | |
parent | 3a8b5f9880a41ff8a7562ee324e8f0ce2b8f6e9e (diff) |
Fixing docker image pull rate issue
Pull applicable images from Nexus (proxy) instead of dockeer hub.
Issue-ID: CCSDK-2989
Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: Iab635867393cbc0c08605d4b93149d2609da9374
-rw-r--r-- | plans/ccsdk-oran/polmansuite/test_env-guilin.sh | 5 | ||||
-rw-r--r-- | plans/ccsdk-oran/polmansuite/test_env-master.sh | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/plans/ccsdk-oran/polmansuite/test_env-guilin.sh b/plans/ccsdk-oran/polmansuite/test_env-guilin.sh index 85445ec5..37bde360 100644 --- a/plans/ccsdk-oran/polmansuite/test_env-guilin.sh +++ b/plans/ccsdk-oran/polmansuite/test_env-guilin.sh @@ -19,6 +19,7 @@ #Profile for guilin release TEST_ENV_PROFILE="ONAP-GUILIN" +NEXUS_PROXY_REPO="nexus3.onap.org:10001/" # Set up the image and tags for the test. Do not add the image tag to the image names. @@ -43,7 +44,7 @@ SDNC_A1_CONTROLLER_REMOTE_IMAGE_TAG="2.0.3-STAGING-latest" #SDNC DB remote image and tag -SDNC_DB_REMOTE_IMAGE="mysql/mysql-server" +SDNC_DB_REMOTE_IMAGE=$NEXUS_PROXY_REPO"mysql/mysql-server" SDNC_DB_REMOTE_IMAGE_TAG="5.6" #No local image for DB, remote image always used @@ -54,7 +55,7 @@ RIC_SIM_REMOTE_IMAGE_TAG="2.0.0" #Consul remote image and tag -CONSUL_REMOTE_IMAGE="consul" +CONSUL_REMOTE_IMAGE=$NEXUS_PROXY_REPO"consul" CONSUL_REMOTE_IMAGE_TAG="1.7.2" #No local image for Consul, remote image always used diff --git a/plans/ccsdk-oran/polmansuite/test_env-master.sh b/plans/ccsdk-oran/polmansuite/test_env-master.sh index 3d5a6c89..2b41fe8e 100644 --- a/plans/ccsdk-oran/polmansuite/test_env-master.sh +++ b/plans/ccsdk-oran/polmansuite/test_env-master.sh @@ -19,6 +19,7 @@ #Profile for current master branch TEST_ENV_PROFILE="ONAP-MASTER" +NEXUS_PROXY_REPO="nexus3.onap.org:10001/" # Set up the image and tags for the test. Do not add the image tag to the image names. @@ -43,7 +44,7 @@ SDNC_A1_CONTROLLER_REMOTE_IMAGE_TAG="2.1.0-STAGING-latest" #SDNC DB remote image and tag -SDNC_DB_REMOTE_IMAGE="mysql/mysql-server" +SDNC_DB_REMOTE_IMAGE=$NEXUS_PROXY_REPO"mysql/mysql-server" SDNC_DB_REMOTE_IMAGE_TAG="5.6" #No local image for DB, remote image always used @@ -54,7 +55,7 @@ RIC_SIM_REMOTE_IMAGE_TAG="2.0.0" #Consul remote image and tag -CONSUL_REMOTE_IMAGE="consul" +CONSUL_REMOTE_IMAGE=$NEXUS_PROXY_REPO"consul" CONSUL_REMOTE_IMAGE_TAG="1.7.2" #No local image for Consul, remote image always used |