Bugzilla will be upgraded to version 5.0. The upgrade date is tentatively scheduled for 2 December 2018, pending final testing and feedback.
Bug 1426194 - unable to deploy compute node with sriov agent only (no ovs agent)
unable to deploy compute node with sriov agent only (no ovs agent)
Status: CLOSED ERRATA
Product: Red Hat OpenStack
Classification: Red Hat
Component: puppet-tripleo (Show other bugs)
10.0 (Newton)
Unspecified Unspecified
high Severity high
: ga
: 12.0 (Pike)
Assigned To: RHOS Maint
Itzik Brown
: Triaged
Depends On:
Blocks: 1402132 1414427 1528947
  Show dependency treegraph
 
Reported: 2017-02-23 07:09 EST by Alon Dotan
Modified: 2018-10-18 03:24 EDT (History)
19 users (show)

See Also:
Fixed In Version: puppet-tripleo-7.1.1-0.20170719150224.cb66aeb.el7ost
Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of:
Environment:
N/A
Last Closed: 2017-12-13 16:11:31 EST
Type: Bug
Regression: ---
Mount Type: ---
Documentation: ---
CRM:
Verified Versions:
Category: ---
oVirt Team: ---
RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: ---


Attachments (Terms of Use)


External Trackers
Tracker ID Priority Status Summary Last Updated
Launchpad 1679202 None None None 2017-04-03 11:11 EDT
OpenStack gerrit 452786 None None None 2017-04-03 11:12 EDT
Red Hat Product Errata RHEA-2017:3462 normal SHIPPED_LIVE Red Hat OpenStack Platform 12.0 Enhancement Advisory 2018-02-15 20:43:25 EST

  None (edit)
Description Alon Dotan 2017-02-23 07:09:19 EST
Description of problem:
unable to deploy compute node with sriov agent only (no ovs agent)

Version-Release number of selected component (if applicable):


How reproducible:
deploy overcloud with OS::TripleO::Services::ComputeNeutronOvsAgent: OS::Heat::None (like with opendaylight for example)

Steps to Reproduce:
1.
2.
3.

Actual results:
the sriov agent will failed to load

Expected results:


Additional info:
this is because of missing include in the sriov.pp

the code is:
class tripleo::profile::base::neutron::sriov(
  $step               = hiera('step'),
  $mechanism_drivers  = hiera('neutron::plugins::ml2::mechanism_drivers'),
) {

  if $step >= 4 {
    if 'sriovnicswitch' in $mechanism_drivers  {
      include ::neutron::agents::ml2::sriov
      include ::tripleo::host::sriov
    }
  }

}

which not including "::tripleo::profile::base::neutron" that responsible to configure neutron.conf which holds all the rabbit conf

to fix just modify to:
class tripleo::profile::base::neutron::sriov(
  $step               = hiera('step'),
  $mechanism_drivers  = hiera('neutron::plugins::ml2::mechanism_drivers'),
) {

  include ::tripleo::profile::base::neutron

  if $step >= 4 {
    if 'sriovnicswitch' in $mechanism_drivers  {
      include ::neutron::agents::ml2::sriov
      include ::tripleo::host::sriov
    }
  }
}
Comment 3 Vijay Chundury 2017-03-27 07:14:18 EDT
As mentioned this issue will be needed for ODL/SRIOV flows...
Nir, can this wait beyond OSP12 else request the ODL team to pick it up.
Comment 4 Nir Yechiel 2017-03-28 01:03:38 EDT
@Tim, looks like this issue may affect our ODL+SR-IOV use-case. Can you take a look for Pike?

Thanks,
Nir
Comment 10 errata-xmlrpc 2017-12-13 16:11:31 EST
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHEA-2017:3462

Note You need to log in before you can comment on or make changes to this bug.