From 280f8015d06af1f41a3ef12e8300801c7a5e0d54 Mon Sep 17 00:00:00 2001 From: AviZi Date: Fri, 9 Jun 2017 02:39:56 +0300 Subject: [SDC-29] Amdocs OnBoard 1707 initial commit. Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370 Signed-off-by: AviZi --- .../inputfiles/nested_app_server.yaml | 137 +++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/getAttr/getAttrUnsupportedResource/inputfiles/nested_app_server.yaml (limited to 'openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/getAttr/getAttrUnsupportedResource/inputfiles/nested_app_server.yaml') diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/getAttr/getAttrUnsupportedResource/inputfiles/nested_app_server.yaml b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/getAttr/getAttrUnsupportedResource/inputfiles/nested_app_server.yaml new file mode 100644 index 0000000000..c4f3fdb170 --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/getAttr/getAttrUnsupportedResource/inputfiles/nested_app_server.yaml @@ -0,0 +1,137 @@ +heat_template_version: 2015-04-30 + +description: Pronghorn Openstack Heat Template for the Application Server + +parameters: + ### + # server group and index + ### + server_group_id: + label: Server Group ID + description: ID of the server group + type: string + deploy_timeout: + label: Deployment Timeout + description: Timeout before declaring the stack deployment as failed. + type: number + constraints: + - range: { min: 60, max: 3600 } + + ### + # vnf info + ### + vnf_id: + label: VNF ID + description: Unique ID for this VF instance + type: string + vf_module_id: + label: VF Module ID + description: Unique ID for this VF Module instance + type: string + vm_role: + label: App VM Role + description: VM Role for the application vms + type: string + + ### + # availability zone + ### + availability_zone_0: + label: Availability Zone + description: Name of the availability zone for this server + type: string + + ### + # application server networks, ips and hostnames + ### + app_name: + label: Application Hostnames + description: Hostnames of the application servers + type: string + oam_net_name: + label: OAM Network Name + description: Name of the oam network + type: string + app_oam_ip_0: + label: OAM IP Addresses + description: OAM IP Addresses of the application servers + type: string + + ### + # application common server info (flavor, image, keypair) + ### + app_flavor_name: + label: Flavor + description: Flavor to be used for the server + type: string + app_image_name: + label: Image + description: Image to be used for the server + type: string + keypair_id: + label: Key Name + description: Name of the security key for the server + type: string + + ### + # security groups + ### + security_group_ids: + label: Security Group IDs + description: IDs of the security groups for the server + type: comma_delimited_list + + +resources: + ### + # software deployment wait conditions + ### + wait_condition: + type: OS::Heat::WaitCondition + properties: + handle: { get_resource: wait_handle } + timeout: { get_param: deploy_timeout } + + wait_handle: + type: OS::Heat::WaitConditionHandle + + ### + # create the application server + ### + app_server_0: + type: OS::Nova::Server + properties: + name: { get_attr: [wait_condition, att1] } + availability_zone: { get_param: availability_zone_0 } + scheduler_hints: + group: { get_param: server_group_id } + key_name: { get_param: keypair_id } + flavor: { get_param: app_flavor_name } + image: { get_param: app_image_name } + security_groups: { get_param: security_group_ids } + metadata: + vnf_id: { get_param: vnf_id } + vf_module_id: { get_param: vf_module_id } + vm_role: { get_param: vm_role } + networks: + - network: { get_param: oam_net_name } + fixed_ip: { get_param: app_oam_ip_0 } + user_data_format: RAW + user_data: + str_replace: + params: + wc_notify: { get_attr: ['wait_handle', 'curl_cli'] } + template: | + #!/bin/bash + ROOT_PW="dan1tom2" + ( + echo "$ROOT_PW" + echo "$ROOT_PW" + ) | passwd --stdin root + wc_notify --data-binary '{"status":"SUCCESS"}' + + +outputs: + ### + # No outputs as the base_pronghorn is the only VNF component + ### -- cgit 1.2.3-korg