Merge "switch drools pdp image to new one"
[integration.git] / deployment / heat / onap-rke / k8s_vm_install.sh
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
16 echo "__rancher_ip_addr__" > /opt/config/rancher_ip_addr.txt
17 echo "__rancher_private_ip_addr__" > /opt/config/rancher_private_ip_addr.txt
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
45 echo "__rancher_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
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
53     apt-get -y install curl jq nfs-common docker.io
54     systemctl enable docker
55     usermod -aG docker ubuntu
56     sleep 10
57 done
58
59 # Enable autorestart when VM reboots
60 update-rc.d k8s_vm_init_serv defaults