diff options
author | Feng Pan <fpan@redhat.com> | 2017-08-04 00:07:51 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2017-08-04 13:34:08 -0400 |
commit | 19f6d1fc158235166773ef2e3ba8728dc2cf4d71 (patch) | |
tree | daf9033219dd9398d50dd3812ee337e7e40ed457 /build | |
parent | b375c4bfb86367c039e0e1f7c507d086def8a790 (diff) |
Add support for nosdn-ovs-dpdk scenario
Change-Id: I31fca214b7d16cecc261137567fa7ecf63abfe04
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/opnfv-environment.yaml | 7 | ||||
-rw-r--r-- | build/ovs-dpdk-preconfig.yaml | 12 |
2 files changed, 10 insertions, 9 deletions
diff --git a/build/opnfv-environment.yaml b/build/opnfv-environment.yaml index 67cba9fc..0847d7d0 100644 --- a/build/opnfv-environment.yaml +++ b/build/opnfv-environment.yaml @@ -17,9 +17,10 @@ parameter_defaults: # # Kernel arguments, this value will be set to kernel arguments specified # # for compute nodes in deploy setting file. # ComputeKernelArgs: - # PmdCoreList: - # OvsDpdkCoreList: - # OvsDpdkSocketMemory: + # NeutronDpdkCoreList: + # HostCpusList: + # NeutronDpdkSocketMemory: + # NeutronDpdkMemoryChannels: # ControllerExtraConfig: # NovaComputeExtraConfig: ExtraConfig: diff --git a/build/ovs-dpdk-preconfig.yaml b/build/ovs-dpdk-preconfig.yaml index 91cd6e13..bfa0b174 100644 --- a/build/ovs-dpdk-preconfig.yaml +++ b/build/ovs-dpdk-preconfig.yaml @@ -7,16 +7,16 @@ description: > parameters: server: type: string - OvsDpdkCoreList: + HostCpusList: description: > List of logical cores for OVS DPDK type: string default: "" - OvsDpdkSocketMemory: + NeutronDpdkSocketMemory: description: Memory allocated for each socket default: "" type: string - PmdCoreList: + NeutronDpdkCoreList: description: > A list or range of physical CPU cores to be pinned to PMD The given args will be appended to the tuned cpu-partitioning profile. @@ -96,9 +96,9 @@ resources: systemctl restart openvswitch params: - $DPDK_CORES: {get_param: OvsDpdkCoreList} - $PMD_CORES: {get_param: PmdCoreList} - $SOCKET_MEMORY: {get_param: OvsDpdkSocketMemory} + $DPDK_CORES: {get_param: HostCpusList} + $PMD_CORES: {get_param: NeutronDpdkCoreList} + $SOCKET_MEMORY: {get_param: NeutronDpdkSocketMemory} outputs: deploy_stdout: description: Output of the extra dpdk ovs deployment |