Versions Compared

Key

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

...

  • Jira
    serverONAP JIRA
    serverId425b2b0a-557c-3c0c-b515-579789cceedb
    keySO-1257
  • Jira
    serverONAP JIRA
    serverId425b2b0a-557c-3c0c-b515-579789cceedb
    keySO-1254
  • https://jira.onap.org/browse/SO-1258

were released after the Casablanca release images were created.  In order to test the HPA functionality, the docker manifest of the ONAP installation should be updated.

See  https://onap.readthedocs.io/en/casablanca/submodules/integration.git/docs/#deploying-an-updated-docker-manifest for details on how to do this.

The specific Use the 1.3.5 version of the SO docker images and versions which need to be updated in the manifest are:

...

to get these fixes.

Known Issue:

https://jira.onap.org/browse/SO-1306

After deploying, with 1.3.5 images, there will still be a problem.  The 'homing_instances' table is not created in the SO database.  The workaround is to create it manually.

The SQL commands to do so are:

use catalogdb;

CREATE TABLE IF NOT EXISTS `homing_instances` (
`SERVICE_INSTANCE_ID` varchar(50) NOT NULL,
`CLOUD_OWNER` VARCHAR(200) NOT NULL,
`CLOUD_REGION_ID` VARCHAR(200) NOT NULL,
`OOF_DIRECTIVES` longtext NULL DEFAULT NULL,
PRIMARY KEY (`SERVICE_INSTANCE_ID`)
) ;