Merge "Fix RoleParameters in tuned-baremetal-ansible.yaml" into stable/train

This commit is contained in:
Zuul 2021-05-21 08:02:45 +00:00 committed by Gerrit Code Review
commit bc6374170d
1 changed files with 17 additions and 2 deletions

View File

@ -48,6 +48,21 @@ parameters:
tags: tags:
- role_specific - role_specific
resources:
RoleParametersValue:
type: OS::Heat::Value
properties:
type: json
value:
map_replace:
- map_replace:
- tuned_profile: TunedProfileName
tuned_custom_profile: TunedCustomProfile
- values: {get_param: [RoleParameters]}
- values:
TunedProfileName: {get_param: TunedProfileName}
TunedCustomProfile: {get_param: TunedCustomProfile}
outputs: outputs:
role_data: role_data:
description: Role data for tuned description: Role data for tuned
@ -57,5 +72,5 @@ outputs:
- include_role: - include_role:
name: tuned name: tuned
ansible_group_vars: ansible_group_vars:
tuned_profile: {get_param: TunedProfileName} tuned_profile: {get_attr: [RoleParametersValue, value, tuned_profile]}
tuned_custom_profile: {get_param: TunedCustomProfile} tuned_custom_profile: {get_attr: [RoleParametersValue, value, tuned_custom_profile]}