diff options
author | Tim Rozet <trozet@redhat.com> | 2016-09-02 14:44:47 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-09-08 04:39:18 +0000 |
commit | 6256b4f00397a2a08ffd60e6314ffaa320648942 (patch) | |
tree | 8dfc433bb19b3c4804dd984fc063836b2e509e69 /lib/overcloud-deploy-functions.sh | |
parent | 83e3a718e26ca42465a03c7d70eb241e82e45e1e (diff) |
Fixes FDIO kernel settings
VPP was overriding kernel settings with its defaults for all deployments
by installing the VPP RPM. This removes that file, and sets the
settings appropriately for the FDIO scenarios only, based on number of
huge pages per profile.
JIRA: APEX-255
Change-Id: If39b220a7c34cbfd673afe1881c1a9bdb3fdc2e0
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'lib/overcloud-deploy-functions.sh')
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index 30fd5e66..53c7eef2 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -140,7 +140,7 @@ EOI # Push performance options to subscript to modify per-role images as needed for option in "${performance_options[@]}" ; do echo -e "${blue}Setting performance option $option${reset}" - ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "bash build_perf_image.sh $option" + ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "dataplane=${deploy_options_array['dataplane']} bash build_perf_image.sh $option" done # Build IPA kernel option ramdisks |