summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jjb/dcae/dcae-demo.yaml4
-rw-r--r--jjb/global-macros.yaml8
-rw-r--r--jjb/global-templates-java.yaml4
-rw-r--r--jjb/global-templates-python.yaml4
-rwxr-xr-xjjb/include-docker-blessing.sh6
-rw-r--r--jjb/include-docker-login.sh8
-rw-r--r--jjb/include-docker-push.sh2
7 files changed, 18 insertions, 18 deletions
diff --git a/jjb/dcae/dcae-demo.yaml b/jjb/dcae/dcae-demo.yaml
index 12c0bd2b6..f85e92c33 100644
--- a/jjb/dcae/dcae-demo.yaml
+++ b/jjb/dcae/dcae-demo.yaml
@@ -23,7 +23,7 @@
script: |
bash dcae-demo-controller/src/main/docker-build/build.sh
bash dcae-demo-controller/src/main/docker-build/push.sh \
- nexus3.openecomp.org:10003
+ nexus3.onap.org:10003
# yamllint enable
- '{project-name}-{stream}-merge-scm-mvn-script':
mvn-goals: 'clean deploy'
@@ -31,7 +31,7 @@
script: |
bash dcae-demo-controller/src/main/docker-build/build.sh
bash dcae-demo-controller/src/main/docker-build/push.sh \
- nexus3.openecomp.org:10003
+ nexus3.onap.org:10003
# yamllint enable
- '{project-name}-{stream}-verify-scm-mvn-script':
mvn-goals: 'clean install'
diff --git a/jjb/global-macros.yaml b/jjb/global-macros.yaml
index 42c35aed3..fcf589188 100644
--- a/jjb/global-macros.yaml
+++ b/jjb/global-macros.yaml
@@ -42,8 +42,8 @@
global-settings-type: cfp
properties:
- maven.test.skip=true
- - docker.pull.registry=nexus3.openecomp.org:10001
- - docker.push.registry=nexus3.openecomp.org:10002
+ - docker.pull.registry=nexus3.onap.org:10001
+ - docker.push.registry=nexus3.onap.org:10002
- builder:
name: maven-docker-push-daily
@@ -58,8 +58,8 @@
global-settings-type: cfp
properties:
- maven.test.skip=true
- - docker.pull.registry=nexus3.openecomp.org:10001
- - docker.push.registry=nexus3.openecomp.org:10003
+ - docker.pull.registry=nexus3.onap.org:10001
+ - docker.push.registry=nexus3.onap.org:10003
- builder:
name: docker-login
diff --git a/jjb/global-templates-java.yaml b/jjb/global-templates-java.yaml
index ffab7c3c2..c48b14581 100644
--- a/jjb/global-templates-java.yaml
+++ b/jjb/global-templates-java.yaml
@@ -859,8 +859,8 @@
global-settings-type: cfp
properties:
- maven.test.skip=true
- - docker.pull.registry=nexus3.openecomp.org:10001
- - docker.push.registry=nexus3.openecomp.org:10003
+ - docker.pull.registry=nexus3.onap.org:10001
+ - docker.push.registry=nexus3.onap.org:10003
- shell: !include-raw-escape: include-docker-push.sh
diff --git a/jjb/global-templates-python.yaml b/jjb/global-templates-python.yaml
index ad02b5875..13c6ccd1f 100644
--- a/jjb/global-templates-python.yaml
+++ b/jjb/global-templates-python.yaml
@@ -113,7 +113,7 @@
- shell: |
cp $WORKSPACE/docker/* .
docker -D build -t openecomp/testsuite .
- export REPO="nexus3.openecomp.org:10003"
+ export REPO="nexus3.onap.org:10003"
docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:1.0-STAGING-latest
docker push $REPO/openecomp/testsuite:1.0-STAGING-latest
@@ -173,6 +173,6 @@
- shell: |
cp $WORKSPACE/docker/* .
docker -D build -t openecomp/testsuite .
- export REPO="nexus3.openecomp.org:10003"
+ export REPO="nexus3.onap.org:10003"
docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:1.0-STAGING-latest
docker push $REPO/openecomp/testsuite:1.0-STAGING-latest
diff --git a/jjb/include-docker-blessing.sh b/jjb/include-docker-blessing.sh
index a2b7c8f0d..0c843f790 100755
--- a/jjb/include-docker-blessing.sh
+++ b/jjb/include-docker-blessing.sh
@@ -24,11 +24,11 @@ then
exit 1
fi
-RELEASE_REPOSITORY="nexus3.openecomp.org:10002"
-SNAPSHOT_REPOSITORY="nexus3.openecomp.org:10003"
+RELEASE_REPOSITORY="nexus3.onap.org:10002"
+SNAPSHOT_REPOSITORY="nexus3.onap.org:10003"
STAGING_IMAGE="openecomp/$PROJECT:$X.$Y-STAGING-latest"
RELEASE_IMAGE="openecomp/$PROJECT:$X.$Y.$Z"
docker pull "$SNAPSHOT_REPOSITORY/$STAGING_IMAGE"
docker tag "$SNAPSHOT_REPOSITORY/$STAGING_IMAGE" "$RELEASE_REPOSITORY/$RELEASE_IMAGE"
-docker push "$RELEASE_REPOSITORY/$RELEASE_IMAGE" \ No newline at end of file
+docker push "$RELEASE_REPOSITORY/$RELEASE_IMAGE"
diff --git a/jjb/include-docker-login.sh b/jjb/include-docker-login.sh
index c39b9f37b..8ecf44022 100644
--- a/jjb/include-docker-login.sh
+++ b/jjb/include-docker-login.sh
@@ -2,10 +2,10 @@
# vim: ts=4 sw=4 sts=4 et :
-DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
- nexus3.openecomp.org:10002 \
- nexus3.openecomp.org:10003 \
- nexus3.openecomp.org:10004"
+DOCKER_REPOSITORIES="nexus3.onap.org:10001 \
+ nexus3.onap.org:10002 \
+ nexus3.onap.org:10003 \
+ nexus3.onap.org:10004"
for DOCKER_REPOSITORY in $DOCKER_REPOSITORIES;
do
diff --git a/jjb/include-docker-push.sh b/jjb/include-docker-push.sh
index 0acc221ea..3e1b883ff 100644
--- a/jjb/include-docker-push.sh
+++ b/jjb/include-docker-push.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-DOCKER_REPOSITORY="nexus3.openecomp.org:10003"
+DOCKER_REPOSITORY="nexus3.onap.org:10003"
SEARCH="aai-service";
DATETIME_STAMP=$(date +%Y%m%dT%H%M%S);
VERSION_FILE="version.properties"