Merge "fixed cs profile trans to ss profile"
[so.git] / adapters / mso-catalog-db-adapter / src / main / resources / db / migration / V4.16__Add_Default_NeutronNetwork.sql
1 USE catalogdb;
2
3 INSERT INTO `heat_template` (`ARTIFACT_UUID`,`NAME`,`VERSION`,`BODY`,`TIMEOUT_MINUTES`,`DESCRIPTION`,`CREATION_TIMESTAMP`,`ARTIFACT_CHECKSUM`) VALUES
4 ('efee1d84-b8ec-11e7-abc4-cec278b6b50a','Generic NeutronNet','1','
5 heat_template_version: 2013-05-23
6 description: A simple Neutron network
7 parameters:
8  network_name:
9    type: string
10    description: Name of the Neutron Network
11    default: ONAP-NW1
12  shared:
13    type: boolean
14    description: Shared amongst tenants
15    default: False
16 outputs:
17   network_id:
18     description: Openstack network identifier
19     value: { get_resource: network }
20 resources:
21    network:
22      type: OS::Neutron::Net
23      properties:
24        name: { get_param: network_name }
25        shared: { get_param: shared }',10,'Generic Neutron Template','2017-10-26 14:44:00', 'MANUAL RECORD');
26
27
28
29 INSERT INTO `temp_network_heat_template_lookup` (`NETWORK_RESOURCE_MODEL_NAME`, `HEAT_TEMPLATE_ARTIFACT_UUID`,`AIC_VERSION_MIN` , `AIC_VERSION_MAX` ) 
30 VALUES ('Generic NeutronNet','efee1d84-b8ec-11e7-abc4-cec278b6b50a','2.0','3.0');
31