summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>2015-05-18 19:55:54 +0200
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>2015-05-18 19:55:54 +0200
commitb58ab13c6163e8baeb90b7a5b13c55a002804504 (patch)
treec1f3ddcb07eff41ddd1eff296e9e4a3d96e801a4
parent8a5f5001791abb73745b35275c7bd97d214467e1 (diff)
Fix GIT_BASE and switch to curl for pod1 deployment
JIRA: OCTO-3 Change-Id: I78a34ec234f39b3ec033ef7818f59d087aa8d5b9 Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
-rw-r--r--jjb/genesis/genesis-fuel.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/genesis/genesis-fuel.yml b/jjb/genesis/genesis-fuel.yml
index 319986779..e9f279ed9 100644
--- a/jjb/genesis/genesis-fuel.yml
+++ b/jjb/genesis/genesis-fuel.yml
@@ -244,7 +244,7 @@
installer: '{installer}'
- string:
name: GIT_BASE
- default: ssh://gerrit.opnfv.org/gerrit/$PROJECT
+ default: ssh://gerrit.opnfv.org:29418/$PROJECT
description: "POD1 has some issues with cloning using https so that's why GIT_BASE is overriden here again."
scm:
@@ -458,7 +458,7 @@
echo
# get the latest.properties file in order to get info regarding latest artifact
- gsutil cp gs://$GS_URL/latest.properties $WORKSPACE/latest.properties
+ curl -s -o $WORKSPACE/latest.properties http://$GS_URL/latest.properties
# check if we got the file
[[ -f latest.properties ]] || exit 1
@@ -467,7 +467,7 @@
source latest.properties
# download the file
- gsutil cp gs://$OPNFV_ARTIFACT_URL $WORKSPACE/opnfv.iso > gsutil.iso.log 2>&1
+ curl -s -o $WORKSPACE/opnfv.iso http://$OPNFV_ARTIFACT_URL > gsutil.iso.log 2>&1
# list the file
ls -al $WORKSPACE/opnfv.iso