summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml
diff options
context:
space:
mode:
authorAviZi <avi.ziv@amdocs.com>2017-06-09 02:39:56 +0300
committerAviZi <avi.ziv@amdocs.com>2017-06-09 02:39:56 +0300
commit280f8015d06af1f41a3ef12e8300801c7a5e0d54 (patch)
tree9c1d3978c04cd28068f02073038c936bb49ca9e0 /openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml
parentfd3821dad11780d33c5373d74c957c442489945e (diff)
[SDC-29] Amdocs OnBoard 1707 initial commit.
Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370 Signed-off-by: AviZi <avi.ziv@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml')
-rw-r--r--openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml95
1 files changed, 0 insertions, 95 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml b/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml
deleted file mode 100644
index f7678ed6b7..0000000000
--- a/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/heat_validator/one_nova_points_to_one_port/negative_test/input/hot-nimbus-psm_v1.0.yaml
+++ /dev/null
@@ -1,95 +0,0 @@
-heat_template_version: 2013-05-23
-
-description: heat template that creates PCRF Session Manager stack
-
-parameters:
- pcrf_psm_server_names:
- type: comma_delimited_list
- label: PCRF SM server names
- description: name of the PCRF SM instance
- pcrf_psm_image_name:
- type: string
- label: PCRF SM image name
- description: PCRF SM image name
- pcrf_psm_flavor_name:
- type: string
- label: PCRF SM flavor name
- description: flavor name of PCRF SM instance
- availabilityzone_name:
- type: string
- label: availabilityzone name
- description: availabilityzone name
- pcrf_cps_net_name:
- type: string
- label: CPS network name
- description: CPS network name
- pcrf_cps_net_ips:
- type: comma_delimited_list
- label: CPS network ips
- description: CPS network ips
- pcrf_cps_net_mask:
- type: string
- label: CPS network mask
- description: CPS network mask
- pcrf_security_group_name:
- type: string
- label: security group name
- description: the name of security group
- pcrf_vnf_id:
- type: string
- label: PCRF VNF Id
- description: PCRF VNF Id
- vnf_id:
- type: string
-
-resources:
- nova_server_2:
- type: OS::Nova::Server
- properties:
- pcrf_psm_server_name: { get_param: [pcrf_psm_server_names, 0] }
- image: { get_param: pcrf_psm_image_name }
- flavor: { get_param: pcrf_psm_flavor_name }
- availabilityzone_name: { get_param: availabilityzone_name }
- networks:
- - port: { get_resource: oam1_int_port }
- fixed_ip: 10.0.0.0
- floating_ip: 10.0.0.1
- network: 100_1000_0011
- port_extra_properties: {admin_state_up: true , allowed_address_pairs: 10}
- subnet: 10.0.0.2
- - port: { get_resource: oam1_mgmt_port }
- metadata:
- vnf_id: { get_param: vnf_id }
-
- nova_server_3:
- type: OS::Nova::Server
- properties:
- pcrf_psm_server_name: { get_param: [pcrf_psm_server_names, 0] }
- image: { get_param: pcrf_psm_image_name }
- flavor: { get_param: pcrf_psm_flavor_name }
- availabilityzone_name: { get_param: availabilityzone_name }
- networks:
- - port: { get_resource: oam1_int_port }
- fixed_ip: 10.0.0.0
- floating_ip: 10.0.0.1
- network: 100_1000_0011
- port_extra_properties: {admin_state_up: true , allowed_address_pairs: 10}
- subnet: 10.0.0.2
- metadata:
- vnf_id: { get_param: vnf_id }
-
- oam1_int_port:
- type: OS::Neutron::Port
- properties:
- network: {get_param: pcrf_psm_server_names}
- fixed_ips: [{"ip_address": {get_param: [pcrf_psm_image_name, 0]}}]
- security_groups: [{get_param: pcrf_psm_image_name}]
- replacement_policy: AUTO
-
- oam1_mgmt_port:
- type: OS::Neutron::Port
- properties:
- network: {get_param: pcrf_psm_server_names}
- fixed_ips: [{"ip_address": {get_param: [pcrf_psm_image_name, 0]}}]
- security_groups: [{get_param: pcrf_psm_image_name}]
- replacement_policy: AUTO \ No newline at end of file