Table of Contents |
---|
...
To support this interface, the service component should include a script within the container and specify that in component spec
Component spec -
"auxilary": {
...
"policy":
...
{ "trigger_type": "docker",
...
"script_path": "/opt/app/reconfigure.sh"
...
} }
The corresponding blueprint should include following (To be added)
docker_config:
policy:
script_path: /opt/app/mean/reconfigure.sh
trigger_type: docker
This script must have necessary logic to invoke CBS API and cascade the information for application processing. For components not expecting dynamic changes, this step is optional.
...
Once the components meet all above criteria, the component will be included in the DCAE bootstrap process to enable deployment during ONAP/DCAE instantiation (this step is optional if component will be deployed through CLAMP).
Useful Links
JJB - https://wiki.onap.org/display/DW/Using+Standard+Jenkins+Job+%28JJB%29+Templates
CSIT - Creating a CSIT Test
...