blob: 9af3af90f9a07e63c5fa87e885566190e8471c71 [file] [log] [blame]
Dan Timoney471dafa2017-08-21 14:44:05 -04001# Base ubuntu with added packages needed for open ecomp
Timoney, Dan (dt5972)6f0c0102018-06-18 23:01:08 -04002FROM onap/ccsdk-odl-oxygen-image:${project.version}
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04003MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
Dan Timoney471dafa2017-08-21 14:44:05 -04004ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04005ENV ODL_HOME /opt/opendaylight
Timoney, Dan (dt5972)21821db2018-03-13 19:26:40 -04006ENV SDNC_CONFIG_DIR /opt/onap/ccsdk/data/properties
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -04007ENV CCSDK_SLI_CORE_REPO mvn:org.onap.ccsdk.sli.core/ccsdk-sli-core-all/${ccsdk.sli.core.version}/xml/features
8ENV CCSDK_SLI_ADAPTORS_REPO mvn:org.onap.ccsdk.sli.adaptors/ccsdk-sli-adaptors-all/${ccsdk.sli.adaptors.version}/xml/features
9ENV CCSDK_SLI_NORTHBOUND_REPO mvn:org.onap.ccsdk.sli.northbound/ccsdk-sli-northbound-all/${ccsdk.sli.northbound.version}/xml/features
10ENV CCSDK_SLI_PLUGINS_REPO mvn:org.onap.ccsdk.sli.plugins/ccsdk-sli-plugins-all/${ccsdk.sli.plugins.version}/xml/features
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040011ENV ANSIBLE_GPG_KEY ${ansible.gpg.key}
12
Dan Timoney74e4e8d2017-08-22 11:51:54 -040013# copy the opendaylight credentials
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040014COPY idmlight.db.mv.db $ODL_HOME/data
15
16
17# copy CCSDK mvn artifacts to ODL repository
18COPY system /tmp/system
19RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system
20
21# Add CCSDK repositories to boot repositories
22RUN cp $ODL_HOME/etc/org.apache.karaf.features.cfg $ODL_HOME/etc/org.apache.karaf.features.cfg.orig
23RUN cat $ODL_HOME/etc/org.apache.karaf.features.cfg.orig | sed -e "\|featuresRepositories|s|$|, ${CCSDK_SLI_CORE_REPO}, ${CCSDK_SLI_ADAPTORS_REPO}, ${CCSDK_SLI_NORTHBOUND_REPO}, ${CCSDK_SLI_PLUGINS_REPO}|" > $ODL_HOME/etc/org.apache.karaf.features.cfg
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040024RUN echo featuresBoot=config,standard,region,package,kar,ssh,management,odl-restconf-all,odl-mdsal-all,odl-mdsal-apidocs,odl-daexim-all,ccsdk-sli-core-all,ccsdk-sli-adaptors-all,ccsdk-sli-northbound-all,ccsdk-sli-plugins-all >> $ODL_HOME/etc/org.apache.karaf.features.cfg
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040025
26# Create odl user
27RUN useradd odl
28
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040029# Install ansible
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040030#COPY ansible-sources.list /etc/apt/sources.list.d
31#RUN gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv ${ANSIBLE_GPG_KEY} && \
32# gpg --export --armor ${ANSIBLE_GPG_KEY} | apt-key add - && \
33# apt-get update && \
34# apt-get install -y ansible
Timoney, Dan (dt5972)be94cc12018-07-02 18:02:35 -040035
36# Install ansible-opendaylight
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040037#RUN ansible-galaxy install git+https://git.opendaylight.org/gerrit/integration/packaging/ansible-opendaylight
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040038
39# Copy ccsdk install playbook
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040040#COPY install_ccsdk.yml /tmp
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040041
42# Install features in ODL
Timoney, Dan (dt5972)ea565422018-07-06 10:25:44 -040043#RUN ansible-playbook -i "localhost," -c local /tmp/install_ccsdk.yml
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040044
Dan Timoney471dafa2017-08-21 14:44:05 -040045
Dan Timoney74e4e8d2017-08-22 11:51:54 -040046# copy deliverables to opt
Dan Timoney471dafa2017-08-21 14:44:05 -040047COPY opt /opt
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040048COPY org.ops4j.pax.logging.cfg /opt/opendaylight/etc/org.ops4j.pax.logging.cfg
Dan Timoney471dafa2017-08-21 14:44:05 -040049
Marcus G K Williamsdc299ed2017-09-14 15:15:45 -070050
Timoney, Dan (dt5972)e14a0202018-06-22 17:05:16 -040051ENTRYPOINT /opt/onap/ccsdk/bin/startODL.sh
Dan Timoney471dafa2017-08-21 14:44:05 -040052EXPOSE 8181