Clone this repo:
  1. c4d7d61 [VOL-5407] Bump version to 0.4.0 by Eric Ball · 5 weeks ago master v0.4.0
  2. c2c5808 [VOL-5408]-Update versions of VOLTHA components for release by Mahir Gunyel · 6 weeks ago voltha-2.13 v2.13.0
  3. 0861d48 [VOL-5268] Release patch repo:bbsim-sadis-server (branch=master) by Joey Armstrong · 1 year, 1 month ago
  4. aadcaa4 Pre-release build for repo:bbsim-sadis-server by Joey Armstrong · 1 year, 1 month ago v2.12.0
  5. ee4d826 VOL-5160 - Repo triage build for release branching. by Joey Armstrong · 1 year, 6 months ago v0.3.5

BBSim Sadis Server

This project is designed to aggregate Sadis entries from multiple BBSim instances running on the same kubernetes cluster.

This tool assumes that:

  • The sadis service is exposed on the default port 50074
  • BBSim(s) are deployed with the default label app=bbsim

This component is part of the the VOLTHA project, more informations at: https://docs.voltha.org

Deploy

helm repo add onf https://charts.opencord.org
helm install bbsim-sadis-server onf/bbsim-sadis-server

Configure ONOS to use bbsim-sadis-server

Assuming that bbsim-sadis-server was installed in the default namespace, you can use this configuration to point ONOS to it:

{
  "sadis" : {
    "integration" : {
      "url" : "http://bbsim-sadis-server.default.svc:58080/subscribers/%s",
      "cache" : {
        "enabled" : true,
        "maxsize" : 50,
        "ttl" : "PT1m"
      }
    }
  },
  "bandwidthprofile" : {
    "integration" : {
      "url" : "http://bbsim-sadis-server.default.svc:58080/profiles/%s",
      "cache" : {
        "enabled" : true,
        "maxsize" : 50,
        "ttl" : "PT1m"
      }
    }
  }
}

For more inforation about the sadis application you can refer to: https://github.com/opencord/sadis