| calvinosanch | bfb7790 | 2019-07-31 13:31:16 +0000 | [diff] [blame] | 1 | ## |
| 2 | # Copyright 2019 ETSI |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 | # not use this file except in compliance with the License. You may obtain |
| 6 | # a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 | # License for the specific language governing permissions and limitations |
| 14 | # under the License. |
| 15 | ## |
| 16 | |
| 17 | ######################################################################## |
| 18 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 19 | # This creates osm/NBI docker from local NBI source code |
| 20 | |
| madavi | 2ed9494 | 2019-10-23 17:45:05 +0530 | [diff] [blame] | 21 | FROM ubuntu:18.04 |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 22 | |
| madavi | 2ed9494 | 2019-10-23 17:45:05 +0530 | [diff] [blame] | 23 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install curl software-properties-common |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 24 | |
| madavi | 2ed9494 | 2019-10-23 17:45:05 +0530 | [diff] [blame] | 25 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git python3 python3-jsonschema \ |
| Eduardo Sousa | e193dfd | 2018-09-21 11:37:49 +0100 | [diff] [blame] | 26 | python3-pymongo python3-yaml python3-pip python3-keystoneclient \ |
| calvinosanch | bfb7790 | 2019-07-31 13:31:16 +0000 | [diff] [blame] | 27 | && pip3 install -U pip \ |
| fonsecaj | 1850e4a | 2020-10-29 19:04:26 +0000 | [diff] [blame^] | 28 | && python3 -m pip install aiokafka dataclasses aiohttp cherrypy==18.1.2 pyangbind keystoneauth1 \ |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 29 | && mkdir -p /app/storage/kafka && mkdir -p /app/log |
| 30 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 31 | ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian |
| beierlm | a4a37f7 | 2020-06-26 12:55:01 -0400 | [diff] [blame] | 32 | ARG RELEASE=ReleaseEIGHT-daily |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 33 | ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg |
| 34 | ARG REPOSITORY=testing |
| 35 | |
| 36 | RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - |
| 37 | RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} NBI IM common" && apt update |
| 38 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 39 | ARG NBI_VERSION |
| 40 | ARG COMMON_VERSION |
| 41 | ARG IM_VERSION |
| 42 | |
| 43 | RUN apt-get update && apt-get -y install python3-osm-nbi${NBI_VERSION} python3-osm-common${COMMON_VERSION} python3-osm-im${IM_VERSION} |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 44 | |
| 45 | # Set the working directory to /app |
| 46 | WORKDIR /app/osm_nbi |
| 47 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 48 | EXPOSE 9999 |
| 49 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 50 | RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/html_public /app/osm_nbi/html_public |
| 51 | RUN cp /usr/lib/python3/dist-packages/osm_nbi/nbi.cfg /app/osm_nbi/ |
| 52 | RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/http /app/osm_nbi/ |
| 53 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 54 | LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \ |
| 55 | Description="This implements a north bound interface for OSM" \ |
| 56 | Version="1.0" \ |
| 57 | Author="Alfonso Tierno" |
| 58 | |
| 59 | # Used for local storage |
| 60 | VOLUME /app/storage |
| 61 | # Used for logs |
| 62 | VOLUME /app/log |
| 63 | |
| 64 | # The following ENV can be added with "docker run -e xxx' to configure |
| 65 | # server |
| 66 | ENV OSMNBI_SOCKET_HOST 0.0.0.0 |
| 67 | ENV OSMNBI_SOCKET_PORT 9999 |
| tierno | 2c002c9 | 2019-09-13 12:57:35 +0000 | [diff] [blame] | 68 | ENV OSMNBI_SERVER_SSL_CERTIFICATE /app/osm_nbi/http/cert.pem |
| 69 | ENV OSMNBI_SERVER_SSL_PRIVATE_KEY /app/osm_nbi/http/privkey.pem |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 70 | # storage |
| 71 | ENV OSMNBI_STORAGE_PATH /app/storage |
| 72 | # database |
| 73 | ENV OSMNBI_DATABASE_DRIVER mongo |
| Juan | cc084d7 | 2018-11-16 11:08:07 -0300 | [diff] [blame] | 74 | ENV OSMNBI_DATABASE_URI mongodb://mongo:27017 |
| 75 | #ENV OSMNBI_DATABASE_HOST mongo |
| 76 | #ENV OSMNBI_DATABASE_PORT 27017 |
| 77 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 78 | # web |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 79 | ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 80 | # message |
| 81 | ENV OSMNBI_MESSAGE_DRIVER kafka |
| 82 | ENV OSMNBI_MESSAGE_HOST kafka |
| 83 | ENV OSMNBI_MESSAGE_PORT 9092 |
| 84 | # logs |
| 85 | ENV OSMNBI_LOG_FILE /app/log/nbi.log |
| 86 | ENV OSMNBI_LOG_LEVEL DEBUG |
| Eduardo Sousa | e193dfd | 2018-09-21 11:37:49 +0100 | [diff] [blame] | 87 | # authentication |
| 88 | ENV OSMNBI_AUTHENTICATION_BACKEND internal |
| 89 | #ENV OSMNBI_AUTHENTICATION_BACKEND keystone |
| 90 | #ENV OSMNBI_AUTHENTICATION_AUTH_URL keystone |
| 91 | #ENV OSMNBI_AUTHENTICATION_AUTH_PORT 5000 |
| 92 | #ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME default |
| 93 | #ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME default |
| 94 | #ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME nbi |
| 95 | #ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD nbi |
| 96 | #ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT service |
| vijay.r | bdb4802 | 2019-05-06 15:38:23 +0530 | [diff] [blame] | 97 | #prometheus |
| 98 | ENV OSMNBI_PROMETHEUS_HOST prometheus |
| 99 | ENV OSMNBI_PROMETHEUS_PORT 9090 |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 100 | |
| tierno | 836e9db | 2019-07-22 13:23:56 +0000 | [diff] [blame] | 101 | HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \ |
| Mike Marchetti | 851aac2 | 2018-09-20 10:18:01 -0400 | [diff] [blame] | 102 | CMD curl -k https://localhost:9999/osm/ | grep Welcome || exit 1 |
| 103 | |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 104 | # Run app.py when the container launches |
| tierno | 2c002c9 | 2019-09-13 12:57:35 +0000 | [diff] [blame] | 105 | CMD python3 -m osm_nbi.nbi |
| 106 | |