Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 1 | #!/bin/bash -x |
| 2 | # Copyright 2018 Huawei Technologies Co., Ltd. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | export DEBIAN_FRONTEND=noninteractive |
| 11 | echo "__host_private_ip_addr__ $(hostname)" >> /etc/hosts |
| 12 | printenv |
| 13 | |
| 14 | mkdir -p /opt/config |
| 15 | echo "__docker_version__" > /opt/config/docker_version.txt |
Gary Wu | d95bf2b | 2019-06-21 15:35:18 -0700 | [diff] [blame] | 16 | echo "__nfs_ip_addr__" > /opt/config/nfs_ip_addr.txt |
| 17 | echo "__nfs_private_ip_addr__" > /opt/config/nfs_private_ip_addr.txt |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 18 | echo "__host_private_ip_addr__" > /opt/config/host_private_ip_addr.txt |
| 19 | echo "__mtu__" > /opt/config/mtu.txt |
| 20 | |
| 21 | mkdir -p /etc/docker |
| 22 | if [ ! -z "__docker_proxy__" ]; then |
| 23 | cat > /etc/docker/daemon.json <<EOF |
| 24 | { |
| 25 | "mtu": __mtu__, |
| 26 | "insecure-registries" : ["__docker_proxy__"] |
| 27 | } |
| 28 | EOF |
| 29 | else |
| 30 | cat > /etc/docker/daemon.json <<EOF |
| 31 | { |
| 32 | "mtu": __mtu__ |
| 33 | } |
| 34 | EOF |
| 35 | fi |
| 36 | if [ ! -z "__apt_proxy__" ]; then |
| 37 | cat > /etc/apt/apt.conf.d/30proxy <<EOF |
| 38 | Acquire::http { Proxy "http://__apt_proxy__"; }; |
| 39 | Acquire::https::Proxy "DIRECT"; |
| 40 | EOF |
| 41 | fi |
| 42 | |
| 43 | |
| 44 | mkdir -p /dockerdata-nfs |
Gary Wu | d95bf2b | 2019-06-21 15:35:18 -0700 | [diff] [blame] | 45 | echo "__nfs_private_ip_addr__:/dockerdata-nfs /dockerdata-nfs nfs noauto,noatime,fg,retry=1,x-systemd.automount,_netdev,soft,nolock,intr,tcp,actimeo=1800 0 0" | tee -a /etc/fstab |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 46 | |
| 47 | # workaround for OpenStack intermittent failure to change default apt mirrors |
| 48 | sed -i 's|http://archive.ubuntu.com|http://nova.clouds.archive.ubuntu.com|g' /etc/apt/sources.list |
| 49 | |
| 50 | while ! hash jq &> /dev/null; do |
| 51 | apt-get -y update |
| 52 | # apt-get -y dist-upgrade |
Gary Wu | 7ff8c6f | 2019-04-24 07:50:11 -0700 | [diff] [blame] | 53 | apt-get -y install curl jq nfs-common |
| 54 | sleep 10 |
| 55 | done |
| 56 | |
| 57 | # install docker |
| 58 | while ! hash docker &> /dev/null; do |
| 59 | curl https://releases.rancher.com/install-docker/__docker_version__.sh | sh |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 60 | systemctl enable docker |
| 61 | usermod -aG docker ubuntu |
| 62 | sleep 10 |
| 63 | done |
| 64 | |
| 65 | # Enable autorestart when VM reboots |
| 66 | update-rc.d k8s_vm_init_serv defaults |