diff options
author | 2025-01-22 20:40:10 +0100 | |
---|---|---|
committer | 2025-01-22 20:40:23 +0100 | |
commit | 110909a23b78884a58710d4d304ab51ef1233095 (patch) | |
tree | 4cb2df350238a9504cd8c193d6e2f92e14ba5164 /openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml | |
parent | 7529a63846644ae84d33b8c0588f24fb258f27d5 (diff) |
Chef removal changes for openecomp-be1.13.9
- Removal of Chef recipes in the module.
- Introduction of shell scripts in the module to replace some recipes.
- Generation of module configuration using Charts.
- Introduction of config files in integration tests to simulate files generated by Charts in the module.
Issue-ID: SDC-4698
Change-Id: I9bb68309d49899247a9cebe4142a568f5ee597f2
Signed-off-by: rohit.raj@t-systems.com <rohit.raj@t-systems.com>
Diffstat (limited to 'openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml')
-rw-r--r-- | openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml b/openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml new file mode 100644 index 0000000000..eb6962b95e --- /dev/null +++ b/openecomp-be/dist/sdc-onboard-backend-docker/artifacts/files/base_template.yaml @@ -0,0 +1,49 @@ + + +heat_template_version: 2013-05-23 + +description: Dummy base heat template + +############## +# # +# PARAMETERS # +# # +############## + +parameters: + vnf_name: + type: string + description: VNF_NAME + vnf_id: + type: string + label: VNF ID + description: The VNF ID is provided by ONAP + vf_module_id: + type: string + label: VF Module ID + description: The VF Module ID is provided by ONAP + +############# +# # +# RESOURCES # +# # +############# + +resources: + dummy: + type: OS::Heat::None + properties: + vnf_name: + get_param: vnf_name + vnf_id: + get_param: vnf_id + vf_module_id: + get_param: vf_module_id + + #SDC won't allow too dummy resource as it has to find 'topology_template' TOSCA equivalent in heat templates + dummy_base: + type: OS::Nova::Server + properties: + name: test + image: test + flavor: test
\ No newline at end of file |