Dan Timoney | 471dafa | 2017-08-21 14:44:05 -0400 | [diff] [blame] | 1 | # Base ubuntu with added packages needed for open ecomp |
Timoney, Dan (dt5972) | e7cfae5 | 2019-01-03 15:14:58 -0500 | [diff] [blame] | 2 | FROM ${base.image.name}:${project.version} |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 3 | MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) |
Timoney, Dan (dt5972) | b1ac725 | 2018-12-14 13:00:43 -0500 | [diff] [blame] | 4 | ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 5 | ENV ODL_HOME /opt/opendaylight |
Timoney, Dan (dt5972) | 21821db | 2018-03-13 19:26:40 -0400 | [diff] [blame] | 6 | ENV SDNC_CONFIG_DIR /opt/onap/ccsdk/data/properties |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 7 | ENV CCSDK_SLI_CORE_REPO mvn:org.onap.ccsdk.sli.core/ccsdk-sli-core-all/${ccsdk.sli.core.version}/xml/features |
| 8 | ENV CCSDK_SLI_ADAPTORS_REPO mvn:org.onap.ccsdk.sli.adaptors/ccsdk-sli-adaptors-all/${ccsdk.sli.adaptors.version}/xml/features |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 9 | ENV CCSDK_FEATURES_REPO mvn:org.onap.ccsdk.features/ccsdk-features-all/${ccsdk.features.version}/xml/features |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 10 | ENV CCSDK_SLI_NORTHBOUND_REPO mvn:org.onap.ccsdk.sli.northbound/ccsdk-sli-northbound-all/${ccsdk.sli.northbound.version}/xml/features |
| 11 | ENV CCSDK_SLI_PLUGINS_REPO mvn:org.onap.ccsdk.sli.plugins/ccsdk-sli-plugins-all/${ccsdk.sli.plugins.version}/xml/features |
Timoney, Dan (dt5972) | be94cc1 | 2018-07-02 18:02:35 -0400 | [diff] [blame] | 12 | ENV ANSIBLE_GPG_KEY ${ansible.gpg.key} |
Timoney, Dan (dt5972) | aa9d825 | 2019-02-04 18:02:21 -0500 | [diff] [blame^] | 13 | ENV ODL_BOOT_FEATURES_EXTRA ${odl.boot.features.extra} |
Timoney, Dan (dt5972) | be94cc1 | 2018-07-02 18:02:35 -0400 | [diff] [blame] | 14 | |
Dan Timoney | 74e4e8d | 2017-08-22 11:51:54 -0400 | [diff] [blame] | 15 | # copy the opendaylight credentials |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 16 | COPY idmlight.db.mv.db $ODL_HOME/data |
| 17 | |
| 18 | |
| 19 | # copy CCSDK mvn artifacts to ODL repository |
| 20 | COPY system /tmp/system |
| 21 | RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system |
| 22 | |
| 23 | # Add CCSDK repositories to boot repositories |
| 24 | RUN cp $ODL_HOME/etc/org.apache.karaf.features.cfg $ODL_HOME/etc/org.apache.karaf.features.cfg.orig |
Timoney, Dan (dt5972) | aa9d825 | 2019-02-04 18:02:21 -0500 | [diff] [blame^] | 25 | RUN sed -i -e "\|featuresRepositories|s|$|, ${CCSDK_SLI_CORE_REPO}, ${CCSDK_SLI_ADAPTORS_REPO}, ${CCSDK_SLI_NORTHBOUND_REPO}, ${CCSDK_SLI_PLUGINS_REPO}, ${CCSDK_FEATURES_REPO}|" $ODL_HOME/etc/org.apache.karaf.features.cfg |
| 26 | RUN sed -i -e "\|featuresBoot[^a-zA-Z]|s|$|,${ODL_BOOT_FEATURES_EXTRA}|" $ODL_HOME/etc/org.apache.karaf.features.cfg |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 27 | |
| 28 | # Create odl user |
Timoney, Dan (dt5972) | b1ac725 | 2018-12-14 13:00:43 -0500 | [diff] [blame] | 29 | RUN adduser -S odl |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 30 | |
Timoney, Dan (dt5972) | be94cc1 | 2018-07-02 18:02:35 -0400 | [diff] [blame] | 31 | # Install ansible |
Timoney, Dan (dt5972) | ea56542 | 2018-07-06 10:25:44 -0400 | [diff] [blame] | 32 | #COPY ansible-sources.list /etc/apt/sources.list.d |
| 33 | #RUN gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv ${ANSIBLE_GPG_KEY} && \ |
| 34 | # gpg --export --armor ${ANSIBLE_GPG_KEY} | apt-key add - && \ |
Timoney, Dan (dt5972) | b1ac725 | 2018-12-14 13:00:43 -0500 | [diff] [blame] | 35 | # apk update && \ |
| 36 | # apk add -y ansible |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 37 | |
| 38 | # Install ansible-opendaylight |
Timoney, Dan (dt5972) | ea56542 | 2018-07-06 10:25:44 -0400 | [diff] [blame] | 39 | #RUN ansible-galaxy install git+https://git.opendaylight.org/gerrit/integration/packaging/ansible-opendaylight |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 40 | |
| 41 | # Copy ccsdk install playbook |
Timoney, Dan (dt5972) | ea56542 | 2018-07-06 10:25:44 -0400 | [diff] [blame] | 42 | #COPY install_ccsdk.yml /tmp |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 43 | |
| 44 | # Install features in ODL |
Timoney, Dan (dt5972) | ea56542 | 2018-07-06 10:25:44 -0400 | [diff] [blame] | 45 | #RUN ansible-playbook -i "localhost," -c local /tmp/install_ccsdk.yml |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 46 | |
Dan Timoney | 471dafa | 2017-08-21 14:44:05 -0400 | [diff] [blame] | 47 | |
Dan Timoney | 74e4e8d | 2017-08-22 11:51:54 -0400 | [diff] [blame] | 48 | # copy deliverables to opt |
Dan Timoney | 471dafa | 2017-08-21 14:44:05 -0400 | [diff] [blame] | 49 | COPY opt /opt |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 50 | COPY org.ops4j.pax.logging.cfg /opt/opendaylight/etc/org.ops4j.pax.logging.cfg |
Dan Timoney | 471dafa | 2017-08-21 14:44:05 -0400 | [diff] [blame] | 51 | |
Marcus G K Williams | dc299ed | 2017-09-14 15:15:45 -0700 | [diff] [blame] | 52 | |
Timoney, Dan (dt5972) | e14a020 | 2018-06-22 17:05:16 -0400 | [diff] [blame] | 53 | ENTRYPOINT /opt/onap/ccsdk/bin/startODL.sh |
Dan Timoney | 471dafa | 2017-08-21 14:44:05 -0400 | [diff] [blame] | 54 | EXPOSE 8181 |