Versions Compared

Key

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

...

The values of these two parameters come from CST template which can be find on SDC page.

     

...


MSB Configuration

Register the interfaces so-orchestrationTasks and so-serviceInstances interface to MSB.

The config info as follow:

You can use postman or through the MSB Potal to register them.

https://{{you master server ip}}:30284/iui/microservices/default.html

Image Removed

Interface registration can be done through postman or portal.

Code Block
{
  "serviceName": "so-orchestrationTasks",
  "version": "v4",
  "url": "/onap/so/infra/orchestrationTasks/v4",
  "protocol": "REST",
  "port": "{{.Values.service.internalPort}}",
  "visualRange": "1",
  "enable_ssl": false
}, 
{
  "serviceName": "so-serviceInstances",
  "version": "v3",
  "url": "/onap/so/infra/e2eServiceInstances/v3",
  "protocol": "REST",
  "port": "{{.Values.service.internalPort}}",
  "visualRange": "1",
  "enable_ssl": false
}

Steps(Portal):

MSB URI: https://{{you master server ip}}:30284/iui/microservices/default.html

Image Added



Add instance:

Use cmd `kubectl get svc -n onap so` in you k8s master server

...