[VOL-5268] Release patch repo:bbsim-sadis-server (branch=voltha-2.12)

VERSION
.gitreview
----------
 o Post release tag & branch patch for branch=voltha-2.12.
 o Bump version string to avoid conflicts:
   - branch=master  (X.{1+Y}.0)
   - branch=release (X.Y.{1+Z})
 o Update .gitreview (defaultpath=voltha-2.12), specify rebase/merge target.

Change-Id: I979d8e8b8203906aee92024de8d21023fe3509d0
2 files changed
tree: 547caa8d6fb43665bedc6d2f842bbe90a3be8462
  1. .gitignore
  2. .gitreview
  3. Makefile
  4. README.md
  5. VERSION
  6. build/
  7. cmd/
  8. config.mk
  9. deployments/
  10. go.mod
  11. go.sum
  12. internal/
  13. makefiles/
  14. vendor/
README.md

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