diff options
author | Feng Pan <fpan@redhat.com> | 2016-08-11 09:47:27 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2016-08-11 09:47:27 -0400 |
commit | 6e103b96659cb133f222f8caf7c194568945ac88 (patch) | |
tree | 03cc75a15eff4874d2d2935e206d2ad09291520e /lib | |
parent | 1900c3825ef9163b721cda7c117c18a42aa84fb9 (diff) |
Fix VPP deploy failures
- Move deploy option parsing to before network settings parsing,
as performance options are needed during networking setting
parsing.
- Fix numa fdio_enabled option setting
- Add numa to controller hiera hierarchy in tht
opnfv-tht-pr: 53
Change-Id: I0a87c557c8bf653d5a86eccdbb3172733c06716a
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'lib')
-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 2d352321..ef07ec0a 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -93,7 +93,7 @@ EOF -a overcloud-full.qcow2 if [ "${deploy_options_array['dataplane']}" == 'fdio' ]; then - sed -i '/FdioEnabled:/c\ FdioEnabled: true' opnfv-environment.yaml + sudo sed -i '/FdioEnabled:/c\ FdioEnabled: true' /usr/share/openstack-tripleo-heat-templates/environments/numa.yaml else LIBGUESTFS_BACKEND=direct virt-customize --run-command "yum install -y /root/dpdk_rpms/*" \ -a overcloud-full.qcow2 |