diff options
author | Saravanan KR <skramaja@redhat.com> | 2016-08-26 16:22:53 +0530 |
---|---|---|
committer | Karthik S <ksundara@redhat.com> | 2016-08-30 08:49:05 +0530 |
commit | 1b604a95e91d94e31eba93bce2c57e723780635b (patch) | |
tree | 4a4ec205cf0cafce0bcdfee6470518916d7c176d /puppet/services | |
parent | 09a5ff6c795e3fdbf54bb129c260a0fa0c72013f (diff) |
Added DPDK environment file and nic configs samples
Added an environment file to configure DPDK with OVS
by overriding ComputeNeutronOvsAgent. Also added nic
configs for configuring DPDK bridge and bond with
numbered nic format.
Implements: blueprint tripleo-ovs-dpdk
Co-Authored-By: Vijay Chundury <vchundur@redhat.com>
Change-Id: I82b6f66394a8928f8524706c939508edd08afa9b
Diffstat (limited to 'puppet/services')
-rw-r--r-- | puppet/services/neutron-ovs-dpdk-agent.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/puppet/services/neutron-ovs-dpdk-agent.yaml b/puppet/services/neutron-ovs-dpdk-agent.yaml index 1f1e14ab..8ee98a3d 100644 --- a/puppet/services/neutron-ovs-dpdk-agent.yaml +++ b/puppet/services/neutron-ovs-dpdk-agent.yaml @@ -19,13 +19,15 @@ parameters: via parameter_defaults in the resource registry. type: json NeutronDpdkCoreList: - default: "" description: List of cores to be used for DPDK Poll Mode Driver type: string + constraints: + - allowed_pattern: "[0-9,-]+" NeutronDpdkMemoryChannels: - default: "" description: Number of memory channels to be used for DPDK type: string + constraints: + - allowed_pattern: "[0-9]+" NeutronDpdkSocketMemory: default: "" description: Memory allocated for each socket |