6 APEX_PKGS="common undercloud opendaylight-sfc onos"
10 echo "Starting the Apex virtual deployment."
11 echo "--------------------------------------------------------"
14 if ! rpm -q wget > /dev/null; then
15 sudo yum -y install wget
18 if [[ $BUILD_DIRECTORY == *verify* ]]; then
19 # Build is from a verify, use local build artifacts (not RPMs)
20 cd $WORKSPACE/../${BUILD_DIRECTORY}
22 echo "WORKSPACE modified to $WORKSPACE"
24 elif [[ ! "$ARTIFACT_NAME" == "latest" ]]; then
25 # if artifact name is passed the pull a
26 # specific artifact from artifacts.opnfv.org
27 # artifact specified should be opnfv-apex-<version>.noarch.rpm
28 RPM_INSTALL_PATH=$GS_URL
29 RPM_LIST=$RPM_INSTALL_PATH/$ARTIFACT_NAME
32 if [[ $BUILD_DIRECTORY == *apex-build* ]]; then
33 # Triggered from a daily so RPMS should be in local directory
34 BUILD_DIRECTORY=$WORKSPACE/../$BUILD_DIRECTORY
35 echo "BUILD DIRECTORY modified to $BUILD_DIRECTORY"
37 if [[ -f ${BUILD_DIRECTORY}/../opnfv.properties ]]; then
38 # if opnfv.properties exists then use the
39 # local build. Source the file so we get local OPNFV vars
40 source ${BUILD_DIRECTORY}/../opnfv.properties
41 RPM_INSTALL_PATH=${BUILD_DIRECTORY}/noarch
42 RPM_LIST=$RPM_INSTALL_PATH/$(basename $OPNFV_RPM_URL)
44 echo "BUILD_DIRECTORY is from a daily job, so will not use latest from URL"
45 echo "Check that the slave has opnfv.properties in $BUILD_DIRECTORY"
49 # use the latest from artifacts.opnfv.org
50 # get the latest.properties to get the link to the latest artifact
51 if ! wget -O $WORKSPACE/opnfv.properties http://$GS_URL/latest.properties; then
52 echo "ERROR: Unable to find latest.properties at ${GS_URL}...exiting"
55 # source the file so we get OPNFV vars
56 source opnfv.properties
57 RPM_INSTALL_PATH=$(echo $OPNFV_RPM_URL | sed 's/\/'"$(basename $OPNFV_RPM_URL)"'//')
58 RPM_LIST=${RPM_INSTALL_PATH}/$(basename $OPNFV_RPM_URL)
62 if [ -z "$DEPLOY_SCENARIO" ]; then
63 echo "Deploy scenario not set!"
67 # use local build for verify
68 if [[ "$BUILD_DIRECTORY" == *verify* ]]; then
69 if [ ! -e "${WORKSPACE}/build/lib" ]; then
70 ln -s ${WORKSPACE}/lib ${WORKSPACE}/build/lib
72 DEPLOY_SETTINGS_DIR="${WORKSPACE}/config/deploy"
73 NETWORK_SETTINGS_DIR="${WORKSPACE}/config/network"
74 DEPLOY_CMD="$(pwd)/deploy.sh"
75 RESOURCES="${WORKSPACE}/build/images/"
76 CONFIG="${WORKSPACE}/build"
77 LIB="${WORKSPACE}/lib"
78 # Make sure python34 deps are installed
79 for dep_pkg in epel-release python34 python34-PyYAML python34-setuptools; do
80 if ! rpm -q ${dep_pkg} > /dev/null; then
81 if ! sudo yum install -y ${dep_pkg}; then
82 echo "Failed to install ${dep_pkg}"
88 # Make sure jinja2 is installed
89 for python_pkg in jinja2; do
90 if ! python3.4 -c "import $python_pkg"; then
91 echo "$python_pkg package not found for python3.4, attempting to install..."
92 if ! sudo easy_install-3.4 $python_pkg; then
93 echo -e "Failed to install $python_pkg package for python3.4"
99 # Make sure ipxe-roms-qemu package is updated to latest.
100 # This package is needed for multi virtio nic PXE boot in virtual environment.
101 sudo yum update -y ipxe-roms-qemu
103 if [ -z ${PYTHONPATH:-} ]; then
104 export PYTHONPATH=${WORKSPACE}/lib/python
106 export PYTHONPATH=$PYTHONPATH:${WORKSPACE}/lib/python
110 # find version of RPM
111 VERSION_EXTENSION=$(echo $(basename $RPM_LIST) | grep -Eo '[0-9]+\.[0-9]+-[0-9]{8}')
112 # build RPM List which already includes base Apex RPM
113 for pkg in ${APEX_PKGS}; do
114 RPM_LIST+=" ${RPM_INSTALL_PATH}/opnfv-apex-${pkg}-${VERSION_EXTENSION}.noarch.rpm"
117 # remove old / install new RPMs
118 if rpm -q opnfv-apex > /dev/null; then
119 INSTALLED_RPMS=$(rpm -qa | grep apex)
120 if [ -n "$INSTALLED_RPMS" ]; then
121 sudo yum remove -y ${INSTALLED_RPMS}
125 if ! sudo yum install -y $RPM_LIST; then
126 echo "Unable to install new RPMs: $RPM_LIST"
130 DEPLOY_CMD=opnfv-deploy
131 DEPLOY_SETTINGS_DIR="/etc/opnfv-apex/"
132 NETWORK_SETTINGS_DIR="/etc/opnfv-apex/"
133 RESOURCES="/var/opt/opnfv/images"
134 CONFIG="/var/opt/opnfv"
135 LIB="/var/opt/opnfv/lib"
138 # set env vars to deploy cmd
139 DEPLOY_CMD="CONFIG=${CONFIG} RESOURCES=${RESOURCES} LIB=${LIB} ${DEPLOY_CMD}"
141 if [ "$OPNFV_CLEAN" == 'yes' ]; then
142 if sudo test -e '/root/inventory/pod_settings.yaml'; then
143 clean_opts='-i /root/inventory/pod_settings.yaml'
147 if [[ "$BUILD_DIRECTORY" == *verify* ]]; then
148 sudo CONFIG=${CONFIG} LIB=${LIB} ./clean.sh ${clean_opts}
150 sudo CONFIG=${CONFIG} LIB=${LIB} opnfv-clean ${clean_opts}
154 if echo ${DEPLOY_SCENARIO} | grep ipv6; then
156 DEPLOY_SCENARIO=$(echo ${DEPLOY_SCENARIO} | sed 's/-ipv6//')
157 echo "INFO: IPV6 Enabled"
160 echo "Deploy Scenario set to ${DEPLOY_SCENARIO}"
161 DEPLOY_FILE="${DEPLOY_SETTINGS_DIR}/${DEPLOY_SCENARIO}.yaml"
163 if [ ! -e "$DEPLOY_FILE" ]; then
164 echo "ERROR: Required settings file missing: Deploy settings file ${DEPLOY_FILE}"
167 if [[ "$JOB_NAME" == *virtual* ]]; then
168 # settings for virtual deployment
169 if [ "$IPV6_FLAG" == "True" ]; then
170 NETWORK_FILE="${NETWORK_SETTINGS_DIR}/network_settings_v6.yaml"
172 NETWORK_FILE="${NETWORK_SETTINGS_DIR}/network_settings.yaml"
174 DEPLOY_CMD="${DEPLOY_CMD} -v"
176 # settings for bare metal deployment
177 if [ "$IPV6_FLAG" == "True" ]; then
178 NETWORK_FILE="/root/network/network_settings_v6.yaml"
180 NETWORK_FILE="/root/network/network_settings.yaml"
182 INVENTORY_FILE="/root/inventory/pod_settings.yaml"
184 if ! sudo test -e "$INVENTORY_FILE"; then
185 echo "ERROR: Required settings file missing: Inventory settings file ${INVENTORY_FILE}"
188 # include inventory file for bare metal deployment
189 DEPLOY_CMD="${DEPLOY_CMD} -i ${INVENTORY_FILE}"
192 # Check that network settings file exists
193 if ! sudo test -e "$NETWORK_FILE"; then
194 echo "ERROR: Required settings file missing: Network Settings file ${NETWORK_FILE}"
199 sudo ${DEPLOY_CMD} -d ${DEPLOY_FILE} -n ${NETWORK_FILE} --debug
202 echo "--------------------------------------------------------"