blob: c79e28b4b5f56455cac445b5c706f4361c732487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
resource_registry:
# Create the registry only for roles with the word "Compute" in it. Like ComputeOvsDpdk, ComputeSriov, etc.,
{%- for role in roles -%}
{% if "Compute" in role.name %}
OS::TripleO::{{role.name}}::PreNetworkConfig: ../extraconfig/pre_network/{{role.name.lower()}}-host_config_and_reboot.yaml
{%- endif -%}
{% endfor %}
#parameter_defaults:
# Sample parameters for Compute and ComputeOvsDpdk roles
#ComputeKernelArgs: ""
#ComputeTunedProfileName: ""
#ComputeHostCpuList: ""
#ComputeOvsDpdkKernelArgs: ""
#ComputeOvsDpdkTunedProfileName: ""
#ComputeOvsDpdkHostCpuList: ""
|