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 /environments | |
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 'environments')
-rw-r--r-- | environments/neutron-ovs-dpdk.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/environments/neutron-ovs-dpdk.yaml b/environments/neutron-ovs-dpdk.yaml new file mode 100644 index 00000000..004b8ac0 --- /dev/null +++ b/environments/neutron-ovs-dpdk.yaml @@ -0,0 +1,18 @@ +## A Heat environment that can be used to deploy DPDK with OVS +resource_registry: + OS::TripleO::Services::ComputeNeutronOvsAgent: ../puppet/services/neutron-ovs-dpdk-agent.yaml + +parameter_defaults: + ## NeutronDpdkCoreList and NeutronDpdkMemoryChannels are REQUIRED settings. + ## Attempting to deploy DPDK without appropriate values will cause deployment to fail or lead to unstable deployments. + #NeutronDpdkCoreList: "" + #NeutronDpdkMemoryChannels: "" + + NeutronDatapathType: "netdev" + NeutronVhostuserSocketDir: "/var/run/openvswitch" + + #NeutronDpdkSocketMemory: "" + #NeutronDpdkDriverType: "vfio-pci" + #NovaReservedHostMemory: 4096 + #NovaVcpuPinSet: "" + |