summaryrefslogtreecommitdiffstats
path: root/jjb/include-docker-push.sh
diff options
context:
space:
mode:
authorsblimkie <steven.blimkie@amdocs.com>2017-10-19 17:49:03 +0300
committersblimkie <steven.blimkie@amdocs.com>2017-10-19 17:50:45 +0300
commit0df9fa11273db455770ca691424131811f03d928 (patch)
tree8756d3e24675a9481a334df741b3e7be139ad268 /jjb/include-docker-push.sh
parent8ef6bdd7028b73832a8b8b6def0bac925533ea40 (diff)
Fix failing AAI docker-java-daily jobs
The AAI docker and package names were changed from openecomp to onap. Need to change the jjb template to match. Change-Id: I8f471168b4afbe7594aaf51ab5fc7332de62bc67 Issue-ID: AAI-10 Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
Diffstat (limited to 'jjb/include-docker-push.sh')
-rwxr-xr-xjjb/include-docker-push.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/include-docker-push.sh b/jjb/include-docker-push.sh
index df42fa7b9..c0394de81 100755
--- a/jjb/include-docker-push.sh
+++ b/jjb/include-docker-push.sh
@@ -29,12 +29,12 @@ if [ ! -z "$DOCKER_IMAGE_NAME" ]; then
# tag image with nexus3 proxy prefix
docker tag ${DOCKER_IMAGE_NAME} $REPO_PATH
elif [[ $PROJECT =~ $SEARCH ]] ; then
- REPO_PATH=$DOCKER_REPOSITORY/openecomp/ajsc-aai;
+ REPO_PATH=$DOCKER_REPOSITORY/onap/ajsc-aai;
else
# Cut the prefix aai/ in example aai/model-loader
DOCKER_REPO_NAME=$(echo ${PROJECT} | cut -d"/" -f2-);
- REPO_PATH=$DOCKER_REPOSITORY/openecomp/${DOCKER_REPO_NAME};
+ REPO_PATH=$DOCKER_REPOSITORY/onap/${DOCKER_REPO_NAME};
fi