628f1baa56
Change-Id: I4ee334e8ff922411a90b60578e016a43378290e9
59 lines
3.0 KiB
Docker
59 lines
3.0 KiB
Docker
FROM ubuntu:trusty
|
|
|
|
MAINTAINER Alexandre Viau <alexandre.viau@savoirfairelinux.com>
|
|
|
|
RUN apt-get update && apt-get install -y vim python-pip python3-pip python-dev libffi-dev libssl-dev git python-pycurl python-virtualenv libcurl4-openssl-dev
|
|
|
|
# VirtualEnv
|
|
RUN virtualenv /opt/surveil/env
|
|
|
|
# Download packs
|
|
ENV MONITORING_TOOLS_VERSION 0.4.0
|
|
RUN apt-get install -y subversion && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/generic-host /usr/share/monitoring/packs/sfl/generic-host && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/openstack-glance-http /usr/share/monitoring/packs/sfl/openstack-glance-http && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/openstack-cinder-http /usr/share/monitoring/packs/sfl/openstack-cinder-http && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/openstack-keystone-http /usr/share/monitoring/packs/sfl/openstack-keystone-http && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/openstack-nova-http /usr/share/monitoring/packs/sfl/openstack-nova-http && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/openstack-host /usr/share/monitoring/packs/sfl/openstack-host && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/linux-system-nrpe /usr/share/monitoring/packs/sfl/linux-system-nrpe && \
|
|
svn checkout https://github.com/savoirfairelinux/monitoring-tools/tags/${MONITORING_TOOLS_VERSION}/packs/generic-host /usr/share/monitoring/packs/sfl/generic-host && \
|
|
apt-get remove -y subversion
|
|
|
|
ADD requirements.txt /opt/surveil/requirements.txt
|
|
RUN /opt/surveil/env/bin/pip install -U "pbr>=1.3,<2.0"
|
|
RUN /opt/surveil/env/bin/pip install python-termstyle
|
|
RUN /opt/surveil/env/bin/pip install -r /opt/surveil/requirements.txt
|
|
|
|
ADD tools/docker/surveil_container/setup.sh /opt/surveil/setup.sh
|
|
ADD setup.py /opt/surveil/setup.py
|
|
ADD setup.cfg /opt/surveil/setup.cfg
|
|
ADD README.rst /opt/surveil/README.rst
|
|
ADD etc/surveil /etc/surveil
|
|
ADD surveil /opt/surveil/surveil
|
|
|
|
#ADD .git /surveil/.git
|
|
ENV PBR_VERSION=PROD
|
|
|
|
# We are using develop so that the code can be mounted when in DEV.
|
|
RUN cd /opt/surveil && /opt/surveil/env/bin/python setup.py develop
|
|
ENV PATH=$PATH:/opt/surveil/env/bin
|
|
|
|
# Set to 'surveil' or 'keystone'
|
|
ENV SURVEIL_AUTH_BACKEND=surveil
|
|
ENV SURVEIL_KEYSTONE_HOST=198.72.123.131
|
|
ENV SURVEIL_KEYSTONE_AUTH_PROTOCOL=http
|
|
|
|
# OpenStack Authentication credentials. Used for Keystone authentication
|
|
ENV SURVEIL_OS_USERNAME=admin
|
|
ENV SURVEIL_OS_PASSWORD=password
|
|
ENV SURVEIL_OS_TENANT_NAME=admin
|
|
|
|
# Surveil API
|
|
EXPOSE 5311
|
|
|
|
CMD cd /opt/surveil && \
|
|
./setup.sh && \
|
|
((sleep 50 && surveil-init --influxdb --packs --mongodb) &) && \
|
|
surveil-api
|