summaryrefslogtreecommitdiffstats
path: root/deploy
diff options
context:
space:
mode:
authorZhijiang Hu <hu.zhijiang@zte.com.cn>2017-07-14 22:52:40 -0400
committerZhijiang Hu <hu.zhijiang@zte.com.cn>2017-07-18 04:19:35 -0400
commit31f3c22980904fbdbe01c85be1c7d9d5f06b8c7f (patch)
treeb0f371662b51eb1844f980a0c09433abe9bf356d /deploy
parent6ea756e7cad324e70fd9546b15a268e910127d46 (diff)
md5sum check for cirros image
Change-Id: I874c40eb5da54c38ce8aa2d1fb1840a8aee22b4c Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
Diffstat (limited to 'deploy')
-rwxr-xr-xdeploy/post.sh4
-rw-r--r--deploy/post/execute.py44
2 files changed, 35 insertions, 13 deletions
diff --git a/deploy/post.sh b/deploy/post.sh
index e6f39513..3077e007 100755
--- a/deploy/post.sh
+++ b/deploy/post.sh
@@ -46,6 +46,10 @@ do
done
python $PYTHONPATH/deploy/post/execute.py -nw $NETWORK
+if [ ! $? -eq 0 ]; then
+ exit 1
+fi
+
source /etc/kolla/admin-openrc.sh
openstack security group rule create --proto icmp default
openstack security group rule create --proto tcp --dst-port 22 default
diff --git a/deploy/post/execute.py b/deploy/post/execute.py
index f64b9af6..94bec65e 100644
--- a/deploy/post/execute.py
+++ b/deploy/post/execute.py
@@ -14,6 +14,7 @@ import yaml
import neutron
import nova
from deploy.config.network import NetworkConfig
+from deploy.utils import err_exit
def _config_kolla_admin_openrc(kolla_config_path):
@@ -82,21 +83,36 @@ def _create_flavor_m1_micro():
def _prepare_cirros():
- url = 'http://download.cirros-cloud.net'
+ url = 'https://download.cirros-cloud.net'
version = '0.3.5'
name = 'cirros-{}-x86_64-disk.img'.format(version)
- img = os.path.join("/var/lib/daisy/images", name)
+ imgpath = "/var/lib/daisy/images"
+ img = os.path.join(imgpath, name)
+ imgmd5 = os.path.join(imgpath, "cirros.md5")
+
if not os.path.isfile(img):
- cmd = "wget %(url)s/%(version)s/%(name)s -O %(path)s" % {
+ cmd = "curl -sSL %(url)s/%(version)s/%(name)s -o %(path)s" % {
'url': url,
'version': version,
'name': name,
'path': img}
- try:
- print ('Downloading cirros: {}'.format(cmd))
- os.system(cmd)
- except Exception as error:
- print ('Download cirros failed: {}'.format(str(error)))
+ print ('Downloading cirros: {}'.format(cmd))
+ os.system(cmd)
+
+ cmd = "curl -sSL %(url)s/%(version)s/MD5SUMS -o %(md5path)s" % {
+ 'url': url,
+ 'version': version,
+ 'md5path': imgmd5}
+ print ('Downloading MD5SUM for cirros: {}'.format(cmd))
+ os.system(cmd)
+
+ cmd = "cd %(path)s && cat %(md5path)s | grep %(name)s | md5sum -c" % {
+ 'path': imgpath,
+ 'md5path': imgmd5,
+ 'name': name}
+ print ('md5sum check cirros: {}'.format(cmd))
+ ret = os.system(cmd)
+ if ret != 0:
img = None
return img
@@ -106,12 +122,14 @@ def _create_image_TestVM():
glanceclient = glance.Glance()
image = 'TestVM'
if not glanceclient.get_by_name(image):
- img = _prepare_cirros()
- if img:
- try:
+ try:
+ img = _prepare_cirros()
+ if img:
glanceclient.create(image, img)
- except Exception as error:
- print ('Create image failed: {}'.format(str(error)))
+ else:
+ err_exit("Test image preparation failed")
+ except Exception as error:
+ err_exit('Create image failed: {}'.format(str(error)))
else:
print ('Use existing TestVM image')