Merge "Introducing the ComputeVdpa role"
This commit is contained in:
commit
0a60aad3aa
@ -0,0 +1,11 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
The libvirt driver has added support for hardware-offloaded OVS
|
||||
with vDPA (vhost Data Path Acceleration) type interfaces.
|
||||
vDPA allows virtio net interfaces to be presented to the guest while
|
||||
the datapath can be offloaded to a software or hardware implementation.
|
||||
This enables high performance networking with the portablity of standard
|
||||
virtio interfaces.
|
||||
|
||||
Nova added support for vhost-vdpa devices in Wallaby.
|
70
roles/ComputeVdpa.yaml
Normal file
70
roles/ComputeVdpa.yaml
Normal file
@ -0,0 +1,70 @@
|
||||
###############################################################################
|
||||
# Role: ComputeVdpa #
|
||||
###############################################################################
|
||||
- name: ComputeVdpa
|
||||
description: |
|
||||
Compute vDPA Role
|
||||
CountDefault: 1
|
||||
tags:
|
||||
- compute
|
||||
networks:
|
||||
InternalApi:
|
||||
subnet: internal_api_subnet
|
||||
Tenant:
|
||||
subnet: tenant_subnet
|
||||
Storage:
|
||||
subnet: storage_subnet
|
||||
RoleParametersDefault:
|
||||
TunedProfileName: "cpu-partitioning"
|
||||
OvsHwOffload: true
|
||||
ExtraKernelModules:
|
||||
vdpa: {}
|
||||
vhost_vdpa: {}
|
||||
mlx5_vdpa: {}
|
||||
update_serial: 25
|
||||
ServicesDefault:
|
||||
- OS::TripleO::Services::Aide
|
||||
- OS::TripleO::Services::AuditD
|
||||
- OS::TripleO::Services::BootParams
|
||||
- OS::TripleO::Services::CACerts
|
||||
- OS::TripleO::Services::CephClient
|
||||
- OS::TripleO::Services::CephExternal
|
||||
- OS::TripleO::Services::Collectd
|
||||
- OS::TripleO::Services::ComputeCeilometerAgent
|
||||
- OS::TripleO::Services::ComputeNeutronCorePlugin
|
||||
- OS::TripleO::Services::ComputeNeutronL3Agent
|
||||
- OS::TripleO::Services::ComputeNeutronMetadataAgent
|
||||
- OS::TripleO::Services::ComputeNeutronOvsAgent
|
||||
- OS::TripleO::Services::Frr
|
||||
- OS::TripleO::Services::IpaClient
|
||||
- OS::TripleO::Services::Ipsec
|
||||
- OS::TripleO::Services::Iscsid
|
||||
- OS::TripleO::Services::Kernel
|
||||
- OS::TripleO::Services::LoginDefs
|
||||
- OS::TripleO::Services::MetricsQdr
|
||||
- OS::TripleO::Services::Multipathd
|
||||
- OS::TripleO::Services::MySQLClient
|
||||
- OS::TripleO::Services::NeutronBgpVpnBagpipe
|
||||
- OS::TripleO::Services::NeutronSriovAgent
|
||||
- OS::TripleO::Services::NeutronVppAgent
|
||||
- OS::TripleO::Services::NovaAZConfig
|
||||
- OS::TripleO::Services::NovaCompute
|
||||
- OS::TripleO::Services::NovaLibvirt
|
||||
- OS::TripleO::Services::NovaLibvirtGuests
|
||||
- OS::TripleO::Services::NovaMigrationTarget
|
||||
- OS::TripleO::Services::ContainersLogrotateCrond
|
||||
- OS::TripleO::Services::Podman
|
||||
- OS::TripleO::Services::Rear
|
||||
- OS::TripleO::Services::Rhsm
|
||||
- OS::TripleO::Services::Rsyslog
|
||||
- OS::TripleO::Services::RsyslogSidecar
|
||||
- OS::TripleO::Services::Securetty
|
||||
- OS::TripleO::Services::Snmp
|
||||
- OS::TripleO::Services::Sshd
|
||||
- OS::TripleO::Services::Timesync
|
||||
- OS::TripleO::Services::Timezone
|
||||
- OS::TripleO::Services::TripleoFirewall
|
||||
- OS::TripleO::Services::TripleoPackages
|
||||
- OS::TripleO::Services::Vpp
|
||||
- OS::TripleO::Services::OVNController
|
||||
- OS::TripleO::Services::OVNMetadataAgent
|
@ -1144,12 +1144,12 @@ def validate(filename, param_map):
|
||||
|
||||
if filename.startswith('./roles/ControllerStorageDashboard.yaml'):
|
||||
retval |= validate_controller_dashboard(filename, tpl)
|
||||
|
||||
if filename.startswith('./roles/ComputeOvsDpdk.yaml') or \
|
||||
filename.startswith('./roles/ComputeSriov.yaml') or \
|
||||
filename.startswith('./roles/ComputeOvsDpdkRT.yaml') or \
|
||||
filename.startswith('./roles/ComputeSriovRT.yaml') or \
|
||||
filename.startswith('./roles/ComputeHCIOvsDpdk.yaml'):
|
||||
if filename in ['./roles/ComputeOvsDpdk.yaml',
|
||||
'./roles/ComputeSriov.yaml',
|
||||
'./roles/ComputeOvsDpdkRT.yaml',
|
||||
'./roles/ComputeSriovRT.yaml',
|
||||
'./roles/ComputeHCIOvsDpdk.yaml',
|
||||
'./roles/ComputeVdpa.yaml']:
|
||||
exclude = [
|
||||
'OS::TripleO::Services::OVNController',
|
||||
'OS::TripleO::Services::ComputeNeutronOvsAgent',
|
||||
|
Loading…
Reference in New Issue
Block a user