Our bare repos need to have casablanca branch
[oom/offline-installer.git] / build / download_offline_data_by_lists.sh
1 #! /usr/bin/env bash
2
3 #   COPYRIGHT NOTICE STARTS HERE
4 #
5 #   Copyright 2018 © Samsung Electronics Co., Ltd.
6 #
7 #   Licensed under the Apache License, Version 2.0 (the "License");
8 #   you may not use this file except in compliance with the License.
9 #   You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #   Unless required by applicable law or agreed to in writing, software
14 #   distributed under the License is distributed on an "AS IS" BASIS,
15 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #   See the License for the specific language governing permissions and
17 #   limitations under the License.
18 #
19 #   COPYRIGHT NOTICE ENDS HERE
20
21
22 # fail fast
23 set -e
24
25 usage () {
26     echo "Usage:"
27     echo -e "./$(basename $0) <project version>\n"
28     echo "onap_3.0.0 for casablanca                     (sign-off 30/11/2018)"
29     echo "onap_3.0.1 for casablanca maintenance release (sign-off 10/12/2018)"
30     echo ""
31     echo "Example:"
32     echo "  ./$(basename $0) onap_3.0.1"
33 }
34
35 # boilerplate
36 RELATIVE_PATH=./ # relative path from this script to 'common-functions.sh'
37 if [ "$IS_COMMON_FUNCTIONS_SOURCED" != YES ] ; then
38     SCRIPT_DIR=$(dirname "${0}")
39     LOCAL_PATH=$(readlink -f "$SCRIPT_DIR")
40     . "${LOCAL_PATH}"/"${RELATIVE_PATH}"/common-functions.sh
41 fi
42
43 if [ "${1}" == "-h" ] || [ -z "${1}" ]; then
44     usage
45     exit 0
46 else
47     TAG="${1}"
48 fi
49
50 CTOOLS="${LOCAL_PATH}/creating_data"
51 LISTS_DIR="${LOCAL_PATH}/data_lists"
52 DATA_DIR="${LOCAL_PATH}/../../resources"
53 TOTAL=12
54 CURR=1
55
56 message info "Downloading started: $(date)"
57
58 echo "[Step $((CURR++))/$TOTAL Download collected docker images]"
59 $CTOOLS/download-docker-images.sh "${LISTS_DIR}/${TAG}-docker_images.list"
60
61 echo "[Step $((CURR++))/$TOTAL Download docker images for infra-server]"
62 $CTOOLS/download-docker-images.sh "${LISTS_DIR}/infra_docker_images.list"
63
64 echo "[Step $((CURR++))/$TOTAL Build own nginx image]"
65 $CTOOLS/create_nginx_image/01create-image.sh "${DATA_DIR}/offline_data/docker_images_infra"
66
67 echo "[Step $((CURR++))/$TOTAL Save docker images from docker cache to tarfiles]"
68 $CTOOLS/save-docker-images.sh "${LISTS_DIR}/${TAG}-docker_images.list" "${DATA_DIR}/offline_data/docker_images_for_nexus"
69
70 echo "[Step $((CURR++))/$TOTAL Prepare infra related images to infra folder]"
71 $CTOOLS/save-docker-images.sh "${LISTS_DIR}/infra_docker_images.list" "${DATA_DIR}/offline_data/docker_images_infra"
72
73 echo "[Step $((CURR++))/$TOTAL Download git repos]"
74 $CTOOLS/download-git-repos.sh "${LISTS_DIR}/onap_3.0.x-git_repos.list" "${DATA_DIR}/git-repo"
75
76 echo "[Step $((CURR++))/$TOTAL Download http files]"
77 $CTOOLS/download-http-files.sh "${LISTS_DIR}/onap_3.0.x-http_files.list" "${DATA_DIR}/http"
78
79 echo "[Step $((CURR++))/$TOTAL Download npm pkgs]"
80 $CTOOLS/download-npm-pkgs.sh "${LISTS_DIR}/onap_3.0.x-npm.list" "${DATA_DIR}/offline_data/npm_tar"
81
82 echo "[Step $((CURR++))/$TOTAL Download bin tools]"
83 $CTOOLS/download-bin-tools.sh "${DATA_DIR}/downloads"
84
85 echo "[Step $((CURR++))/$TOTAL Create RHEL repository]"
86 $CTOOLS/create-rhel-repo.sh "${DATA_DIR}/pkg/rhel"
87
88 echo "[Step $((CURR++))/$TOTAL Download sdnc-ansible-server packages]"
89 $CTOOLS/download-pip.sh "${LISTS_DIR}/onap_3.0.x-pip_packages.list" "${DATA_DIR}/offline_data/pypi"
90 $CTOOLS/download-files.sh "${LISTS_DIR}/deb_packages.list" "${DATA_DIR}/pkg/ubuntu/xenial"
91
92 echo "[Step $((CURR++))/$TOTAL Create APT repository]"
93 $CTOOLS/create-ubuntu-repo.sh "${DATA_DIR}/pkg/ubuntu/xenial"
94
95 message info "Downloading finished: $(date)"