aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisaac <isaac.adorno@att.com>2022-10-07 11:40:28 -0500
committerisaac <isaac.adorno@att.com>2022-10-07 11:40:28 -0500
commit9c43054a7a85abf952e91f150070576330a69b8f (patch)
treea4d4ce3169d03315330e1114d37080f5b7a9532c
parent3681003052058b6a0577e4a693acb8d28bea7497 (diff)
Updating documentation for Docker components in XACML Custom Application Tutorial.
Issue-ID: POLICY-4316 Signed-off-by: isaac <isaac.adorno@att.com> Change-Id: I7d4befac48cbf251ad9b1bae6f1e60f4a5c3b393
-rw-r--r--docs/xacml/xacml-tutorial.rst23
1 files changed, 2 insertions, 21 deletions
diff --git a/docs/xacml/xacml-tutorial.rst b/docs/xacml/xacml-tutorial.rst
index 3226ad93..e2753353 100644
--- a/docs/xacml/xacml-tutorial.rst
+++ b/docs/xacml/xacml-tutorial.rst
@@ -377,25 +377,6 @@ Build the code and run the JUnit test. Its easiest to run it via a terminal comm
> mvn clean install
-Building Docker Image
-*********************
-To build a docker image that incorporates your application with the XACML PDP Engine. The XACML PDP Engine
-must be able to *find* your Java.Service in the classpath. This is easy to do, just create a jar file for your application
-and copy into the same directory used to startup the XACML PDP.
-
-Here is a Dockerfile as an example:
-
-.. code-block:: bash
- :caption: Dockerfile
- :linenos:
-
- FROM onap/policy-xacml-pdp
-
- ADD maven/${project.build.finalName}.jar /opt/app/policy/pdpx/lib/${project.build.finalName}.jar
-
- RUN mkdir -p /opt/app/policy/pdpx/apps/tutorial
-
- COPY --chown=policy:policy xacml.properties /opt/app/policy/pdpx/apps/tutorial
Download Tutorial Application Example
*************************************
@@ -404,9 +385,9 @@ If you clone the XACML-PDP repo, the tutorial is included for local testing with
`Tutorial code located in xacml-pdp repo <https://github.com/onap/policy-xacml-pdp/tree/master/tutorials/tutorial-xacml-application>`_
-There is an example Docker compose script that you can use to run the Policy Framework components locally and test the tutorial out.
+There are instructions on the repo to run the Policy Framework components locally and test the tutorial out using Docker.
-`Docker compose script <https://github.com/onap/policy-xacml-pdp/blob/master/tutorials/tutorial-xacml-application/src/main/docker/docker-compose.yml>`_
+`Docker Instructions <https://github.com/onap/policy-xacml-pdp/tree/master/tutorials/tutorial-xacml-application/src/main/docker>`_
In addition, there is a POSTMAN collection available for setting up and running tests against a
running instance of ONAP Policy Components (api, pap, dmaap-simulator, tutorial-xacml-pdp).