| 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 | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 19 | # This creates som/LCM docker from from last stable package |
| 20 | |
| 21 | FROM ubuntu:16.04 |
| 22 | |
| 23 | # Set the working directory to /app |
| 24 | WORKDIR /app/osm_lcm |
| 25 | |
| 26 | # avoid extra information from packages |
| 27 | RUN echo 'path-exclude /usr/share/doc/*\n\ |
| 28 | path-include /usr/share/doc/*/copyright\n\ |
| 29 | path-exclude /usr/share/man/*\n\ |
| 30 | path-exclude /usr/share/groff/*\n\ |
| 31 | path-exclude /usr/share/info/*\n\ |
| 32 | path-exclude /usr/share/lintian/*\n\ |
| 33 | path-exclude /usr/share/linda/*\n'\ |
| 34 | > /etc/dpkg/dpkg.cfg.d/01_nodoc && \ |
| 35 | echo 'APT::Install-Recommends "false";\n\ |
| 36 | APT::AutoRemove::RecommendsImportant "false";\n\ |
| 37 | APT::AutoRemove::SuggestsImportant "false";\n'\ |
| 38 | > /etc/apt/apt.conf.d/99_norecommends |
| 39 | |
| 40 | RUN apt-get update && apt-get -y install curl software-properties-common |
| 41 | |
| garciadeblas | 0ccc31e | 2019-11-22 15:28:50 +0100 | [diff] [blame^] | 42 | RUN apt-get install -y git make python3 \ |
| Adam Israel | ca079d7 | 2019-11-19 13:05:22 +0100 | [diff] [blame] | 43 | python3-pip python3-pymongo python3-aiohttp \ |
| Michael Marchetti | b1287f5 | 2018-10-31 22:23:02 +0000 | [diff] [blame] | 44 | python3-all python3-setuptools openssh-client libffi-dev libssl-dev \ |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 45 | python3-bitarray python3-regex python3-lxml dh-python wget tox \ |
| 46 | python3-cffi \ |
| garciadeblas | 0ccc31e | 2019-11-22 15:28:50 +0100 | [diff] [blame^] | 47 | && python3 -m pip install pip --upgrade \ |
| Adam Israel | ca079d7 | 2019-11-19 13:05:22 +0100 | [diff] [blame] | 48 | && python3 -m pip install -U aiokafka lxml six enum34 \ |
| calvinosanch | bfb7790 | 2019-07-31 13:31:16 +0000 | [diff] [blame] | 49 | && python3 -m pip install requests \ |
| garciadeblas | 0ccc31e | 2019-11-22 15:28:50 +0100 | [diff] [blame^] | 50 | && python3 -m pip install -U juju \ |
| Michael Marchetti | b1287f5 | 2018-10-31 22:23:02 +0000 | [diff] [blame] | 51 | && rm -rf /var/lib/apt/lists/* |
| garciadeblas | 77f468c | 2018-10-26 23:13:37 +0200 | [diff] [blame] | 52 | |
| tierno | 38e11d7 | 2018-10-30 14:56:28 +0100 | [diff] [blame] | 53 | # RUN git clone https://osm.etsi.org/gerrit/osm/N2VC.git \ |
| 54 | # && cd N2VC \ |
| 55 | # && cd modules/libjuju && python3 setup.py develop && cd ../.. \ |
| calvinosanch | bfb7790 | 2019-07-31 13:31:16 +0000 | [diff] [blame] | 56 | # && python3 -m pip install -U -r requirements.txt |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 57 | |
| garciadeblas | 0ccc31e | 2019-11-22 15:28:50 +0100 | [diff] [blame^] | 58 | RUN apt-get update && apt-get install -y curl \ |
| 59 | && apt-get update && apt-get install -y apt-transport-https \ |
| 60 | && curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \ |
| 61 | && echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list \ |
| 62 | && apt-get update && apt-get install -y kubectl |
| 63 | |
| 64 | RUN curl https://get.helm.sh/helm-v2.15.2-linux-amd64.tar.gz --output helm-v2.15.2.tar.gz \ |
| 65 | && tar -zxvf helm-v2.15.2.tar.gz \ |
| 66 | && mv linux-amd64/helm /usr/local/bin/helm \ |
| 67 | && rm -r linux-amd64/ |
| 68 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 69 | ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian |
| 70 | ARG RELEASE=ReleaseFOUR-daily |
| 71 | ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg |
| 72 | ARG REPOSITORY=testing |
| 73 | |
| 74 | RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - |
| 75 | RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} LCM N2VC common" && apt update |
| 76 | |
| 77 | ARG LCM_VERSION |
| 78 | ARG COMMON_VERSION |
| 79 | ARG N2VC_VERSION |
| 80 | |
| 81 | RUN apt-get update && apt-get install -y python3-osm-lcm${LCM_VERSION} \ |
| 82 | python3-osm-common${COMMON_VERSION} \ |
| 83 | python3-n2vc${N2VC_VERSION} \ |
| 84 | && rm -rf /var/lib/apt/lists/* |
| 85 | |
| 86 | EXPOSE 9999 |
| 87 | |
| 88 | LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \ |
| 89 | Description="This implements life cycle management engine for OSM" \ |
| 90 | Version="1.0" \ |
| 91 | Author="Alfonso Tierno" |
| 92 | |
| 93 | # Used for local storage |
| 94 | VOLUME /app/storage |
| 95 | # Used for logs |
| 96 | VOLUME /app/log |
| 97 | |
| 98 | # The following ENV can be added with "docker run -e xxx' to configure LCM |
| 99 | ENV OSMLCM_RO_HOST ro |
| 100 | ENV OSMLCM_RO_PORT 9090 |
| 101 | ENV OSMLCM_RO_TENANT osm |
| 102 | |
| 103 | # VCA |
| 104 | ENV OSMLCM_VCA_HOST vca |
| 105 | ENV OSMLCM_VCA_PORT: 17070 |
| 106 | ENV OSMLCM_VCA_USER: admin |
| 107 | ENV OSMLCM_VCA_SECRET: secret |
| 108 | |
| 109 | # database |
| 110 | ENV OSMLCM_DATABASE_DRIVER mongo |
| Juan | cc084d7 | 2018-11-16 11:08:07 -0300 | [diff] [blame] | 111 | ENV OSMLCM_DATABASE_URI mongodb://mongo:27017 |
| 112 | #ENV OSMLCM_DATABASE_HOST mongo |
| 113 | #ENV OSMLCM_DATABASE_PORT 27017 |
| 114 | |
| 115 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 116 | ENV OSMLCM_STORAGE_DRIVER local |
| 117 | ENV OSMLCM_STORAGE_PATH /app/storage |
| 118 | |
| 119 | # message |
| 120 | ENV OSMLCM_MESSAGE_DRIVER kafka |
| 121 | ENV OSMLCM_MESSAGE_HOST kafka |
| 122 | ENV OSMLCM_MESSAGE_PORT 9092 |
| 123 | |
| garciadeblas | 0ccc31e | 2019-11-22 15:28:50 +0100 | [diff] [blame^] | 124 | # k8s |
| 125 | ENV OSMLCM_VCA_HELMPATH /usr/local/bin/helm |
| 126 | ENV OSMLCM_VCA_KUBECTLPATH /usr/bin/kubectl |
| 127 | |
| 128 | # logs |
| 129 | # ENV OSMLCM_GLOBAL_LOGFILE /app/log/lcm.log |
| 130 | # ENV OSMLCM_GLOBAL_LOGLEVEL DEBUG |
| 131 | |
| tierno | 9f8b53b | 2019-09-13 13:19:48 +0000 | [diff] [blame] | 132 | HEALTHCHECK --start-period=120s --interval=30s --timeout=30s --retries=1 \ |
| 133 | CMD python3 -m osm_lcm.lcm --health-check || exit 1 |
| tierno | 84a3c9a | 2018-10-24 11:02:57 +0200 | [diff] [blame] | 134 | |
| 135 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 136 | # Run app.py when the container launches |
| tierno | 9f8b53b | 2019-09-13 13:19:48 +0000 | [diff] [blame] | 137 | CMD python3 -m osm_lcm.lcm |
| 138 | |