Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 3 | source /var/onap/commons |
Victor Morales | 5464664 | 2017-12-08 11:57:42 -0800 | [diff] [blame] | 4 | source /var/onap/config/env-vars |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 5 | source /var/onap/_composed_functions |
| 6 | source /var/onap/_onap_functions |
| 7 | |
Victor Morales | 9651265 | 2017-08-16 13:44:28 -0500 | [diff] [blame] | 8 | export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' |sort -n | head -1) |
Victor Morales | 4ab71c1 | 2017-11-08 07:28:28 -0800 | [diff] [blame] | 9 | export NIC=$(ip route get 8.8.8.8 | awk '{ print $5; exit }') |
| 10 | export IP_ADDRESS=$(ifconfig $NIC | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2) |
Victor Morales | 9651265 | 2017-08-16 13:44:28 -0500 | [diff] [blame] | 11 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 12 | mvn_conf_file=/root/.m2/settings.xml |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 13 | |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 14 | # configure_dns() - DNS/GW IP address configuration |
| 15 | function configure_dns { |
| 16 | echo "nameserver 10.0.0.1" >> /etc/resolvconf/resolv.conf.d/head |
| 17 | resolvconf -u |
| 18 | } |
| 19 | |
Victor Morales | 4ab71c1 | 2017-11-08 07:28:28 -0800 | [diff] [blame] | 20 | # get_next_ip() - Function that provides the next ip |
| 21 | function get_next_ip { |
| 22 | local ip=${1:-$IP_ADDRESS} |
| 23 | ip_hex=$(printf '%.2X%.2X%.2X%.2X\n' `echo $ip | sed -e 's/\./ /g'`) |
| 24 | next_ip_hex=$(printf %.8X `echo $(( 0x$ip_hex + 1 ))`) |
| 25 | echo $(printf '%d.%d.%d.%d\n' `echo $next_ip_hex | sed -r 's/(..)/0x\1 /g'`) |
| 26 | } |
| 27 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 28 | # _git_timed() - git can sometimes get itself infinitely stuck with transient network |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 29 | # errors or other issues with the remote end. This wraps git in a |
| 30 | # timeout/retry loop and is intended to watch over non-local git |
| 31 | # processes that might hang. |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 32 | function _git_timed { |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 33 | local count=0 |
| 34 | local timeout=0 |
| 35 | |
| 36 | install_package git |
| 37 | until timeout -s SIGINT ${timeout} git "$@"; do |
| 38 | # 124 is timeout(1)'s special return code when it reached the |
| 39 | # timeout; otherwise assume fatal failure |
| 40 | if [[ $? -ne 124 ]]; then |
| 41 | exit 1 |
| 42 | fi |
| 43 | |
| 44 | count=$(($count + 1)) |
| 45 | if [ $count -eq 3 ]; then |
| 46 | exit 1 |
| 47 | fi |
| 48 | sleep 5 |
| 49 | done |
| 50 | } |
| 51 | |
| 52 | # clone_repo() - Clone Git repository into specific folder |
| 53 | function clone_repo { |
Victor Morales | 9f1c94b | 2017-11-07 07:56:04 -0800 | [diff] [blame] | 54 | local repo_url=${3:-"https://git.onap.org/"} |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 55 | local repo=$1 |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 56 | local dest_folder=${2:-$git_src_folder/$repo} |
| 57 | if [ ! -d $dest_folder ]; then |
Victor Morales | 7abf1a8 | 2017-11-06 09:20:27 -0800 | [diff] [blame] | 58 | if [[ "$debug" == "False" ]]; then |
| 59 | _git_timed clone --quiet ${repo_url}${repo} $dest_folder |
| 60 | else |
| 61 | _git_timed clone ${repo_url}${repo} $dest_folder |
| 62 | fi |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 63 | else |
| 64 | pushd $dest_folder |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 65 | _git_timed pull |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 66 | popd |
| 67 | fi |
| 68 | } |
| 69 | |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 70 | # clone_repos() - Function that clones source repositories for a given project |
| 71 | function clone_repos { |
| 72 | local project=$1 |
Victor Morales | 5d21f64 | 2017-12-07 11:54:59 -0800 | [diff] [blame] | 73 | local repo_name=${2:-$project} |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 74 | |
Victor Morales | 5464664 | 2017-12-08 11:57:42 -0800 | [diff] [blame] | 75 | for repo in ${repos[$project]}; do |
| 76 | clone_repo $repo ${src_folders[$project]}${repo#*$repo_name} |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 77 | done |
| 78 | } |
| 79 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 80 | # _install_bind() - Install bind utils |
| 81 | function _install_bind { |
Victor Morales | 7ae05a4 | 2017-08-22 14:39:00 -0500 | [diff] [blame] | 82 | install_packages bind9 bind9utils |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 85 | # install_java() - Install java binaries |
| 86 | function install_java { |
Victor Morales | ece790c | 2017-08-08 11:11:36 -0500 | [diff] [blame] | 87 | if is_package_installed openjdk-8-jdk; then |
| 88 | return |
| 89 | fi |
Victor Morales | 9f1c94b | 2017-11-07 07:56:04 -0800 | [diff] [blame] | 90 | source /etc/os-release || source /usr/lib/os-release |
| 91 | case ${ID,,} in |
| 92 | *suse) |
| 93 | ;; |
| 94 | ubuntu|debian) |
| 95 | install_package software-properties-common |
| 96 | add-apt-repository -y ppa:openjdk-r/ppa |
| 97 | ;; |
| 98 | rhel|centos|fedora) |
| 99 | ;; |
| 100 | esac |
Victor Morales | 332d7d8 | 2017-11-06 11:51:37 -0800 | [diff] [blame] | 101 | update_repos |
Victor Morales | 7ae05a4 | 2017-08-22 14:39:00 -0500 | [diff] [blame] | 102 | |
| 103 | # Remove Java 7 |
| 104 | uninstall_packages default-jre openjdk-7-jdk openjdk-7-jre openjdk-7-jre-headless |
| 105 | |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 106 | install_package openjdk-8-jdk |
Victor Morales | 455bece | 2017-07-31 18:40:39 -0500 | [diff] [blame] | 107 | # ca-certificates-java is not a dependency in the Oracle JDK/JRE so this must be explicitly installed. |
| 108 | /var/lib/dpkg/info/ca-certificates-java.postinst configure |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | # install_maven() - Install maven binaries |
| 112 | function install_maven { |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 113 | if is_package_installed maven3; then |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 114 | return |
| 115 | fi |
Victor Morales | ece790c | 2017-08-08 11:11:36 -0500 | [diff] [blame] | 116 | install_java |
Victor Morales | 9f1c94b | 2017-11-07 07:56:04 -0800 | [diff] [blame] | 117 | source /etc/os-release || source /usr/lib/os-release |
| 118 | case ${ID,,} in |
| 119 | *suse) |
| 120 | ;; |
| 121 | ubuntu|debian) |
| 122 | install_package software-properties-common |
| 123 | add-apt-repository -y ppa:andrei-pozolotin/maven3 |
| 124 | ;; |
| 125 | rhel|centos|fedora) |
| 126 | ;; |
| 127 | esac |
Victor Morales | 332d7d8 | 2017-11-06 11:51:37 -0800 | [diff] [blame] | 128 | update_repos |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 129 | install_package maven3 |
| 130 | |
Victor Morales | 7ae05a4 | 2017-08-22 14:39:00 -0500 | [diff] [blame] | 131 | # Remove Java 7 |
| 132 | uninstall_package openjdk-7-jdk |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 133 | |
| 134 | _configure_maven |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 135 | } |
| 136 | |
Idan Amit | e17b5ec | 2017-08-16 14:17:59 +0300 | [diff] [blame] | 137 | # _configure_docker_settings() - Configures Docker settings |
| 138 | function _configure_docker_settings { |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 139 | local docker_conf_backup=/tmp/docker.backup |
| 140 | local docker_conf=/etc/default/docker |
| 141 | local chameleonsocks_filename=chameleonsocks.sh |
Victor Morales | fa9eb9c | 2017-12-18 09:56:13 -0800 | [diff] [blame] | 142 | local max_concurrent_downloads=${1:-3} |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 143 | |
Victor Morales | 80f144b | 2018-01-10 07:20:54 -0800 | [diff] [blame] | 144 | cp ${docker_conf} ${docker_conf_backup} |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 145 | if [ $http_proxy ]; then |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 146 | echo "export http_proxy=$http_proxy" >> $docker_conf |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 147 | fi |
| 148 | if [ $https_proxy ]; then |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 149 | echo "export https_proxy=$https_proxy" >> $docker_conf |
Victor Morales | 5ce0421 | 2017-09-24 09:03:32 -0700 | [diff] [blame] | 150 | #If you have a socks proxy, then use that to connect to the nexus repo |
Kiran | f2824c2 | 2017-09-22 18:05:29 -0700 | [diff] [blame] | 151 | #via a redsocks container |
| 152 | if [ $socks_proxy ]; then |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 153 | wget https://raw.githubusercontent.com/crops/chameleonsocks/master/$chameleonsocks_filename |
| 154 | chmod 755 $chameleonsocks_filename |
Victor Morales | 5ce0421 | 2017-09-24 09:03:32 -0700 | [diff] [blame] | 155 | socks=$(echo $socks_proxy | sed -e "s/^.*\///" | sed -e "s/:.*$//") |
| 156 | port=$(echo $socks_proxy | sed -e "s/^.*://") |
Victor Morales | cf26999 | 2017-10-18 09:29:55 -0700 | [diff] [blame] | 157 | PROXY=$socks PORT=$port ./$chameleonsocks_filename --install |
| 158 | rm $chameleonsocks_filename |
Victor Morales | 80f144b | 2018-01-10 07:20:54 -0800 | [diff] [blame] | 159 | cp ${docker_conf_backup} ${docker_conf} |
Kiran | f2824c2 | 2017-09-22 18:05:29 -0700 | [diff] [blame] | 160 | fi |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 161 | fi |
Victor Morales | 80f144b | 2018-01-10 07:20:54 -0800 | [diff] [blame] | 162 | rm ${docker_conf_backup} |
Idan Amit | e17b5ec | 2017-08-16 14:17:59 +0300 | [diff] [blame] | 163 | |
Victor Morales | fa9eb9c | 2017-12-18 09:56:13 -0800 | [diff] [blame] | 164 | echo "DOCKER_OPTS=\"-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --max-concurrent-downloads $max_concurrent_downloads \"" >> $docker_conf |
| 165 | usermod -aG docker $USER |
| 166 | |
| 167 | source /etc/os-release || source /usr/lib/os-release |
| 168 | case ${ID,,} in |
| 169 | *suse) |
| 170 | ;; |
| 171 | ubuntu|debian) |
| 172 | service docker restart |
| 173 | sleep 10 |
| 174 | ;; |
| 175 | rhel|centos|fedora) |
| 176 | ;; |
| 177 | esac |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 178 | } |
| 179 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 180 | # install_nodejs() - Download and install NodeJS |
| 181 | function install_nodejs { |
| 182 | if is_package_installed nodejs; then |
| 183 | return |
| 184 | fi |
| 185 | curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - |
| 186 | install_package nodejs |
| 187 | |
| 188 | # Update NPM to latest version |
| 189 | npm install npm -g |
| 190 | } |
| 191 | |
| 192 | # install_python() - Install Python 2.7 and other tools necessary for development. |
| 193 | function install_python { |
Victor Morales | 7ae05a4 | 2017-08-22 14:39:00 -0500 | [diff] [blame] | 194 | install_packages python2.7 python-dev |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 195 | } |
| 196 | |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 197 | # _install_pip() - Install Python Package Manager |
| 198 | function _install_pip { |
| 199 | install_python |
Victor Morales | 4ab71c1 | 2017-11-08 07:28:28 -0800 | [diff] [blame] | 200 | if ! which pip; then |
Victor Morales | 158c18c | 2017-08-06 11:23:15 -0500 | [diff] [blame] | 201 | curl -sL https://bootstrap.pypa.io/get-pip.py | python |
| 202 | fi |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 203 | } |
| 204 | |
Victor Morales | 88d193e | 2017-11-16 10:50:28 -0800 | [diff] [blame] | 205 | # install_python_package() - Install python modules |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 206 | function install_python_package { |
Victor Morales | 4ab71c1 | 2017-11-08 07:28:28 -0800 | [diff] [blame] | 207 | local python_packages=$@ |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 208 | |
| 209 | _install_pip |
Victor Morales | 4ab71c1 | 2017-11-08 07:28:28 -0800 | [diff] [blame] | 210 | pip install $python_packages |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 211 | } |
| 212 | |
Victor Morales | 88d193e | 2017-11-16 10:50:28 -0800 | [diff] [blame] | 213 | # install_python_requirements() - Install a list of python modules defined in requirement.txt file |
| 214 | function install_python_requirements { |
| 215 | local python_project_path=$1 |
| 216 | |
| 217 | _install_pip |
| 218 | pushd $python_project_path |
| 219 | pip install -r requirements.txt |
| 220 | popd |
| 221 | } |
| 222 | |
Victor Morales | 970ec19 | 2017-07-31 09:10:11 -0500 | [diff] [blame] | 223 | # install_docker() - Download and install docker-engine |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 224 | function install_docker { |
Victor Morales | fa9eb9c | 2017-12-18 09:56:13 -0800 | [diff] [blame] | 225 | if $(docker version &>/dev/null); then |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 226 | return |
| 227 | fi |
Victor Morales | 9f1c94b | 2017-11-07 07:56:04 -0800 | [diff] [blame] | 228 | source /etc/os-release || source /usr/lib/os-release |
| 229 | case ${ID,,} in |
| 230 | *suse) |
| 231 | ;; |
| 232 | ubuntu|debian) |
Victor Morales | 071b81c | 2017-11-07 14:13:07 -0800 | [diff] [blame] | 233 | install_packages software-properties-common linux-image-extra-$(uname -r) linux-image-extra-virtual apt-transport-https ca-certificates curl |
Victor Morales | 9f1c94b | 2017-11-07 07:56:04 -0800 | [diff] [blame] | 234 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
| 235 | add-apt-repository \ |
| 236 | "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ |
| 237 | $(lsb_release -cs) stable" |
| 238 | ;; |
| 239 | rhel|centos|fedora) |
| 240 | ;; |
| 241 | esac |
Victor Morales | 332d7d8 | 2017-11-06 11:51:37 -0800 | [diff] [blame] | 242 | update_repos |
Victor Morales | 7abf1a8 | 2017-11-06 09:20:27 -0800 | [diff] [blame] | 243 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 244 | install_package docker-ce |
Idan Amit | e17b5ec | 2017-08-16 14:17:59 +0300 | [diff] [blame] | 245 | _configure_docker_settings |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | # pull_docker_image() - Pull Docker container image from the Public Docker Registry Hub |
| 249 | function pull_docker_image { |
| 250 | install_docker |
| 251 | local image=$1 |
| 252 | local tag=$2 |
| 253 | docker pull ${image} |
| 254 | if [ ${tag} ]; then |
| 255 | docker tag ${image} $tag |
| 256 | fi |
| 257 | } |
| 258 | |
Victor Morales | 472a306 | 2018-02-02 08:26:50 -0800 | [diff] [blame] | 259 | # wait_docker_pull() - Function that waits for all docker pull processes |
| 260 | function wait_docker_pull { |
| 261 | local counter=60 |
| 262 | local delay=${1:-60} |
| 263 | |
| 264 | sleep $delay |
| 265 | while [ $(ps -ef | grep "docker pull" | wc -l) -gt 1 ]; do |
| 266 | sleep $delay |
| 267 | counter=$((counter - 1)) |
| 268 | if [ "$counter" -eq 0 ]; then |
| 269 | break |
| 270 | fi |
| 271 | done |
| 272 | } |
| 273 | |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 274 | # run_docker_image() - Starts a Docker instance |
| 275 | function run_docker_image { |
| 276 | install_docker |
| 277 | docker run $@ |
| 278 | } |
| 279 | |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 280 | # install_docker_compose() - Download and install docker-engine |
| 281 | function install_docker_compose { |
| 282 | local docker_compose_version=${1:-1.12.0} |
| 283 | if [ ! -d /opt/docker ]; then |
| 284 | mkdir /opt/docker |
| 285 | curl -L https://github.com/docker/compose/releases/download/$docker_compose_version/docker-compose-`uname -s`-`uname -m` > /opt/docker/docker-compose |
| 286 | chmod +x /opt/docker/docker-compose |
| 287 | fi |
| 288 | } |
| 289 | |
| 290 | # _install_ODL() - Download and Install OpenDayLight SDN controller |
| 291 | function _install_ODL { |
| 292 | if [ ! -d /opt/opendaylight/current ]; then |
| 293 | mkdir -p /opt/opendaylight/ |
| 294 | wget "https://nexus.opendaylight.org/content/repositories/public/org/opendaylight/integration/distribution-karaf/"$odl_version"/distribution-karaf-"$odl_version".tar.gz" -P /opt/ |
Victor Morales | fa9eb9c | 2017-12-18 09:56:13 -0800 | [diff] [blame] | 295 | tar xvf "/opt/distribution-karaf-"$odl_version".tar.gz" -C /tmp/ |
| 296 | mv "/tmp/distribution-karaf-"$odl_version /opt/opendaylight/current |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 297 | rm -rf "/opt/distribution-karaf-"$odl_version".tar.gz" |
| 298 | fi |
| 299 | } |
| 300 | |
| 301 | # start_ODL() - Start OpenDayLight SDN controller |
| 302 | function start_ODL { |
| 303 | _install_ODL |
| 304 | if [ -d /opt/opendaylight ]; then |
| 305 | export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre |
| 306 | /opt/opendaylight/current/bin/start |
| 307 | sleep 180 |
| 308 | /opt/opendaylight/current/bin/client feature:install odl-dlux-all |
| 309 | fi |
| 310 | } |
| 311 | |
| 312 | # compile_src() - Function that compiles the java source code thru maven |
| 313 | function compile_src { |
| 314 | local src_folder=$1 |
| 315 | pushd $src_folder |
Victor Morales | 7abf1a8 | 2017-11-06 09:20:27 -0800 | [diff] [blame] | 316 | local mvn_build='mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none' |
| 317 | if [[ "$debug" == "False" ]]; then |
| 318 | mvn_build+=" -q" |
| 319 | fi |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 320 | if [ -f pom.xml ]; then |
| 321 | install_maven |
Victor Morales | 7abf1a8 | 2017-11-06 09:20:27 -0800 | [diff] [blame] | 322 | echo "Compiling $src_folder folder..." |
| 323 | eval $mvn_build |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 324 | fi |
| 325 | popd |
| 326 | } |
| 327 | |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 328 | # compile_repos() - Function that compiles source repositories for a given project |
| 329 | function compile_repos { |
| 330 | local project=$1 |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 331 | |
Victor Morales | 5464664 | 2017-12-08 11:57:42 -0800 | [diff] [blame] | 332 | for repo in ${repos[$project]}; do |
| 333 | compile_src ${src_folders[$project]}${repo#*$project} |
Victor Morales | f1f1ba5 | 2017-11-20 16:38:28 -0800 | [diff] [blame] | 334 | done |
| 335 | } |
| 336 | |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 337 | # build_docker_image() - Build Docker container image from source code |
| 338 | function build_docker_image { |
| 339 | local src_folder=$1 |
| 340 | local profile=$2 |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 341 | install_docker |
| 342 | pushd $src_folder |
| 343 | |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 344 | if [ -f pom.xml ]; then |
| 345 | install_maven |
| 346 | # Cleanup external repo |
| 347 | sed -i 's|${docker.push.registry}/||g' pom.xml |
Victor Morales | be84471 | 2018-01-22 10:07:28 -0800 | [diff] [blame] | 348 | local docker_build="mvn clean package docker:build -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true" |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 349 | if [ $profile ]; then |
| 350 | docker_build+=" -P $profile" |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 351 | fi |
Victor Morales | 472a306 | 2018-02-02 08:26:50 -0800 | [diff] [blame] | 352 | if [[ "$debug" == "False" ]]; then |
| 353 | docker_build+=" -q" |
| 354 | fi |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 355 | if [ $http_proxy ]; then |
| 356 | if ! grep -ql "docker.buildArg.http_proxy" pom.xml ; then |
| 357 | docker_build+=" -Ddocker.buildArg.http_proxy=$http_proxy" |
| 358 | fi |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 359 | if ! grep -ql "docker.buildArg.HTTP_PROXY" pom.xml ; then |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 360 | docker_build+=" -Ddocker.buildArg.HTTP_PROXY=$http_proxy" |
| 361 | fi |
| 362 | fi |
| 363 | if [ $https_proxy ]; then |
| 364 | if ! grep -ql "docker.buildArg.https_proxy" pom.xml ; then |
| 365 | docker_build+=" -Ddocker.buildArg.https_proxy=$https_proxy" |
| 366 | fi |
| 367 | if ! grep -ql "docker.buildArg.HTTPS_PROXY" pom.xml ; then |
| 368 | docker_build+=" -Ddocker.buildArg.HTTPS_PROXY=$https_proxy" |
| 369 | fi |
| 370 | fi |
| 371 | elif [ -f Dockerfile ]; then |
| 372 | # NOTE: Workaround for dmmapbc images |
| 373 | sed -i '/LocalKey/d' Dockerfile |
| 374 | sed -i "s/nexus3.onap.org\:10003\///g" Dockerfile |
| 375 | local docker_build="docker build -t $profile -f ./Dockerfile ." |
| 376 | if [ $http_proxy ]; then |
| 377 | docker_build+=" --build-arg http_proxy=$http_proxy" |
| 378 | docker_build+=" --build-arg HTTP_PROXY=$http_proxy" |
| 379 | fi |
| 380 | if [ $https_proxy ]; then |
| 381 | docker_build+=" --build-arg https_proxy=$https_proxy" |
| 382 | docker_build+=" --build-arg HTTPS_PROXY=$https_proxy" |
Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 383 | fi |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 384 | fi |
Victor Morales | 9d205bc | 2017-12-01 17:52:07 -0800 | [diff] [blame] | 385 | echo $docker_build |
| 386 | eval $docker_build |
Victor Morales | 89ce321 | 2017-06-16 18:32:48 -0500 | [diff] [blame] | 387 | popd |
| 388 | } |
Victor Morales | fa9eb9c | 2017-12-18 09:56:13 -0800 | [diff] [blame] | 389 | |
| 390 | # mount_external_partition() - Create partition and mount the external volume |
| 391 | function mount_external_partition { |
| 392 | local dev_name="/dev/$1" |
| 393 | local mount_dir=$2 |
| 394 | |
| 395 | sfdisk $dev_name << EOF |
| 396 | ; |
| 397 | EOF |
| 398 | mkfs -t ext4 ${dev_name}1 |
| 399 | mkdir -p $mount_dir |
| 400 | mount ${dev_name}1 $mount_dir |
| 401 | echo "${dev_name}1 $mount_dir ext4 errors=remount-ro,noatime,barrier=0 0 1" >> /etc/fstab |
| 402 | } |
Nate Potter | fdf88f3 | 2018-01-17 09:29:35 -0800 | [diff] [blame] | 403 | |
| 404 | # add no_proxy values to environment, used for internal IPs generated at deploy time |
| 405 | function add_no_proxy_value { |
| 406 | if [[ `grep "no_proxy" /etc/environment` ]]; then |
| 407 | sed -i.bak "s/^no_proxy.*$/&,$1/" /etc/environment |
| 408 | else |
| 409 | echo "no_proxy=$1" >> /etc/environment |
| 410 | fi |
| 411 | if [[ `grep "NO_PROXY" /etc/environment` ]]; then |
| 412 | sed -i.bak "s/^NO_PROXY.*$/&,$1/" /etc/environment |
| 413 | else |
| 414 | echo "NO_PROXY=$1" >> /etc/environment |
| 415 | fi |
| 416 | } |