blob: 0927347c03c44f3d8743bcafc654a4b2024cba15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
#!/bin/bash
##############################################################################
# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
function print_logo()
{
figlet -ctf slant Compass Installer
set +x; sleep 2; set -x
}
function install_docker()
{
sudo apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual
sudo apt-get install -y apt-transport-https ca-certificates curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo service docker start
sudo service docker restart
}
function extract_tar()
{
tar_name=`basename $TAR_URL`
rm -f $WORK_DIR/cache/$tar_name
curl --connect-timeout 10 -o $WORK_DIR/cache/$tar_name $TAR_URL
tar -zxf $WORK_DIR/cache/$tar_name -C $WORK_DIR/installer
}
function prepare_env() {
sudo sed -i -e 's/^#user =.*/user = "root"/g' /etc/libvirt/qemu.conf
sudo sed -i -e 's/^#group =.*/group = "root"/g' /etc/libvirt/qemu.conf
sudo service libvirt-bin restart
if sudo service openvswitch-switch status|grep stop; then
sudo service openvswitch-switch start
fi
# prepare work dir
sudo rm -rf $WORK_DIR/{installer,vm,network,iso,docker}
mkdir -p $WORK_DIR/installer
mkdir -p $WORK_DIR/vm
mkdir -p $WORK_DIR/network
mkdir -p $WORK_DIR/iso
mkdir -p $WORK_DIR/cache
mkdir -p $WORK_DIR/docker
extract_tar
chmod 755 $WORK_DIR -R
if [[ ! -d /etc/libvirt/hooks ]]; then
sudo mkdir -p /etc/libvirt/hooks
fi
sudo cp ${COMPASS_DIR}/deploy/qemu_hook.sh /etc/libvirt/hooks/qemu
}
function _prepare_python_env() {
rm -rf $WORK_DIR/venv
mkdir -p $WORK_DIR/venv
if [[ "$DEPLOY_FIRST_TIME" == "true" ]]; then
if [[ ! -z "$JHPKG_URL" ]]; then
_pre_env_setup
else
if [[ ! -f /etc/redhat-release ]]; then
sudo apt-get update -y
sudo apt-get install -y --force-yes mkisofs bc curl ipmitool openvswitch-switch
sudo apt-get install -y --force-yes git python-dev python-pip figlet sshpass
sudo apt-get install -y --force-yes libxslt-dev libxml2-dev libvirt-dev build-essential qemu-utils qemu-kvm libvirt-bin virtinst libmysqld-dev
sudo apt-get install -y --force-yes libffi-dev libssl-dev
else
sudo yum install -y centos-release-openstack-ocata
sudo yum install -y epel-release
sudo yum install openvswitch -y --nogpgcheck
sudo yum install -y git python-devel python-pip figlet sshpass mkisofs bc curl ipmitool
sudo yum install -y libxslt-devel libxml2-devel libvirt-devel libmysqld-devel
sudo yum install -y qemu-kvm qemu-img virt-manager libvirt libvirt-python libvirt-client virt-install virt-viewer
sudo yum install -y libffi libffi-devel openssl-devel
sudo yum groupinstall -y 'Development Tools'
fi
sudo docker version >/dev/null 2>&1
if [[ $? -ne 0 ]]; then
install_docker
fi
fi
fi
if [[ ! -z "$JHPKG_URL" ]]; then
_pre_pip_setup
else
sudo pip install --upgrade virtualenv
virtualenv $WORK_DIR/venv
source $WORK_DIR/venv/bin/activate
pip install cffi==1.10.0
pip install MarkupSafe==1.0
pip install pip==9.0.1
pip install cheetah==2.4.4
pip install pyyaml==3.12
pip install requests==2.18.1
pip install netaddr==0.7.19
pip install oslo.config==4.6.0
pip install ansible==2.3.1.0
# For sudo use
sudo pip install docker-compose==1.14.0
fi
}
function _pre_env_setup()
{
rm -rf $WORK_DIR/prepare
mkdir -p $WORK_DIR/prepare
jhpkg_url=${JHPKG_URL:7}
echo $jhpkg_url
if [[ ! -f "$jhpkg_url" ]]; then
echo "There is no jh_env_package."
exit 1
fi
tar -zxvf $jhpkg_url -C $WORK_DIR/prepare/
cd $WORK_DIR/prepare/jh_env_package
tar -zxvf trusty-jh-ppa.tar.gz
if [[ ! -z /etc/apt/sources.list.d ]]; then
mv /etc/apt/sources.list.d /etc/apt/sources.list.d.bak
fi
if [[ -f /etc/apt/apt.conf ]]; then
mv /etc/apt/apt.conf /etc/apt/apt.conf.bak
fi
cat << EOF > /etc/apt/apt.conf
APT::Get::Assume-Yes "true";
APT::Get::force-yes "true";
Acquire::http::Proxy::127.0.0.1:9998 DIRECT;
EOF
if [[ -f /etc/apt/sources.list ]]; then
mv /etc/apt/sources.list /etc/apt/sources.list.bak
fi
cat << EOF > /etc/apt/sources.list
deb [arch=amd64] http://127.0.0.1:9998/trusty-jh-ppa trusty main
EOF
nohup python -m SimpleHTTPServer 9998 &
cd -
sleep 5
apt-get update
apt-get install -y mkisofs bc curl ipmitool openvswitch-switch \
git python-pip python-dev figlet \
libxslt-dev libxml2-dev libvirt-dev \
build-essential qemu-utils qemu-kvm libvirt-bin \
virtinst libmysqld-dev \
libssl-dev libffi-dev python-cffi
sudo docker version >/dev/null 2>&1
if [[ $? -ne 0 ]]; then
install_docker
fi
pid=$(ps -ef | grep SimpleHTTPServer | grep 9998 | awk '{print $2}')
echo $pid
kill -9 $pid
if [[ ! -d /etc/libvirt/hooks ]]; then
sudo mkdir -p /etc/libvirt/hooks
fi
sudo cp -f ${COMPASS_DIR}/deploy/qemu_hook.sh /etc/libvirt/hooks/qemu
rm -rf /etc/apt/sources.list
if [[ -f /etc/apt/sources.list.bak ]]; then
mv /etc/apt/sources.list.bak /etc/apt/sources.list
fi
rm -rf /etc/apt/apt.conf
if [[ -f /etc/apt/apt.conf.bak ]]; then
mv /etc/apt/apt.conf.bak /etc/apt/apt.conf
fi
if [[ ! -z /etc/apt/sources.list.d.bak ]]; then
mv /etc/apt/sources.list.d.bak /etc/apt/sources.list.d
fi
}
function _pre_pip_setup()
{
if [[ -d ~/.pip ]]; then
if [[ -f ~/.pip/pip.conf ]]; then
mv ~/.pip/pip.conf ~/.pip/pip.conf.bak
fi
else
mkdir -p ~/.pip
fi
# rm -rf ~/.pip
# mkdir -p ~/.pip
rm -rf $WORK_DIR/prepare
mkdir -p $WORK_DIR/prepare
jhpkg_url=${JHPKG_URL:7}
echo $jhpkg_url
if [[ ! -f "$jhpkg_url" ]]; then
echo "There is no jh_env_package."
exit 1
fi
tar -zxvf $jhpkg_url -C $WORK_DIR/prepare/
cd $WORK_DIR/prepare/jh_env_package
tar -zxvf env_trusty_pip.tar.gz
cat << EOF > ~/.pip/pip.conf
[global]
find-links = http://127.0.0.1:9999/jh_pip
no-index = true
[install]
trusted-host=127.0.0.1
EOF
nohup python -m SimpleHTTPServer 9999 &
sleep 5
cd -
pip install --upgrade virtualenv
virtualenv $WORK_DIR/venv
source $WORK_DIR/venv/bin/activate
#pip install --upgrade cffi
PIP="cffi MarkupSafe pip cheetah pyyaml requests netaddr oslo.config ansible"
#PIP="paramiko jinja2 PyYAML setuptools pycrypto pyasn1 cryptography MarkupSafe idna six enum34 ipaddress pycparser virtualenv cheetah requests netaddr pbr oslo.config ansible"
for i in ${PIP}; do
pip install --upgrade $i
done
pid=$(ps -ef | grep SimpleHTTPServer | grep 9999 | awk '{print $2}')
echo $pid
kill -9 $pid
if [[ -f ~/.pip/pip.conf.bak ]]; then
mv ~/.pip/pip.conf.bak ~/.pip/pip.conf
else
rm -rf ~/.pip/pip.conf
fi
# rm -rf ~/.pip/pip.conf
}
function prepare_python_env()
{
if [[ "$DEPLOY_FIRST_TIME" == "true" ]]; then
_prepare_python_env
else
source $WORK_DIR/venv/bin/activate
if [[ $? -ne 0 ]]; then
_prepare_python_env
fi
fi
which python
}
|