blob: 5784a17ed0101f483ea9a8f5a493747597bc4f14 (
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
281
282
283
284
|
#!/bin/bash
##############################################################################
# Copyright (c) 2016 ZTE Coreporation and others.
# hu.zhijiang@zte.com.cn
# lu.yao135@zte.com.cn
# 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
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
KOLLA_GIT="https://github.com/huzhijiang/kolla.git"
KOLLA_BRANCH="stable/ocata"
KOLLA_TAG=
EXT_TAG=
KOLLA_GIT_VERSION=
KOLLA_IMAGE_VERSION=
KOLLA_GIT_DIR=/tmp/kolla-git
REGISTRY_VOLUME_DIR=/tmp/registry
BUILD_OUTPUT_DIR=/tmp/kolla-build-output
REGISTRY_SERVER_NAME=daisy-registry
function usage
{
cat << EOF
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
`basename $0`: Build Daisy4NFV's Kolla image package
usage: `basename $0` [options]
OPTIONS:
-l Kolla git repo location
-b Kolla git repo branch
-t Kolla git repo code tag(base version of image)
-e user defined tag extension(extended version)
Examples:
sudo `basename $0` -l https://git.openstack.org/openstack/kolla
-b stable/ocata
-t 4.0.2
-e 1
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
EOF
}
while getopts "l:b:t:e:h" OPTION
do
case $OPTION in
l)
KOLLA_GIT=${OPTARG}
;;
b)
KOLLA_BRANCH=${OPTARG}
;;
t)
KOLLA_TAG=${OPTARG}
;;
e)
EXT_TAG=${OPTARG}
;;
h)
usage
exit 0
;;
*)
echo "${OPTION} is not a valid argument"
usage
exit 1
;;
esac
done
function pre_check {
echo "Pre setup"
if [ $KOLLA_BRANCH == "stable/mitaka" ] ; then
RPM_REQUIRES="python-docker-py:1.6 python-pbr:1.6 python-jinja2:2.8 \
python-gitdb:0.6.4 GitPython:1.0.1 python-six:1.9.0 \
python2-oslo-config:3.7.0 python-beautifulsoup4:4.4.1 \
python2-setuptools:16.0.0 python2-crypto:2.6 docker-engine:1.12"
elif [ $KOLLA_BRANCH == "stable/newton" ] ; then
RPM_REQUIRES="python-docker-py:1.6 python-pbr:1.6 python-jinja2:2.8 \
python-gitdb:0.6.4 GitPython:1.0.1 python-six:1.9.0 \
python2-oslo-config:3.14.0 python-netaddr:0.7.13 \
python2-setuptools:16.0.0 python2-crypto:2.6 docker-engine:1.12 \
centos-release-openstack-newton:1 epel-release:7"
elif [ $KOLLA_BRANCH == "stable/ocata" ] ; then
RPM_REQUIRES="python-docker-py:1.10 python2-pbr:1.10 python-jinja2:2.8 \
python-gitdb:0.6.4 GitPython:1.0.1 python-six:1.10.0 \
python2-oslo-config:3.22.0 python-netaddr:0.7.18 \
python2-setuptools:22.0.0 python2-crypto:2.6 docker-engine:1.12 \
centos-release-openstack-ocata:1 epel-release:7"
else
exit 1
fi
for package_version in $RPM_REQUIRES
do
package=`echo $package_version | awk -F: '{print $1}'`
expversion=`echo $package_version | awk -F: '{print $2}'`
echo "Step:1 Check if $package existed"
rpm -q $package &> /dev/null
if [ "$?" != "0" ] ; then
echo "$package not installed"
exit 1
fi
echo "Step:2 Check if $package version meets the requirement"
realversion=$(rpm -q --queryformat '%{VERSION}' $package)
smallestversion=`printf "$realversion\n$expversion\n" | sort -V | head -1`
if [ "$smallestversion" != "$expversion" ] ; then
echo "$package version $realversion DOES NOT meet the \
requirement version $expversion"
exit 1
fi
done
# Some packages must be installed by pip.
# TODO: Check version of packages installed by pip just like what we do for RPM above.
rpm -e tox || true
rpm -e python-virtualenv || true
rpm -e python-py || true
pip install tox
# Just make sure docker is working.
service docker restart
}
function cleanup_registry_server {
echo "Cleaning registry server"
containers_to_kill=$(sudo docker ps --filter "name=$REGISTRY_SERVER_NAME" \
--format "{{.Names}}" -a)
if [[ ! -z "$containers_to_kill" ]]; then
volumes_to_remove=$(sudo docker inspect -f \
'{{range .Mounts}} {{printf "%s\n" .Name }}{{end}}' \
${containers_to_kill} | egrep -v '(^\s*$)' | sort | uniq)
echo "Stopping containers... $containers_to_kill"
(sudo docker stop -t 2 ${containers_to_kill} 2>&1) > /dev/null
echo "Removing containers... $containers_to_kill"
(sudo docker rm -v -f ${containers_to_kill} 2>&1) > /dev/null
if [[ ! -z "$volumes_to_remove" ]]; then
echo "Removing volumes... $volumes_to_remove"
(sudo docker volume rm ${volumes_to_remove} 2>&1) || true > /dev/null
fi
fi
}
function cleanup_registry_data {
echo "Cleaning registry data dir"
rm -rf $REGISTRY_VOLUME_DIR
mkdir -p $REGISTRY_VOLUME_DIR
}
function cleanup_kolla_image {
echo "Cleaning Kolla images"
if [ -d $KOLLA_GIT_DIR/kolla ] ; then
pushd $KOLLA_GIT_DIR/kolla
(./tools/cleanup-images 2>&1) || true > /dev/null;
popd
fi
}
function start_registry_server {
echo "Starting registry server"
sudo docker run -d -p 5000:5000 --restart=always \
-e REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY=/tmp/registry \
-v $REGISTRY_VOLUME_DIR:/tmp/registry \
--name $REGISTRY_SERVER_NAME registry:2
}
function pack_registry_data {
echo "Packaging registry data"
datetag=$(date +%y%m%d%H%M%S)
#TODO: not compatible with "master" branch
version=$(echo $KOLLA_BRANCH | awk -F'/' '{print $2}')
if [ ! -d $BUILD_OUTPUT_DIR ] ; then
mkdir -p $BUILD_OUTPUT_DIR
fi
pushd $BUILD_OUTPUT_DIR
echo $KOLLA_GIT_VERSION > registry-$version-$datetag.version
echo "branch = $KOLLA_BRANCH" >> registry-$version-$datetag.version
echo "tag = $KOLLA_IMAGE_VERSION" >> registry-$version-$datetag.version
echo "date = $datetag" >> registry-$version-$datetag.version
tar czf kolla-image-$version-$datetag.tgz $REGISTRY_VOLUME_DIR \
registry-$version-$datetag.version
rm -rf registry-$version-$datetag.version
popd
}
function update_kolla_code {
echo "Updating Kolla code"
rm -rf $KOLLA_GIT_DIR
mkdir -p $KOLLA_GIT_DIR
pushd $KOLLA_GIT_DIR
git clone $KOLLA_GIT
pushd $KOLLA_GIT_DIR/kolla
git checkout $KOLLA_BRANCH
if [[ ! -z "$KOLLA_TAG" ]]; then
git checkout $KOLLA_TAG
fi
KOLLA_GIT_VERSION=$(git log -1 --pretty="%H")
tox -e genconfig
KOLLA_IMAGE_VERSION=$(cat $KOLLA_GIT_DIR/kolla/etc/kolla/kolla-build.conf \
| grep "#tag" | gawk -F' = ' '{print $2}')
if [[ ! -z "$KOLLA_TAG" ]]; then
if ["$KOLLA_TAG" != $KOLLA_IMAGE_VERSION] ; then
echo "tag in git: $KOLLA_TAG, while tag in code: $KOLLA_IMAGE_VERSION"
exit 1
fi
fi
popd
popd
}
function config_kolla {
rm -rf /etc/kolla/kolla-build.conf
KOLLA_IMAGE_VERSION="${KOLLA_IMAGE_VERSION}.${EXT_TAG}"
}
function start_build {
echo "Start to build Kolla image"
REGISTRY_PARAM="--registry 127.0.0.1:5000 --push --tag $KOLLA_IMAGE_VERSION"
pushd $KOLLA_GIT_DIR/kolla
# Some of the images may be failed to built out but is OK
# so we use "|| true" here.
# TODO: We can impl. some checks to see if the images that
# we really care are built successfully.
tools/build.py $REGISTRY_PARAM || true;
popd
}
exitcode=""
error_trap()
{
local rc=$?
set +e
if [ -z "$exitcode" ]; then
exitcode=$rc
fi
echo "Image build failed with $exitcode"
exit $exitcode
}
trap "error_trap" EXIT SIGTERM
pre_check
# Try to cleanup images of the last failed run, if any.
cleanup_kolla_image
update_kolla_code
config_kolla
cleanup_kolla_image
# Make sure there is no garbage in the registry server.
cleanup_registry_server
cleanup_registry_data
start_registry_server
start_build
cleanup_kolla_image
pack_registry_data
# TODO: Upload to OPNFV artifacts repo.
|