diff options
author | Dan Timoney <dtimoney@att.com> | 2021-05-24 12:01:55 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-05-25 16:40:07 -0400 |
commit | 6b108a1ee9757373600688c7aeb7ee7c27f7f699 (patch) | |
tree | 06d8eb9ac83cf505f415e00f17fc244dc3d57924 /installation | |
parent | b56780b0b73738cbeeff7339f968d26ee41dd87f (diff) |
Add GRA CSIT tests
Added CSIT test cases for basic GENERIC-RESOURCE-API flow
Change-Id: Ic4f0b1bb5c59ca873e028089e77ab938deaa95f9
Issue-ID: SDNC-1546
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: 1e647188c6844f5fdef672feec05282b77cdbf87
Diffstat (limited to 'installation')
-rw-r--r-- | installation/sdnc/src/main/resources/sdnctl.dump | 5 | ||||
-rw-r--r-- | installation/src/main/properties/generic-resource-api-dg.properties | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/installation/sdnc/src/main/resources/sdnctl.dump b/installation/sdnc/src/main/resources/sdnctl.dump index 72fdc857..fd13d372 100644 --- a/installation/sdnc/src/main/resources/sdnctl.dump +++ b/installation/sdnc/src/main/resources/sdnctl.dump @@ -2640,6 +2640,9 @@ CREATE TABLE `VF_MODEL` ( `nf_role` varchar(255) DEFAULT NULL, `vendor` varchar(255) DEFAULT NULL, `vendor_version` varchar(255) DEFAULT NULL, + `sdnc_model_name` varchar(255) DEFAULT NULL, + `sdnc_model_version` varchar(255) DEFAULT NULL, + `sdnc_artifact_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`customization_uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2660,6 +2663,8 @@ CREATE TABLE `VF_MODULE_MODEL` ( `vf_module_type` varchar(255) DEFAULT NULL, `availability_zone_count` int(11) DEFAULT NULL, `ecomp_generated_vm_assignments` char(1) DEFAULT NULL, + `vf_customization_uuid` varchar(255) DEFAULT NULL, + `vf_module_label` varchar(255) DEFAULT NULL, PRIMARY KEY (`customization_uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; diff --git a/installation/src/main/properties/generic-resource-api-dg.properties b/installation/src/main/properties/generic-resource-api-dg.properties index 980a2819..b29d3c08 100644 --- a/installation/src/main/properties/generic-resource-api-dg.properties +++ b/installation/src/main/properties/generic-resource-api-dg.properties @@ -1,7 +1,7 @@ restapi.templateDir=/opt/onap/sdnc/restapi/templates controller.url=http://localhost:8181 controller.user=${ODL_USER} -controller.pwd=${ODL_HOST} +controller.pwd=${ODL_PASSWORD} honeycomb.url=http://{honeycomb-instance-ip}:8183 honeycomb.user=${HONEYCOMB_USER} honeycomb.pwd=${HONEYCOMB_PASSWORD} |