diff options
author | Rob Daugherty <rd472p@att.com> | 2018-10-01 18:05:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-01 18:05:03 +0000 |
commit | 2de9390da2b1e792daefeb46fb0a178be96206f0 (patch) | |
tree | 788ab9d7b3c7a78819b4862c2c265354529c5e28 | |
parent | e99bae0b520e411d4f21fdcc970dffeedcfa7e0c (diff) | |
parent | eed24056ae01d100fb6fb37a83d35948e512b989 (diff) |
Merge "Updated Reference data for AutoScaleOut"
-rw-r--r-- | adapters/mso-catalog-db-adapter/src/main/resources/db/migration/V4.12__UpdateAutoScaleOutRefData.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/adapters/mso-catalog-db-adapter/src/main/resources/db/migration/V4.12__UpdateAutoScaleOutRefData.sql b/adapters/mso-catalog-db-adapter/src/main/resources/db/migration/V4.12__UpdateAutoScaleOutRefData.sql new file mode 100644 index 0000000000..5e60f23965 --- /dev/null +++ b/adapters/mso-catalog-db-adapter/src/main/resources/db/migration/V4.12__UpdateAutoScaleOutRefData.sql @@ -0,0 +1,7 @@ +USE catalogdb; + +update building_block_detail set resource_type='CUSTOM', target_action='CUSTOM' where BUILDING_BLOCK_NAME = 'ConfigurationScaleOutBB'; + +update building_block_detail set resource_type='CUSTOM', target_action='CUSTOM' where BUILDING_BLOCK_NAME = 'GenericVnfHealthCheckBB'; + +update northbound_request_ref_lookup set ACTION='scaleOut' where MACRO_ACTION='VFModule-ScaleOut'; |