Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 1 | #! /usr/bin/env bash |
| 2 | |
| 3 | # COPYRIGHT NOTICE STARTS HERE |
| 4 | # |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 5 | # Copyright 2018-2019 © Samsung Electronics Co., Ltd. |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 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 | |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 21 | ### This script prepares Nexus repositories data blobs for ONAP |
| 22 | |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 23 | ## The script requires following dependencies are installed: nodejs, jq, docker, twine, expect |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 24 | ## All required resources are expected in the upper directory created during |
| 25 | ## download procedure as DATA_DIR or in the directory given as --input-directory |
| 26 | ## All lists used must be in project data_lists directory or in the directory given |
| 27 | ## as --resource-list-directory |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 28 | |
| 29 | # Fail fast settings |
| 30 | set -e |
| 31 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 32 | TIMESTAMP="date +'%Y-%m-%d_%H-%M-%S'" |
| 33 | SCRIPT_LOG="/tmp/$(basename $0)_$(eval ${TIMESTAMP}).log" |
| 34 | |
| 35 | # Log everything |
| 36 | exec &> >(tee -a "${SCRIPT_LOG}") |
| 37 | |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 38 | # Nexus repository location |
| 39 | NEXUS_DOMAIN="nexus" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 40 | NEXUS_PORT="8081" |
| 41 | NEXUS_DOCKER_PORT="8082" |
| 42 | NPM_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/npm-private/" |
| 43 | PYPI_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/pypi-private/" |
| 44 | DOCKER_REGISTRY="${NEXUS_DOMAIN}:${NEXUS_DOCKER_PORT}" |
| 45 | DEFAULT_REGISTRY="docker.io" |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 46 | |
| 47 | # Nexus repository credentials |
| 48 | NEXUS_USERNAME=admin |
| 49 | NEXUS_PASSWORD=admin123 |
| 50 | NEXUS_EMAIL=admin@example.org |
| 51 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 52 | # Setting paths |
| 53 | LOCAL_PATH="$(readlink -f $(dirname ${0}))" |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 54 | |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 55 | # Defaults |
Tomáš Levora | e878f03 | 2019-06-13 13:31:01 +0200 | [diff] [blame] | 56 | DOCKER_LOAD="false" |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 57 | NPM_PUSH="false" |
| 58 | PYPI_PUSH="false" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 59 | DATA_DIR="$(realpath ${LOCAL_PATH}/../../resources)" |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 60 | NEXUS_DATA_DIR="${DATA_DIR}/nexus_data" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 61 | LISTS_DIR="${LOCAL_PATH}/data_lists" |
| 62 | |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 63 | # Required dependencies |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 64 | COMMANDS=(jq docker) |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 65 | |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 66 | usage () { |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 67 | echo " |
| 68 | Usage: $(basename $0) [OPTION...] [FILE]... |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 69 | |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 70 | This script prepares Nexus repositories data blobs for ONAP |
| 71 | |
| 72 | Following dependencies are required: nodejs, jq, docker, twine, expect |
| 73 | By default, without any lists or dirs provided, the resources are expected as downloaded |
| 74 | during download process and default lists will be used to build the Nexus blob in the same |
| 75 | resources dir |
| 76 | |
| 77 | Examples: |
| 78 | $(basename $0) --input-directory </path/to/downloaded/files/dir> -ld --output-directory |
| 79 | </path/to/output/dir> --resource-list-directory </path/to/dir/with/resource/list> |
| 80 | # Docker images, npms and pypi packages will be loaded from specified directory |
| 81 | # and the blob is created |
| 82 | $(basename $0) -d </path/to/docker/images/list> -d </path/to/another/docker/images/list> |
| 83 | -n </path/to/npm/list> -p </path/to/pip/list> |
| 84 | # Docker images, npms and pypi packages will be pushed to Nexus based and provided data |
| 85 | # lists (multiple lists can be provided) |
| 86 | |
| 87 | -d | --docker use specific list of docker images to be pushed into Nexus |
| 88 | (in case of -ld used, this list will be used for loading of |
| 89 | the images) |
| 90 | -h | --help print this usage |
| 91 | -i | --input-directory use specific directory containing resources needed to |
| 92 | create nexus blob |
| 93 | The structure of this directory must organized as described |
| 94 | in build guide |
| 95 | -ld | --load-docker-images load docker images from resource directory |
| 96 | -n | --npm list of npm packages to be pushed into Nexus |
| 97 | -o | --output-directory use specific directory for the target blob |
| 98 | -p | --pypi use specific list of pypi packages to be pushed into Nexus |
| 99 | -rl | --resource-list-directory use specific directory with docker, pypi and npm lists |
Mateusz Pilat | b12b440 | 2019-05-23 15:55:56 +0200 | [diff] [blame] | 100 | " |
| 101 | exit 1 |
| 102 | } |
| 103 | |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 104 | publish_ports () { |
| 105 | for REGISTRY in $(sed -n '/\.[^/].*\//p' ${1} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true) ${NEXUS_PORT}; do |
| 106 | if [[ ${REGISTRY} != *":"* ]]; then |
| 107 | if [[ ${PUBLISHED_PORTS} != *"80:${NEXUS_DOCKER_PORT}"* ]]; then |
| 108 | PUBLISHED_PORTS="${PUBLISHED_PORTS} -p 80:${NEXUS_DOCKER_PORT}" |
| 109 | fi |
| 110 | else |
| 111 | REGISTRY_PORT="$(sed 's/^.*\:\([[:digit:]]*\)$/\1/' <<< ${REGISTRY})" |
| 112 | if [[ ${PUBLISHED_PORTS} != *"${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}"* ]]; then |
| 113 | PUBLISHED_PORTS="${PUBLISHED_PORTS} -p ${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}" |
| 114 | fi |
| 115 | fi |
| 116 | done |
| 117 | } |
| 118 | |
| 119 | simulated_hosts () { |
| 120 | SIMUL_HOSTS=($(sed -n '/\.[^/].*\//p' ${1} | sed -e 's/\/.*$// ; s/:.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true ) ${NEXUS_DOMAIN}) |
| 121 | for HOST in "${SIMUL_HOSTS[@]}"; do |
| 122 | if ! grep -wq ${HOST} /etc/hosts; then |
| 123 | echo "127.0.0.1 ${HOST}" >> /etc/hosts |
| 124 | fi |
| 125 | done |
| 126 | } |
| 127 | |
Tomáš Levora | e878f03 | 2019-06-13 13:31:01 +0200 | [diff] [blame] | 128 | load_docker_images () { |
| 129 | for ARCHIVE in $(sed $'s/\r// ; /^#/d ; s/\:/\_/g ; s/\//\_/g ; s/$/\.tar/g' ${1} | awk '{ print $1 }'); do |
| 130 | docker load -i ${NXS_SRC_DOCKER_IMG_DIR}/${ARCHIVE} |
| 131 | done |
| 132 | } |
| 133 | |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 134 | prepare_npm () { |
| 135 | # Configure NPM registry to our Nexus repository |
| 136 | echo "Configure NPM registry to ${NPM_REGISTRY}" |
| 137 | npm config set registry "${NPM_REGISTRY}" |
| 138 | |
| 139 | # Login to NPM registry |
| 140 | /usr/bin/expect <<- EOF |
| 141 | spawn npm login |
| 142 | expect "Username:" |
| 143 | send "${NEXUS_USERNAME}\n" |
| 144 | expect "Password:" |
| 145 | send "${NEXUS_PASSWORD}\n" |
| 146 | expect Email: |
| 147 | send "${NEXUS_EMAIL}\n" |
| 148 | expect eof |
| 149 | EOF |
| 150 | } |
| 151 | |
| 152 | patch_npm () { |
| 153 | # Patch problematic package |
| 154 | PATCHED_NPM="$(grep tsscmp ${1} | sed $'s/\r// ; s/\\@/\-/ ; s/$/\.tgz/')" |
| 155 | if [[ ! -z "${PATCHED_NPM}" ]] && ! zgrep -aq "${NPM_REGISTRY}" "${PATCHED_NPM}" 2>/dev/null |
| 156 | then |
| 157 | tar xzf "${PATCHED_NPM}" |
| 158 | rm -f "${PATCHED_NPM}" |
| 159 | sed -i 's|\"registry\":\ \".*\"|\"registry\":\ \"'"${NPM_REGISTRY}"'\"|g' package/package.json |
| 160 | tar -zcf "${PATCHED_NPM}" package |
| 161 | rm -rf package |
| 162 | fi |
| 163 | } |
| 164 | |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 165 | push_npm () { |
| 166 | for ARCHIVE in $(sed $'s/\r// ; s/\\@/\-/g ; s/$/\.tgz/g' ${1}); do |
| 167 | npm publish --access public ${ARCHIVE} > /dev/null |
| 168 | echo "NPM ${ARCHIVE} pushed to Nexus" |
| 169 | done |
| 170 | } |
| 171 | |
| 172 | push_pip () { |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 173 | for PACKAGE in $(sed $'s/\r//; s/==/-/' ${1}); do |
| 174 | twine upload -u "${NEXUS_USERNAME}" -p "${NEXUS_PASSWORD}" --repository-url ${PYPI_REGISTRY} ${PACKAGE}* > /dev/null |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 175 | echo "PYPI ${PACKAGE} pushed to Nexus" |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 176 | done |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | docker_login () { |
| 180 | for REGISTRY in $(sed -n '/\.[^/].*\//p' ${1} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY}) ${DOCKER_REGISTRY}; do |
Tomáš Levora | 12fe944 | 2019-08-27 14:16:07 +0200 | [diff] [blame] | 181 | if ! grep -wqs ${REGISTRY} ~/.docker/config.json; then |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 182 | echo "Docker login to ${REGISTRY}" |
Tomáš Levora | 80409ef | 2019-09-04 10:36:30 +0200 | [diff] [blame] | 183 | echo -n "${NEXUS_PASSWORD}" | docker login -u "${NEXUS_USERNAME}" --password-stdin ${REGISTRY} > /dev/null |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 184 | fi |
| 185 | done |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | push_docker () { |
| 189 | for IMAGE in $(sed $'s/\r// ; /^#/d' ${1} | awk '{ print $1 }'); do |
| 190 | PUSH="" |
| 191 | if [[ ${IMAGE} != *"/"* ]]; then |
| 192 | PUSH="${DOCKER_REGISTRY}/library/${IMAGE}" |
| 193 | elif [[ ${IMAGE} == *"${DEFAULT_REGISTRY}"* ]]; then |
| 194 | if [[ ${IMAGE} == *"/"*"/"* ]]; then |
| 195 | PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'/' <<< ${IMAGE})" |
| 196 | else |
| 197 | PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'\/library/' <<< ${IMAGE})" |
| 198 | fi |
| 199 | elif [[ -z $(sed -n '/\.[^/].*\//p' <<< ${IMAGE}) ]]; then |
| 200 | PUSH="${DOCKER_REGISTRY}/${IMAGE}" |
| 201 | fi |
| 202 | if [[ ! -z ${PUSH} ]]; then |
| 203 | docker tag ${IMAGE} ${PUSH} |
| 204 | else |
| 205 | PUSH="${IMAGE}" |
| 206 | fi |
| 207 | docker push ${PUSH} |
| 208 | echo "${IMAGE} pushed as ${PUSH} to Nexus" |
| 209 | done |
| 210 | } |
| 211 | |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 212 | while [ "${1}" != "" ]; do |
| 213 | case ${1} in |
| 214 | -d | --docker ) shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 215 | NXS_DOCKER_IMG_LISTS+=("$(realpath ${1})") |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 216 | ;; |
| 217 | -i | --input-directory ) shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 218 | DATA_DIR="$(realpath ${1})" |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 219 | ;; |
| 220 | -ld | --load-docker-images ) DOCKER_LOAD="true" |
| 221 | ;; |
| 222 | -n | --npm ) NPM_PUSH="true" |
| 223 | COMMANDS+=(expect npm) |
| 224 | shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 225 | NXS_NPM_LISTS+=("$(realpath ${1})") |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 226 | ;; |
| 227 | -o | --output-directory ) shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 228 | NEXUS_DATA_DIR="$(realpath ${1})" |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 229 | ;; |
| 230 | -p | --pypi ) PYPI_PUSH="true" |
| 231 | COMMANDS+=(twine) |
| 232 | shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 233 | NXS_PYPI_LISTS+=("$(realpath ${1})") |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 234 | ;; |
| 235 | -rl | --resource-list-directory ) shift |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 236 | LISTS_DIR="$(realpath ${1})" |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 237 | ;; |
| 238 | -h | --help ) usage |
| 239 | ;; |
| 240 | *) usage |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 241 | ;; |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 242 | esac |
| 243 | shift |
| 244 | done |
| 245 | |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 246 | # Verify all dependencies are available in PATH |
| 247 | FAILED_COMMANDS=() |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 248 | for cmd in ${COMMANDS[*]}; do |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 249 | command -v $cmd >/dev/null 2>&1 || FAILED_COMMANDS+=($cmd) |
| 250 | done |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 251 | |
| 252 | if [ ${#FAILED_COMMANDS[*]} -gt 0 ]; then |
Bartek Grzybowski | 60e2e9a | 2019-07-02 10:15:36 +0200 | [diff] [blame] | 253 | echo "Following commands where not found in PATH and are required:" |
| 254 | echo ${FAILED_COMMANDS[*]} |
| 255 | echo "Aborting." |
| 256 | exit 1 |
| 257 | fi |
| 258 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 259 | # Setup directories with resources for docker, npm and pypi |
| 260 | NXS_SRC_DOCKER_IMG_DIR="${DATA_DIR}/offline_data/docker_images_for_nexus" |
| 261 | NXS_SRC_NPM_DIR="${DATA_DIR}/offline_data/npm_tar" |
| 262 | NXS_SRC_PYPI_DIR="${DATA_DIR}/offline_data/pypi" |
| 263 | |
Tomáš Levora | feaa6b4 | 2019-05-29 09:45:29 +0200 | [diff] [blame] | 264 | # Setup specific resources lists |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 265 | NXS_INFRA_LIST="${LISTS_DIR}/infra_docker_images.list" |
Tomáš Levora | feaa6b4 | 2019-05-29 09:45:29 +0200 | [diff] [blame] | 266 | NXS_DOCKER_IMG_LIST="${LISTS_DIR}/onap_docker_images.list" |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 267 | NXS_RKE_DOCKER_IMG_LIST="${LISTS_DIR}/rke_docker_images.list" |
Tomáš Levora | 3950556 | 2019-10-03 13:31:54 +0200 | [diff] [blame] | 268 | NXS_K8S_DOCKER_IMG_LIST="${LISTS_DIR}/k8s_docker_images.list" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 269 | |
| 270 | # Setup Nexus image used for build and install infra |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 271 | NEXUS_IMAGE="$(grep sonatype/nexus3 ${NXS_INFRA_LIST})" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 272 | NEXUS_IMAGE_TAR="${DATA_DIR}/offline_data/docker_images_infra/$(sed 's/\//\_/ ; s/$/\.tar/ ; s/\:/\_/' <<< ${NEXUS_IMAGE})" |
| 273 | |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 274 | # Set default lists if nothing specific defined by user |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 275 | if [ ${#NXS_DOCKER_IMG_LISTS[@]} -eq 0 ]; then |
Tomáš Levora | 3950556 | 2019-10-03 13:31:54 +0200 | [diff] [blame] | 276 | NXS_DOCKER_IMG_LISTS=("${NXS_DOCKER_IMG_LIST}" "${NXS_RKE_DOCKER_IMG_LIST}" "${NXS_K8S_DOCKER_IMG_LIST}") |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 277 | fi |
| 278 | |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 279 | # Backup /etc/hosts |
| 280 | HOSTS_BACKUP="$(eval ${TIMESTAMP}_hosts.bk)" |
| 281 | cp /etc/hosts /etc/${HOSTS_BACKUP} |
| 282 | |
| 283 | # Backup the current docker registry settings |
| 284 | if [ -f ~/.docker/config.json ]; then |
| 285 | DOCKER_CONF_BACKUP="$(eval ${TIMESTAMP}_config.json.bk)" |
| 286 | mv ~/.docker/config.json ~/.docker/${DOCKER_CONF_BACKUP} |
| 287 | fi |
| 288 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 289 | # Setup default ports published to host as docker registry |
| 290 | PUBLISHED_PORTS="-p ${NEXUS_PORT}:${NEXUS_PORT} -p ${NEXUS_DOCKER_PORT}:${NEXUS_DOCKER_PORT}" |
| 291 | |
| 292 | # Setup additional ports published to host based on simulated docker registries |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 293 | # Setup simulated domain names to be able to push all to private Nexus repository |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 294 | for DOCKER_IMG_LIST in "${NXS_DOCKER_IMG_LISTS[@]}"; do |
| 295 | publish_ports "${DOCKER_IMG_LIST}" |
| 296 | simulated_hosts "${DOCKER_IMG_LIST}" |
| 297 | done |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 298 | |
| 299 | # Nexus repository configuration setup |
| 300 | NEXUS_CONFIG_GROOVY='import org.sonatype.nexus.security.realm.RealmManager |
| 301 | import org.sonatype.nexus.repository.attributes.AttributesFacet |
| 302 | import org.sonatype.nexus.security.user.UserManager |
| 303 | import org.sonatype.nexus.repository.manager.RepositoryManager |
| 304 | import org.sonatype.nexus.security.user.UserNotFoundException |
| 305 | /* Use the container to look up some services. */ |
| 306 | realmManager = container.lookup(RealmManager.class) |
| 307 | userManager = container.lookup(UserManager.class, "default") //default user manager |
| 308 | repositoryManager = container.lookup(RepositoryManager.class) |
| 309 | /* Managers are used when scripting api cannot. Note that scripting api can only create mostly, and that creation methods return objects of created entities. */ |
| 310 | /* Perform cleanup by removing all repos and users. Realms do not need to be re-disabled, admin and anonymous user will not be removed. */ |
| 311 | userManager.listUserIds().each({ id -> |
| 312 | if (id != "anonymous" && id != "admin") |
| 313 | userManager.deleteUser(id) |
| 314 | }) |
| 315 | repositoryManager.browse().each { |
| 316 | repositoryManager.delete(it.getName()) |
| 317 | } |
| 318 | /* Add bearer token realms at the end of realm lists... */ |
| 319 | realmManager.enableRealm("NpmToken") |
| 320 | realmManager.enableRealm("DockerToken") |
Tomáš Levora | 1d90234 | 2019-02-05 10:01:43 +0100 | [diff] [blame] | 321 | realmManager.enableRealm("PypiToken") |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 322 | /* Create the docker user. */ |
| 323 | security.addUser("docker", "docker", "docker", "docker@example.com", true, "docker", ["nx-anonymous"]) |
Tomáš Levora | 1d90234 | 2019-02-05 10:01:43 +0100 | [diff] [blame] | 324 | /* Create docker, npm and pypi repositories. Their default configuration should be compliant with our requirements, except the docker registry creation. */ |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 325 | repository.createNpmHosted("npm-private") |
Tomáš Levora | 1d90234 | 2019-02-05 10:01:43 +0100 | [diff] [blame] | 326 | repository.createPyPiHosted("pypi-private") |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 327 | def r = repository.createDockerHosted("onap", 8082, 0) |
| 328 | /* force basic authentication true by default, must set to false for docker repo. */ |
| 329 | conf=r.getConfiguration() |
| 330 | conf.attributes("docker").set("forceBasicAuth", false) |
| 331 | repositoryManager.update(conf)' |
| 332 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 333 | # Prepare the Nexus configuration |
| 334 | NEXUS_CONFIG=$(echo "${NEXUS_CONFIG_GROOVY}" | jq -Rsc '{"name":"configure", "type":"groovy", "content":.}') |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 335 | |
| 336 | ################################# |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 337 | # Docker repository preparation # |
| 338 | ################################# |
| 339 | |
Tomáš Levora | e878f03 | 2019-06-13 13:31:01 +0200 | [diff] [blame] | 340 | if [ "${DOCKER_LOAD}" == "true" ]; then |
| 341 | # Load predefined Nexus image |
| 342 | docker load -i ${NEXUS_IMAGE_TAR} |
| 343 | # Load all necessary images |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 344 | for DOCKER_IMG_LIST in "${NXS_DOCKER_IMG_LISTS[@]}"; do |
| 345 | load_docker_images "${DOCKER_IMG_LIST}" |
| 346 | done |
Tomáš Levora | e878f03 | 2019-06-13 13:31:01 +0200 | [diff] [blame] | 347 | fi |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 348 | |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 349 | ################################ |
| 350 | # Nexus repository preparation # |
| 351 | ################################ |
| 352 | |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 353 | # Prepare nexus-data directory |
| 354 | if [ -d ${NEXUS_DATA_DIR} ]; then |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 355 | if [ "$(docker ps -q -f name="${NEXUS_DOMAIN}")" ]; then |
| 356 | echo "Removing container ${NEXUS_DOMAIN}" |
| 357 | docker rm -f $(docker ps -aq -f name="${NEXUS_DOMAIN}") |
| 358 | fi |
| 359 | pushd ${NEXUS_DATA_DIR}/.. |
| 360 | NXS_BACKUP="$(eval ${TIMESTAMP})_$(basename ${NEXUS_DATA_DIR})_bk" |
| 361 | mv ${NEXUS_DATA_DIR} "${NXS_BACKUP}" |
| 362 | echo "${NEXUS_DATA_DIR} already exists - backing up to ${NXS_BACKUP}" |
| 363 | popd |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 364 | fi |
| 365 | |
| 366 | mkdir -p ${NEXUS_DATA_DIR} |
| 367 | chown 200:200 ${NEXUS_DATA_DIR} |
| 368 | chmod 777 ${NEXUS_DATA_DIR} |
| 369 | |
| 370 | # Save Nexus version to prevent/catch data incompatibility |
Tomáš Levora | 70ec9f4 | 2019-07-09 15:33:48 +0200 | [diff] [blame] | 371 | # Adding commit informations to have link to data from which the blob was built |
| 372 | cat >> ${NEXUS_DATA_DIR}/nexus.ver << INFO |
| 373 | nexus_image=$(docker image ls ${NEXUS_IMAGE} --no-trunc --format "{{.Repository}}:{{.Tag}}\nnexus_image_digest={{.ID}}") |
| 374 | $(for INDEX in ${!NXS_DOCKER_IMG_LISTS[@]}; do printf 'used_image_list%s=%s\n' "$INDEX" "$(sed 's/^.*\/\(.*\)$/\1/' <<< ${NXS_DOCKER_IMG_LISTS[$INDEX]})"; done) |
| 375 | $(sed -n 's/^.*OOM\ commit\ /oom_repo_commit=/p' ${NXS_DOCKER_IMG_LISTS[@]}) |
| 376 | installer_repo_commit=$(git --git-dir="${LOCAL_PATH}/../.git" rev-parse HEAD) |
| 377 | INFO |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 378 | |
| 379 | # Start the Nexus |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 380 | NEXUS_CONT_ID=$(docker run -d --rm -v ${NEXUS_DATA_DIR}:/nexus-data:rw --name ${NEXUS_DOMAIN} ${PUBLISHED_PORTS} ${NEXUS_IMAGE}) |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 381 | echo "Waiting for Nexus to fully start" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 382 | until curl -su ${NEXUS_USERNAME}:${NEXUS_PASSWORD} http://${NEXUS_DOMAIN}:${NEXUS_PORT}/service/metrics/healthcheck | grep '"healthy":true' > /dev/null ; do |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 383 | printf "." |
| 384 | sleep 3 |
| 385 | done |
| 386 | echo -e "\nNexus started" |
| 387 | |
| 388 | # Configure the nexus repository |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 389 | curl -sX POST --header 'Content-Type: application/json' --data-binary "${NEXUS_CONFIG}" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script |
| 390 | curl -sX POST --header "Content-Type: text/plain" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script/configure/run > /dev/null |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 391 | |
| 392 | ########################### |
| 393 | # Populate NPM repository # |
| 394 | ########################### |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 395 | if [ $NPM_PUSH == "true" ]; then |
| 396 | prepare_npm |
| 397 | pushd ${NXS_SRC_NPM_DIR} |
| 398 | for NPM_LIST in "${NXS_NPM_LISTS[@]}"; do |
| 399 | patch_npm "${NPM_LIST}" |
| 400 | push_npm "${NPM_LIST}" |
| 401 | done |
| 402 | popd |
| 403 | # Return default settings |
| 404 | npm logout |
| 405 | npm config set registry "https://registry.npmjs.org" |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 406 | fi |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 407 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 408 | ############################### |
| 409 | ## Populate PyPi repository # |
| 410 | ############################### |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 411 | if [ $PYPI_PUSH == "true" ]; then |
| 412 | pushd ${NXS_SRC_PYPI_DIR} |
| 413 | for PYPI_LIST in "${NXS_PYPI_LISTS[@]}"; do |
| 414 | push_pip "${PYPI_LIST}" |
| 415 | done |
| 416 | popd |
| 417 | fi |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 418 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 419 | ############################### |
| 420 | ## Populate Docker repository # |
| 421 | ############################### |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 422 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 423 | # Login to simulated docker registries |
Tomáš Levora | be74884 | 2019-09-04 13:56:53 +0200 | [diff] [blame] | 424 | # Push images to private nexus based on the lists |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 425 | # Images from default registry need to be tagged to private registry |
| 426 | # and those without defined repository in tag uses default repository 'library' |
Tomáš Levora | 55b4366 | 2019-07-17 13:42:47 +0200 | [diff] [blame] | 427 | for DOCKER_IMG_LIST in "${NXS_DOCKER_IMG_LISTS[@]}"; do |
| 428 | docker_login "${DOCKER_IMG_LIST}" |
| 429 | push_docker "${DOCKER_IMG_LIST}" |
| 430 | done |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 431 | |
| 432 | ############################## |
| 433 | # Stop the Nexus and cleanup # |
| 434 | ############################## |
| 435 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 436 | echo "Stopping Nexus and returning backups" |
| 437 | |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 438 | # Stop the Nexus |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 439 | docker stop ${NEXUS_CONT_ID} > /dev/null |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 440 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 441 | # Return backed up configuration files |
Tomáš Levora | 8059407 | 2019-07-11 10:38:23 +0200 | [diff] [blame] | 442 | mv -f "/etc/${HOSTS_BACKUP}" /etc/hosts |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 443 | |
Tomáš Levora | 20d3b8a | 2019-07-09 14:07:08 +0200 | [diff] [blame] | 444 | if [ -f ~/.docker/${DOCKER_CONF_BACKUP} ]; then |
| 445 | mv -f ~/.docker/${DOCKER_CONF_BACKUP} ~/.docker/config.json |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 446 | fi |
Samuli Silvius | 9e9afd7 | 2018-12-21 14:23:51 +0200 | [diff] [blame] | 447 | |
Tomáš Levora | 8d272bd | 2019-03-12 15:06:35 +0100 | [diff] [blame] | 448 | echo "Nexus blob is built" |
Tomáš Levora | 479673b | 2019-11-06 11:49:52 +0100 | [diff] [blame^] | 449 | exit 0 |