You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

To disable CPS-temporal notifications we need to have following properties configured as below :

Property

Description

Path from CPS root

NOTIFICATION_DATASPACE_FILTER_PATTERNS: NON-EXISTING-DATASPACE
  • Add / modify under services.cps-and-ncmp.environment section
docker-compose/docker-compose.yml
notification.enabled: 'true'
  • Add / modify under services.cps-and-ncmp.environment section.
  • Make sure to always enable it as it is used by CPS for Async/Internal communications.
docker-compose/docker-compose.yml

docker-compose.yml view : 

docker-compose
cps-and-ncmp:
  container_name: cps-and-ncmp
  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
  ports:
    - ${CPS_CORE_PORT:-8883}:8080
    - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
  environment:
    notification.enabled: 'true'
    NOTIFICATION_DATASPACE_FILTER_PATTERNS: NON-EXISTING-DATASPACE
  • No labels