d1fea280f4
This change combines the previous puppet and docker files into a single file that performs the docker service installation and configuration for the neutron-metadata, neutron-ovs-agent, and neutron-ovs-dpdk-agent. With this patch the baremetal version of each respective neutron service has been removed. Related-Blueprint: services-yaml-flattening Change-Id: I7a918e72ce4bfd06a95d7a575603a6fb65ded5a9
44 lines
3.4 KiB
YAML
44 lines
3.4 KiB
YAML
# *************************************************************************************
|
|
# DEPRECATED: Use tripleo-heat-templates/environments/services/neutron-ovs-dpdk.yaml
|
|
# instead. Both files has the same configurations.
|
|
# *************************************************************************************
|
|
# A Heat environment that can be used to deploy DPDK with OVS
|
|
# Deploying DPDK requires enabling hugepages for the overcloud nodes
|
|
resource_registry:
|
|
OS::TripleO::Services::ComputeNeutronOvsDpdk: ../deployment/neutron/neutron-ovs-dpdk-agent-container-puppet.yaml
|
|
|
|
parameter_defaults:
|
|
NeutronDatapathType: "netdev"
|
|
NeutronVhostuserSocketDir: "/var/lib/vhost_sockets"
|
|
NovaSchedulerDefaultFilters: "ComputeFilter,AvailabilityZoneFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,NUMATopologyFilter"
|
|
OvsDpdkDriverType: "vfio-pci"
|
|
|
|
#ComputeOvsDpdkParameters:
|
|
## Host configuration Parameters
|
|
#TunedProfileName: "cpu-partitioning"
|
|
#IsolCpusList: "" # Logical CPUs list to be isolated from the host process (applied via cpu-partitioning tuned).
|
|
# It is mandatory to provide isolated cpus for tuned to achive optimal performance.
|
|
# Example: "3-8,12-15,18"
|
|
#KernelArgs: "" # Space separated kernel args to configure hugepage and IOMMU.
|
|
# Deploying DPDK requires enabling hugepages for the overcloud compute nodes.
|
|
# It also requires enabling IOMMU when using the VFIO (vfio-pci) OvsDpdkDriverType.
|
|
# This should be done by configuring parameters via host-config-and-reboot.yaml environment file.
|
|
|
|
## Attempting to deploy DPDK without appropriate values for the below parameters may lead to unstable deployments
|
|
## due to CPU contention of DPDK PMD threads.
|
|
## It is highly recommended to to enable isolcpus (via KernelArgs) on compute overcloud nodes and set the following parameters:
|
|
#OvsDpdkSocketMemory: "" # Sets the amount of hugepage memory to assign per NUMA node.
|
|
# It is recommended to use the socket closest to the PCIe slot used for the
|
|
# desired DPDK NIC. Format should be comma separated per socket string such as:
|
|
# "<socket 0 mem MB>,<socket 1 mem MB>", for example: "1024,0".
|
|
#OvsPmdCoreList: "" # List or range of CPU cores for PMD threads to be pinned to. Note, NIC
|
|
# location to cores on socket, number of hyper-threaded logical cores, and
|
|
# desired number of PMD threads can all play a role in configuring this setting.
|
|
# These cores should be on the same socket where OvsDpdkSocketMemory is assigned.
|
|
# If using hyperthreading then specify both logical cores that would equal the
|
|
# physical core. Also, specifying more than one core will trigger multiple PMD
|
|
# threads to be spawned, which may improve dataplane performance.
|
|
#NovaVcpuPinSet: "" # Cores to pin Nova instances to. For maximum performance, select cores
|
|
# on the same NUMA node(s) selected for previous settings.
|
|
#NumDpdkInterfaceRxQueues: 1
|