0046df8ade7d079074d607e6d08e60827d77dd6d
[osm/devops.git] / docker / MON / Dockerfile
1 # Copyright 2018 Whitestack, LLC
2 # *************************************************************
3
4 # This file is part of OSM Monitoring module
5 # All Rights Reserved to Whitestack, LLC
6
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
10
11 #         http://www.apache.org/licenses/LICENSE-2.0
12
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
17 # under the License.
18
19 # For those usages not covered by the Apache License, Version 2.0 please
20 # contact: bdiaz@whitestack.com or glavado@whitestack.com
21 ##
22
23 FROM ubuntu:20.04 as INSTALL
24
25 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
26     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
27     gcc=4:9.3.* \
28     python3=3.8.* \
29     python3-dev=3.8.* \
30     python3-pip=20.0.2* \
31     python3-setuptools=45.2.* \
32     curl=7.68.*
33
34 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
35     openssh-client=1:8.*
36
37 ARG PYTHON3_OSM_COMMON_URL
38 ARG PYTHON3_OSM_MON_URL
39 ARG PYTHON3_N2VC_URL
40
41 RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
42 RUN dpkg -i ./osm_common.deb
43
44 RUN curl $PYTHON3_N2VC_URL -o n2vc.deb
45 RUN dpkg -i ./n2vc.deb
46
47 RUN curl $PYTHON3_OSM_MON_URL -o osm_mon.deb
48 RUN dpkg -i ./osm_mon.deb
49
50 RUN pip3 install \
51     -r /usr/lib/python3/dist-packages/n2vc/requirements.txt \
52     -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
53     -r /usr/lib/python3/dist-packages/osm_mon/requirements.txt
54
55 #######################################################################################
56 FROM ubuntu:20.04 as FINAL
57
58 ARG APT_PROXY
59 RUN if [ ! -z $APT_PROXY ] ; then \
60     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
61     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
62     fi
63
64 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
65     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
66     python3-minimal=3.8.* \
67     && rm -rf /var/lib/apt/lists/*
68
69 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
70     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
71     ca-certificates \
72     && rm -rf /var/lib/apt/lists/*
73
74 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
75 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/python3.8/dist-packages
76 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
77 COPY --from=INSTALL /usr/bin/scp /usr/bin/scp
78 COPY --from=INSTALL /usr/bin/ssh-keygen /usr/bin/ssh-keygen
79 COPY --from=INSTALL /usr/bin/ssh /usr/bin/ssh
80 COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
81 COPY --from=INSTALL /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/
82
83 COPY scripts/ scripts/
84
85 ENV OSMMON_MESSAGE_DRIVER kafka
86 ENV OSMMON_MESSAGE_HOST kafka
87 ENV OSMMON_MESSAGE_PORT 9092
88
89 ENV OSMMON_DATABASE_DRIVER mongo
90 ENV OSMMON_DATABASE_URI mongodb://mongo:27017
91
92 ENV OSMMON_SQL_DATABASE_URI sqlite:///mon_sqlite.db
93 ENV OSMMON_OPENSTACK_DEFAULT_GRANULARITY 300
94 ENV OSMMON_GLOBAL_REQUEST_TIMEOUT 10
95 ENV OSMMON_GLOBAL_LOGLEVEL INFO
96 ENV OSMMON_VCA_HOST localhost
97 ENV OSMMON_VCA_SECRET secret
98 ENV OSMMON_VCA_USER admin
99 ENV OSMMON_VCA_CACERT cacert
100 ENV OSMMON_DATABASE_COMMONKEY changeme
101 ENV OSMMON_COLLECTOR_INTERVAL 30
102 ENV OSMMON_EVALUATOR_INTERVAL 30
103 ENV OSMMON_PROMETHEUS_URL http://prometheus:9090
104 ENV OSMMON_GRAFANA_URL http://grafana:3000
105 ENV OSMMON_GRAFANA_USER admin
106 ENV OSMMON_GRAFANA_PASSWORD admin
107
108 EXPOSE 8000
109
110 HEALTHCHECK --start-period=120s --interval=5s --timeout=2s --retries=12\
111   CMD osm-mon-healthcheck || exit 1
112
113 CMD /bin/bash scripts/start.sh