Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 1 | #!/bin/bash -x |
Gary Wu | a3fb86f | 2018-06-04 16:23:54 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright 2018 Huawei Technologies Co., Ltd. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 12 | printenv |
| 13 | |
| 14 | mkdir -p /opt/config |
| 15 | echo "__rancher_ip_addr__" > /opt/config/rancher_ip_addr.txt |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 16 | HOST_IP=$(hostname -I) |
| 17 | echo $HOST_IP `hostname` >> /etc/hosts |
| 18 | |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 19 | mkdir -p /etc/docker |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 20 | if [ ! -z "__docker_proxy__" ]; then |
| 21 | cat > /etc/docker/daemon.json <<EOF |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 22 | { |
| 23 | "insecure-registries" : ["__docker_proxy__"] |
| 24 | } |
| 25 | EOF |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 26 | fi |
| 27 | if [ ! -z "__apt_proxy__" ]; then |
| 28 | cat > /etc/apt/apt.conf.d/30proxy<<EOF |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 29 | Acquire::http { Proxy "http://__apt_proxy__"; }; |
| 30 | Acquire::https::Proxy "DIRECT"; |
| 31 | EOF |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 32 | fi |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 33 | apt-get -y update |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 34 | |
| 35 | mkdir -p /dockerdata-nfs |
| 36 | echo "__rancher_ip_addr__:/dockerdata-nfs /dockerdata-nfs nfs auto,nofail,noatime,nolock,intr,tcp,actimeo=1800 0 0" | tee -a /etc/fstab |
| 37 | |
| 38 | apt-get -y install linux-image-extra-$(uname -r) jq nfs-common |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 39 | |
| 40 | cd ~ |
| 41 | |
Gary Wu | 57abb1a | 2018-03-09 13:38:28 -0800 | [diff] [blame] | 42 | # install docker 17.03 |
| 43 | curl -s https://releases.rancher.com/install-docker/17.03.sh | sh |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 44 | usermod -aG docker ubuntu |
| 45 | |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 46 | # Fix virtual memory allocation for onap-log:elasticsearch: |
| 47 | echo "vm.max_map_count=262144" >> /etc/sysctl.conf |
| 48 | sysctl -p |
| 49 | |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 50 | sleep 100 |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 51 | |
| 52 | while [ ! -e /dockerdata-nfs/rancher_agent_cmd.sh ]; do |
| 53 | mount /dockerdata-nfs |
| 54 | sleep 5 |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 55 | done |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 56 | cp /dockerdata-nfs/rancher_agent_cmd.sh . |
| 57 | sed -i "s/docker run/docker run -e CATTLE_AGENT_IP=${HOST_IP}/g" rancher_agent_cmd.sh |
| 58 | source rancher_agent_cmd.sh |