...
There is also Policy Management Service's own cert in the default truststore for mocking purposes and unit-testing (ApplicationTest.java).
The default keystoreThe default keystore, truststore truststore, and and application.yaml files can be overridden by mounting new files using the files can be overridden by mounting new files using the the docker "volumes" field of docker-compose or docker run command.
Assuming that the keystore, truststore, and application.yaml files are located in the same directory as docker-compose, the volumes field should have these entries:
volumes:
-
command for docker-compose or docker run command. Assuming that the keystore, truststore, and application.yaml files are located in the same directory as docker-compose,
the volumes field should have these entries:
Code Block | ||||
---|---|---|---|---|
| ||||
volumes: - ./new_keystore.jks:/opt/app/policy-agent/etc/cert/keystore.jks:ro |
...
- ./new_truststore.jks:/opt/app/policy-agent/etc/cert/truststore.jks:ro |
...
- ./new_application.yaml:/opt/app/policy-agent/config/application.yaml:ro |
The target paths in the container should not be modified.
Example docker run command for mounting new files (assuming they are located in the current directory):
Code Block | ||||
---|---|---|---|---|
| ||||
docker run -p 8081:8081 -p 8433:8433 --name=policy-agent-container --network=nonrtric-docker-net --volume "$PWD/new_keystore.jks:/opt/app/policy-agent/etc/cert/keystore.jks" --volume "$PWD/new_truststore.jks:/opt/app/policy-agent/etc/cert/truststore.jks" --volume "$PWD/new_application.yaml:/opt/app/policy-agent/config/application.yaml" onap/ccsdk-oran-a1policymanagementservice:1.2.2 |