From 88baa3f2459a5d32150048745003f4987b964be2 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Wed, 25 Oct 2017 12:15:18 +0200 Subject: import lava-slave --- lava-slave/Dockerfile | 58 +++++++++++++++++++++++++++++++++++++++++++ lava-slave/configs/lava-slave | 15 +++++++++++ lava-slave/configs/tftpd-hpa | 6 +++++ lava-slave/scripts/start.sh | 14 +++++++++++ lava-slave/scripts/stop.sh | 3 +++ 5 files changed, 96 insertions(+) create mode 100644 lava-slave/Dockerfile create mode 100644 lava-slave/configs/lava-slave create mode 100644 lava-slave/configs/tftpd-hpa create mode 100755 lava-slave/scripts/start.sh create mode 100755 lava-slave/scripts/stop.sh diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile new file mode 100644 index 0000000..6aece71 --- /dev/null +++ b/lava-slave/Dockerfile @@ -0,0 +1,58 @@ +FROM bitnami/minideb:stretch + +RUN apt-get update + +# Add services helper utilities to start and stop LAVA +COPY scripts/stop.sh . +COPY scripts/start.sh . + +RUN \ + echo 'lava-server lava-server/instance-name string lava-slave-instance' | debconf-set-selections && \ + echo 'locales locales/locales_to_be_generated multiselect C.UTF-8 UTF-8, en_US.UTF-8 UTF-8 ' | debconf-set-selections && \ + echo 'locales locales/default_environment_locale select en_US.UTF-8' | debconf-set-selections && \ + DEBIAN_FRONTEND=noninteractive apt-get -y install \ + locales \ + lava-dispatcher \ + lava-dev \ + git \ + vim \ + sudo \ + python-setproctitle \ + tftpd-hpa \ + u-boot-tools \ + device-tree-compiler \ + qemu-system \ + qemu-system-arm \ + qemu-system-i386 \ + qemu-kvm \ + xnbd-server \ + e2fsprogs + +RUN wget http://images.validation.linaro.org/production-repo/production-repo.key.asc \ + && apt-key add production-repo.key.asc \ + && echo 'deb http://images.validation.linaro.org/production-repo/ stretch-backports main' > /etc/apt/sources.list.d/lava.list \ + && apt-get clean && apt-get update + +RUN DEBIAN_FRONTEND=noninteractive apt-get -y install lava-dispatcher + +#RUN \ +# git clone https://github.com/kernelci/lava-server.git -b release /root/lava-server && \ +# git clone https://github.com/kernelci/lava-dispatcher.git -b master /root/lava-dispatcher && \ +# cd /root/lava-dispatcher && \ +# git checkout release && \ +# git config --global user.name "Docker Build" && \ +# git config --global user.email "info@kernelci.org" && \ +# echo "cd \${DIR} && dpkg -i *.deb" >> /root/lava-server/share/debian-dev-build.sh && \ +# sleep 2 && \ +# /root/lava-server/share/debian-dev-build.sh -p lava-dispatcher + +COPY configs/lava-slave /etc/lava-dispatcher/lava-slave + +COPY configs/tftpd-hpa /etc/default/tftpd-hpa + +#TODO made this customizable, 1000 ports by default is too much +RUN sed -i 's,XNBD_PORT_RANGE_MIN.*,XNBD_PORT_RANGE_MIN=55950,' /usr/lib/python2.7/dist-packages/lava_dispatcher/pipeline/utils/constants.py + +EXPOSE 69/udp 80 + +CMD /start.sh diff --git a/lava-slave/configs/lava-slave b/lava-slave/configs/lava-slave new file mode 100644 index 0000000..6b991ad --- /dev/null +++ b/lava-slave/configs/lava-slave @@ -0,0 +1,15 @@ +# Configuration for lava-slave daemon + +# URL to the master and the logger +MASTER_URL="tcp://{LAVA_MASTER}:5556" +LOGGER_URL="tcp://{LAVA_MASTER}:5555" + +# Logging level should be uppercase (DEBUG, INFO, WARNING, ERROR) +# LOGLEVEL="DEBUG" + +# Encryption +# If set, will activate encryption using the master public and the slave +# private keys +# ENCRYPT="--encrypt" +# MASTER_CERT="--master-cert /etc/lava-dispatcher/certificates.d/" +# SLAVE_CERT="--slave-cert /etc/lava-dispatcher/certificates.d/" diff --git a/lava-slave/configs/tftpd-hpa b/lava-slave/configs/tftpd-hpa new file mode 100644 index 0000000..bb6f079 --- /dev/null +++ b/lava-slave/configs/tftpd-hpa @@ -0,0 +1,6 @@ +# /etc/default/tftpd-hpa + +TFTP_USERNAME="tftp" +TFTP_DIRECTORY="/var/lib/lava/dispatcher/tmp/" +TFTP_ADDRESS="0.0.0.0:69" +TFTP_OPTIONS="--secure" diff --git a/lava-slave/scripts/start.sh b/lava-slave/scripts/start.sh new file mode 100755 index 0000000..f442e8d --- /dev/null +++ b/lava-slave/scripts/start.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# Set LAVA Master IP +if [[ -n "$LAVA_MASTER" ]]; then + sed -i -e "s/{LAVA_MASTER}/$LAVA_MASTER/g" /etc/lava-dispatcher/lava-slave +fi + +service tftpd-hpa start || exit 4 + +# FIXME lava-slave does not run if old pid is present +rm -f /var/run/lava-slave.pid +service lava-slave start || exit 5 + +# start an http file server for boot/transfer_overlay support +(cd /var/lib/lava/dispatcher; python -m SimpleHTTPServer 80) diff --git a/lava-slave/scripts/stop.sh b/lava-slave/scripts/stop.sh new file mode 100755 index 0000000..0f18456 --- /dev/null +++ b/lava-slave/scripts/stop.sh @@ -0,0 +1,3 @@ +#!/bin/bash +service tftpd-hpa stop +service lava-slave stop -- cgit 1.2.3-korg