X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=heat%2FONAP%2Fonap_openstack.yaml;h=2db9f8bacf1f0bce8941edf40045f11071c2e424;hb=refs%2Fheads%2Famsterdam;hp=27f532709da656c33f82c96c4797ad17eac283ce;hpb=37a126d19e2b213e5b79a2d985f84b6aedd1e3ac;p=demo.git diff --git a/heat/ONAP/onap_openstack.yaml b/heat/ONAP/onap_openstack.yaml index 27f53270..2db9f8ba 100644 --- a/heat/ONAP/onap_openstack.yaml +++ b/heat/ONAP/onap_openstack.yaml @@ -1,7 +1,7 @@ ########################################################################## # #==================LICENSE_START========================================== -# +# # # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. # @@ -39,7 +39,7 @@ parameters: # Parameters used across all ONAP components # # # ############################################## - + public_net_id: type: string description: The ID of the Public network for floating IP address allocation @@ -118,7 +118,7 @@ parameters: openstack_tenant_name: type: string - description: OpenStack tenant name (matching with the openstack_tenant_id) + description: OpenStack tenant name (matching with the openstack_tenant_id) openstack_username: type: string @@ -435,7 +435,7 @@ resources: port_range_min: 1 port_range_max: 65535 - + # ONAP management private network oam_onap: @@ -478,6 +478,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: dns_ip_addr }}] + security_groups: + - { get_resource: onap_sg } dns_floating_ip: type: OS::Neutron::FloatingIP @@ -563,6 +565,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aai1_ip_addr }}] + security_groups: + - { get_resource: onap_sg } aai1_floating_ip: type: OS::Neutron::FloatingIP @@ -580,7 +584,7 @@ resources: str_replace: template: base-aai-inst1 params: - base: { get_param: vm_base_name } + base: { get_param: vm_base_name } key_name: { get_resource: vm_key } networks: - port: { get_resource: aai1_private_port } @@ -633,6 +637,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aai2_ip_addr }}] + security_groups: + - { get_resource: onap_sg } aai2_floating_ip: type: OS::Neutron::FloatingIP @@ -649,7 +655,7 @@ resources: str_replace: template: base-aai-inst2 params: - base: { get_param: vm_base_name } + base: { get_param: vm_base_name } key_name: { get_resource: vm_key } networks: - port: { get_resource: aai2_private_port } @@ -701,6 +707,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: so_ip_addr }}] + security_groups: + - { get_resource: onap_sg } so_floating_ip: type: OS::Neutron::FloatingIP @@ -717,7 +725,7 @@ resources: str_replace: template: base-so params: - base: { get_param: vm_base_name } + base: { get_param: vm_base_name } key_name: { get_resource: vm_key } networks: - port: { get_resource: so_private_port } @@ -780,6 +788,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: mr_ip_addr }}] + security_groups: + - { get_resource: onap_sg } mrouter_floating_ip: type: OS::Neutron::FloatingIP @@ -793,7 +803,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_large } name: - str_replace: + str_replace: template: base-message-router params: base: { get_param: vm_base_name } @@ -843,20 +853,22 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: robot_ip_addr }}] + security_groups: + - { get_resource: onap_sg } robot_floating_ip: type: OS::Neutron::FloatingIP properties: floating_network_id: { get_param: public_net_id } port_id: { get_resource: robot_private_port } - + robot_vm: type: OS::Nova::Server properties: image: { get_param: ubuntu_1604_image } flavor: { get_param: flavor_medium } name: - str_replace: + str_replace: template: base-robot params: base: { get_param: vm_base_name } @@ -878,7 +890,7 @@ resources: __artifacts_version__: { get_param: artifacts_version } __openstack_region__: { get_param: openstack_region } __dns_ip_addr__: { get_param: dns_ip_addr } - __gerrit_branch__: { get_param: mr_branch } + __gerrit_branch__: { get_param: robot_branch } __cloud_env__: { get_param: cloud_env } __keystone_url__: { get_param: keystone_url } __aai1_ip_addr__: { get_param: aai1_ip_addr } @@ -895,7 +907,8 @@ resources: __clamp_ip_addr__: { get_param: clamp_ip_addr } __openo_ip_addr__: { get_param: openo_ip_addr } __external_dns__: { get_param: external_dns } - __vm_image_name__: { get_param: ubuntu_1404_image } + __ubuntu_1404_image__: { get_param: ubuntu_1404_image } + __ubuntu_1604_image__: { get_param: ubuntu_1604_image } __vm_flavor__: { get_param: flavor_medium } __public_net_id__: { get_param: public_net_id } __script_version__: { get_param: artifacts_version } @@ -935,7 +948,8 @@ resources: echo "__openo_ip_addr__" > /opt/config/openo_ip_addr.txt echo "__cloud_env__" > /opt/config/cloud_env.txt echo "__external_dns__" > /opt/config/external_dns.txt - echo "__vm_image_name__" > /opt/config/vm_image_name.txt + echo "__ubuntu_1404_image__" > /opt/config/ubuntu_1404_image.txt + echo "__ubuntu_1604_image__" > /opt/config/ubuntu_1604_image.txt echo "__vm_flavor__" > /opt/config/vm_flavor.txt echo "__script_version__" > /opt/config/script_version.txt echo "__public_net_id__" > /opt/config/public_net_id.txt @@ -954,6 +968,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: vid_ip_addr }}] + security_groups: + - { get_resource: onap_sg } vid_floating_ip: type: OS::Neutron::FloatingIP @@ -967,7 +983,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_medium } name: - str_replace: + str_replace: template: base-vid params: base: { get_param: vm_base_name } @@ -1012,13 +1028,15 @@ resources: chmod +x vid_install.sh ./vid_install.sh - + # SDN-C instantiation sdnc_private_port: type: OS::Neutron::Port properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdnc_ip_addr }}] + security_groups: + - { get_resource: onap_sg } sdnc_floating_ip: type: OS::Neutron::FloatingIP @@ -1032,7 +1050,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_large } name: - str_replace: + str_replace: template: base-sdnc params: base: { get_param: vm_base_name } @@ -1086,6 +1104,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdc_ip_addr }}] + security_groups: + - { get_resource: onap_sg } sdc_floating_ip: type: OS::Neutron::FloatingIP @@ -1105,7 +1125,7 @@ resources: image: { get_param: ubuntu_1604_image } flavor: { get_param: flavor_xlarge } name: - str_replace: + str_replace: template: base-sdc params: base: { get_param: vm_base_name } @@ -1166,6 +1186,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: portal_ip_addr }}] + security_groups: + - { get_resource: onap_sg } portal_floating_ip: type: OS::Neutron::FloatingIP @@ -1179,7 +1201,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_large } name: - str_replace: + str_replace: template: base-portal params: base: { get_param: vm_base_name } @@ -1235,6 +1257,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: policy_ip_addr }}] + security_groups: + - { get_resource: onap_sg } policy_floating_ip: type: OS::Neutron::FloatingIP @@ -1248,7 +1272,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_xlarge } name: - str_replace: + str_replace: template: base-policy params: base: { get_param: vm_base_name } @@ -1302,6 +1326,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: appc_ip_addr }}] + security_groups: + - { get_resource: onap_sg } appc_floating_ip: type: OS::Neutron::FloatingIP @@ -1315,7 +1341,7 @@ resources: image: { get_param: ubuntu_1404_image } flavor: { get_param: flavor_large } name: - str_replace: + str_replace: template: base-appc params: base: { get_param: vm_base_name } @@ -1371,6 +1397,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: clamp_ip_addr }}] + security_groups: + - { get_resource: onap_sg } clamp_floating_ip: type: OS::Neutron::FloatingIP @@ -1387,7 +1415,7 @@ resources: str_replace: template: base-clamp params: - base: { get_param: vm_base_name } + base: { get_param: vm_base_name } key_name: { get_resource: vm_key } networks: - port: { get_resource: clamp_private_port } @@ -1448,6 +1476,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: openo_ip_addr }}] + security_groups: + - { get_resource: onap_sg } openo_floating_ip: type: OS::Neutron::FloatingIP @@ -1582,6 +1612,8 @@ resources: properties: network: { get_resource: oam_onap } fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: dcae_ip_addr }}] + security_groups: + - { get_resource: onap_sg } dcae_c_floating_ip: type: OS::Neutron::FloatingIP @@ -1632,10 +1664,10 @@ resources: __dcaeos_region__: { get_param: openstack_region } __dcaeos_tenant_id__: { get_param: openstack_tenant_id } __dcaeos_tenant_name__: { get_param: openstack_tenant_name } - __dcaeos_security_group__: - str_replace: + __dcaeos_security_group__: + str_replace: template: 'onap_sg_rand' - params: + params: rand: { get_resource: random-str } #__dcaeos_security_group__: { get_attr: [onap_sg, name] } __dcaeos_username__: { get_param: openstack_username } @@ -1647,8 +1679,8 @@ resources: __dcaeos_public_network_name__: { get_param: public_net_name } __dcaeos_ubuntu_1604_image__: { get_param: ubuntu_1604_image } __dcaeos_centos_7_image__: { get_param: dcae_centos_7_image } - __dcaeos_flavor_id__: { get_param: flavor_xlarge } - __dcaeos_flavor_id_cdap__: { get_param: flavor_xlarge } + __dcaeos_flavor_id__: { get_param: flavor_medium } + __dcaeos_flavor_id_cdap__: { get_param: flavor_large } __dcaeos_dnsaas_config_enabled__: { get_param: dnsaas_config_enabled } __dcaeos_dnsaas_region__: { get_param: dnsaas_region } __dcaeos_dnsaas_keystone_url__: { get_param: dnsaas_keystone_url } @@ -1693,7 +1725,7 @@ resources: echo "__dcae_float_ip__" > /opt/config/dcae_float_ip.txt echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt echo "__external_dns__" > /opt/config/external_dns.txt - echo "__dns_forwarder__" > /opt/config/dns_forwarder.txt + echo "__dns_forwarder__" > /opt/config/dns_forwarder.txt echo "__dcae_domain__" > /opt/config/dcae_domain.txt # conf for the OpenStack env where DCAE is deployed echo "__openstack_keystone_url__" > /opt/config/openstack_keystone_url.txt