Versions Compared

Key

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

...

  • Enter the mso docker: docker exec -it testlab_mso_1 bash
  • Edit /etc/mso/config.d/mso.bpmn.urn.properties, find the following line
    mso.workflow.default.aai.v11.tenant.uri=/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/CloudOwner/DFW/tenants/tenant
    and change it to the following
    mso.workflow.default.aai.v11.tenant.uri=/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/CloudOwner/RegionOne/tenants/tenant
  • Exit from the docker

ssh to the SDNC VM in HEAT or the host node for pod sdnc-sdnc-0 in OOM, and do the following: (TODO: add route is different in OOM, how to do this in k8s networkthis step is to make sure SDNC can reach out BRG later for configuration)

  • Add a route in HEAT:  ip route add 10.3.0.0/24 via 10.0.101.10 dev eth0 
  • Add a route in OOM:  ip route add 10.3.0.0/24 via 10.0.101.10 dev ens3
  • Enter the sdnc controller docker
    • HEAT:  "docker exec -it sdnc_controller_container bash"
    • OOM: "kubectl -n onap exec itexec -it dev-sdnc-sdnc-0 bash"
  • In the container, run the following to create IP address pool: /opt/sdnc/bin/addIpAddresses.sh VGW 10.5.0 22 250

    • Can also remotely furn the addIpAddresses.sh run addIpAddresses.sh: kubectl -n onap exec -it dev-sdnc-sdnc-0 -- /opt/sdnc/bin/addIpAddresses.sh VGW 10.5.0 22 250
  • For healthcheck-k8s.py also install curl inside the sdnc container

...