Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. SSH into rancher node (or NFS/rancher node in El Alto)
  2. sudo su
  3. kubectl get pods -n onap -o wide | grep sdnc
  4. Execute the following command to all sdnc POD's to update properties file
    1. kubectl exec -it dev-sdnc-sdnc-x bash (x=0, 1, 2, depending upon number of sdnc replicas in the setup)
  5. Once in the docker, edit the properties file (/opt/onap/ccsdk/data/properties/sdnr-oofpcipoc-api-dg.properties)
  6. Make following configuration changes per setup
    1. If you are using RAN simulator per below in the setup, and performing Netconf mount, update the following flag to true
      1. ransim-mounted=true
    2. If ConfigDB is deployed, update the following flag to true
      1. configdb-deployed=true
    3. Update IP address for ConfigDB (a.b.c.d below)
      1. configdb.url=http://a.b.c.d:8080/api/sdnc-config-db/v3

The following is a temporary fix for dmaap-listener library files, and please do the following :for the dmaap-listener docker:

  1. Execute the following command to all dmaap-listener POD's to copy relevant template map files
    1. kubectl exec -it -n onap dev-sdnc-sdnc-dmaap-listener-5b8d94959b-27mwf -- /bin/bash
  2. Once in the docker, create Create folder : /opt/app/dmaap-listener/lib/
  3. Copy following files to the above folder (/opt/app/dmaap-listener/lib/)
    1. cp /opt/onap/sdnc/dmaap-listener/lib/pci-changes-from-policy-to-sdnr.map /opt/app/dmaap-listener/lib/.

    2. cp /opt/onap/sdnc/dmaap-listener/lib/anr-changes-from-policy-to-sdnr.map /opt/app/dmaap-listener/lib/.

    3. cp /opt/onap/sdnc/dmaap-listener/lib/anr-pci-changes-from-policy-to-sdnr.vt /opt/app/dmaap-listener/lib/.

...