tripleo-heat-templates/plan-samples/plan-environment-derived-params.yaml
Jaganathan Palanisamy 9c82505cc2 Role specific derive parameters workflow parameter
Added 'hw_data_required' parameter with default value 'true'.
This parameter is used to identify whether role specific
derive parameters workflows needs to be invoked or not.
invokes role specific derive parameters if hw_data_required is
true, otherwise only common derive parameters will be invoked.

Change-Id: I9807dbd1cb71deb6a483f24d36db344b8a09c63e
2018-06-28 08:10:27 -04:00

42 lines
1.7 KiB
YAML

version: 1.0
name: overcloud
description: >
Default Deployment plan
template: overcloud.yaml
environments:
- path: overcloud-resource-registry-puppet.yaml
workflow_parameters:
tripleo.derive_params.v1.derive_parameters:
########### Role-Specific derive parameters ##############
# Introspection hardware data is mandatory for role-specific
# derive parameters. Role specific derive parameters workflows
# will be invoked if this parameter is true, otherwise only
# derive parameters common workflows will be invoked.
hw_data_required: true
######### DPDK Parameters #########
# Specifices the minimum number of CPU physical cores to be allocated for DPDK
# PMD threads. The actual allocation will be based on network config, if
# the a DPDK port is associated with a numa node, then this configuration
# will be used, else 1.
num_phy_cores_per_numa_node_for_pmd: 1
# Amount of memory to be configured as huge pages in percentage. Ouf the
# total available memory (excluding the NovaReservedHostMemory), the
# specified percentage of the remaining is configured as huge pages.
huge_page_allocation_percentage: 50
######### HCI Parameters #########
hci_profile: default
hci_profile_config:
default:
average_guest_memory_size_in_mb: 2048
average_guest_cpu_utilization_percentage: 50
many_small_vms:
average_guest_memory_size_in_mb: 1024
average_guest_cpu_utilization_percentage: 20
few_large_vms:
average_guest_memory_size_in_mb: 4096
average_guest_cpu_utilization_percentage: 80
nfv_default:
average_guest_memory_size_in_mb: 8192
average_guest_cpu_utilization_percentage: 90