diff options
author | HU Xinhui <xinhui_hu@foxmail.com> | 2018-07-30 05:37:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-07-30 05:37:40 +0000 |
commit | a3bab642b1b3227a307325e116eaa38a569432aa (patch) | |
tree | b64b006096fe8f03012799816243741ba4d57375 /deploy | |
parent | 2d3669c5f9f0c2149f783ae60cda74b65b0eb1be (diff) | |
parent | f4ce5961fa7902031f50b717c1cda8784a1f0e5d (diff) |
Merge "change harbor offline tar to artifacts.opnfv.org"
Diffstat (limited to 'deploy')
-rwxr-xr-x | deploy/compass_vm.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deploy/compass_vm.sh b/deploy/compass_vm.sh index 2f909b60..f7bc378e 100755 --- a/deploy/compass_vm.sh +++ b/deploy/compass_vm.sh @@ -190,11 +190,12 @@ function launch_harbor() { local harbor_cfg=$harbor_install_dir/harbor/harbor.cfg local harbor_docker_compose=$harbor_install_dir/harbor/docker-compose.yml + local harbor_tar=$harbor_install_dir/compass_dists/harbor-offline-installer-v$HABOR_VERSION.tgz rm -f $WORK_DIR/cache/harbor-offline-installer-v$HABOR_VERSION.tgz - curl --connect-timeout 10 -o $WORK_DIR/cache/harbor-offline-installer-v$HABOR_VERSION.tgz $HABOR_DOWNLOAD_URL + curl --connect-timeout 10 -o $WORK_DIR/cache/harbor-offline-installer-v$HABOR_VERSION.tgz file://$harbor_tar tar -zxf $WORK_DIR/cache/harbor-offline-installer-v$HABOR_VERSION.tgz -C $harbor_install_dir - sed "s/^hostname = .*/hostname = $INSTALL_IP/g" -i $harbor_cfg + sed "s/^hostname = .*/hostname = $INSTALL_IP:8080/g" -i $harbor_cfg sed "s/80:80/8080:80/g" -i $harbor_docker_compose sed "s/443:443/8443:443/g" -i $harbor_docker_compose cd $harbor_install_dir/harbor/ |