05a8746240b3ab0a41d30a7c0c8e02227158817b
[policy/xacml-pdp.git] / tutorials / tutorial-xacml-application / src / main / docker / README.md
1 # Running Docker XACML Tutorial
2
3 ## Building XACML Tutorial Docker Image
4
5  1. ```cd /policy-xacml-pdp/tutorials/tutorial-xacml-application```
6  2. ```mvn clean install -Dmaven.test.skip=true -DskipTests -DskipIntegrationTests -DskipUnitTests -Dcheckstyle.skip -P docker```
7
8 ## Running the Tutorial (Automatically)
9 ```./run-tutorial.sh```
10
11 ## Running the Tutorial (Manually)
12 ### Setting Up and Starting from policy/docker components
13
14  1. Clone ```https://git.onap.org/policy/docker/```
15  2. ```cd /docker/csit```
16  3. Run the following to set the containers location, project, branch, and version:
17         - ```export CONTAINER_LOCATION=nexus3.onap.org:10001/```
18         - ```export PROJECT=pap```
19         - ```export GERRIT_BRANCH=master```
20         - ```get-branch.sh```
21         - ```get-versions.sh```
22  4. Run ```docker image ls```
23         - Take note of the REPOSITORY ```onap/policy/xacml-tutorial``` and its ```TAG```
24         - This refers to the image from our mvn clean install from above
25  5. Edit ```docker-compose-all.sh```
26         - Replace xacml-pdp image with the format "REPOSITORY:TAG" as noted in Step 4
27                 - ex. image: ```onap/policy-xacml-tutorial:2.7.1-SNAPSHOT```
28
29 ### Running the Containers and Testing
30
31 Run ```docker-compose -f docker-compose-all.yml up xacml-pdp```
32
33
34 ## Verification Example Calls
35
36 Verify that the components are accessible:
37
38  1. ```curl -X POST http://0.0.0.0:3904/events/POLICY-PDP-PAP```
39         - Should return JSON similar to this: ```{"serverTimeMs":0,"count":0}```
40
41  2. ```curl -k -u 'healthcheck:zb!XztG34' 'https://0.0.0.0:6969/policy/pdpx/v1/healthcheck'```
42         - Should return JSON similar to this: ```{"name":"Policy Xacml PDP","url":"self","healthy":true,"code":200,"message":"alive"}```
43
44  3. ```curl -k -u 'healthcheck:zb!XztG34' 'https://0.0.0.0:6767/policy/api/v1/healthcheck'```
45         - Should return JSON similar to this: ```{"name": "Policy API","url": "policy-api","healthy": true,"code": 200,"message": "alive"}```
46
47  4. ```curl -k -u 'healthcheck:zb!XztG34' 'https://0.0.0.0:6868/policy/pap/v1/healthcheck'```
48         - Should return JSON similar to this: ```{"name": "Policy PAP","url": "policy-pap","healthy": true,"code": 200,"message": "alive"}```
49
50 ## POSTMAN Collection
51
52 You can find the collection under ```/policy-xacml-pdp/tutorials-tutorial-xacml-application/postman/```