98f20e82be9b809dad3e53a0875bbbe41ede0c04
[apex.git] / build / undercloud.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -xe
11 source ./cache.sh
12 source ./variables.sh
13
14 populate_cache "$rdo_images_uri/undercloud.qcow2"
15 if [ ! -d "$BUILD_DIR" ]; then mkdir ${BUILD_DIR}; fi
16 cp -f ${CACHE_DIR}/undercloud.qcow2 ${BUILD_DIR}/undercloud_build.qcow2
17
18 pushd ${BUILD_DIR} > /dev/null
19
20 # prep apex-tht for undercloud
21 python3 -B $BUILD_UTILS clone-fork -r apex-tripleo-heat-templates
22 pushd apex-tripleo-heat-templates > /dev/null
23 git archive --format=tar.gz --prefix=openstack-tripleo-heat-templates/ HEAD > ${BUILD_DIR}/apex-tripleo-heat-templates.tar.gz
24 popd > /dev/null
25
26 # inject rt_kvm kernel rpm name into the enable file
27 sed "s/kvmfornfv_kernel.rpm/$kvmfornfv_kernel_rpm/" ${BUILD_ROOT}/enable_rt_kvm.yaml | tee ${BUILD_DIR}/enable_rt_kvm.yaml
28
29 # grab latest calipso
30 populate_cache $calipso_uri_base/$calipso_script
31
32 # Turn off GSSAPI Auth in sshd
33 # installing forked apex-tht
34 # enabling ceph OSDs to live on the controller
35 # seeding configuration files specific to OPNFV
36 # Add performance image scripts
37 LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE \
38     --run-command "sed -i 's/^#UseDNS.*$/UseDNS no/' /etc/ssh/sshd_config" \
39     --run-command "sed -i 's/^GSSAPIAuthentication.*$/GSSAPIAuthentication no/' /etc/ssh/sshd_config" \
40     --upload ${BUILD_DIR}/apex-tripleo-heat-templates.tar.gz:/usr/share \
41     --install "openstack-utils" \
42     --install "ceph-common" \
43     --install "http://mirror.centos.org/centos/7/cloud/x86_64/openstack-ocata/python2-networking-sfc-4.0.0-1.el7.noarch.rpm" \
44     --install epel-release \
45     --install python34,python34-pip \
46     --install openstack-ironic-inspector,subunit-filters,docker-distribution,openstack-tripleo-validations \
47     --run-command "cd /usr/share && rm -rf openstack-tripleo-heat-templates && tar xzf apex-tripleo-heat-templates.tar.gz" \
48     --run-command "sed -i '/ControllerEnableCephStorage/c\\  ControllerEnableCephStorage: true' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml" \
49     --run-command "sed -i '/ComputeEnableCephStorage/c\\  ComputeEnableCephStorage: true' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml" \
50     --run-command "cp /usr/share/instack-undercloud/undercloud.conf.sample /home/stack/undercloud.conf && chown stack:stack /home/stack/undercloud.conf" \
51     --upload ${BUILD_ROOT}/opnfv-environment.yaml:/home/stack/ \
52     --upload ${BUILD_ROOT}/first-boot.yaml:/home/stack/ \
53     --upload ${BUILD_DIR}/enable_rt_kvm.yaml:/usr/share/openstack-tripleo-heat-templates/environments/ \
54     --upload ${BUILD_ROOT}/ovs-dpdk-preconfig.yaml:/home/stack/ \
55     --upload ${BUILD_ROOT}/csit-environment.yaml:/home/stack/ \
56     --upload ${BUILD_ROOT}/virtual-environment.yaml:/home/stack/ \
57     --upload ${BUILD_ROOT}/baremetal-environment.yaml:/home/stack/ \
58     --uninstall "libvirt-client" \
59     --upload ${CACHE_DIR}/${calipso_script}:/root/ \
60     --install "libguestfs-tools" \
61     --install "python-tackerclient" \
62     --upload ${BUILD_ROOT}/patches/tacker-client-fix-symmetrical.patch:/usr/lib/python2.7/site-packages/ \
63     --run-command "cd usr/lib/python2.7/site-packages/ && patch -p1 < tacker-client-fix-symmetrical.patch" \
64     --run-command "yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo" \
65     --install yum-utils,lvm2,device-mapper-persistent-data \
66     -a undercloud_build.qcow2
67
68 mv -f undercloud_build.qcow2 undercloud.qcow2
69 popd > /dev/null