Bug 1259778

Summary: [Docs] [Director] defroute: no should be defroute: false in sample config
Product: Red Hat OpenStack Reporter: JF Bibeau <jean-francois.bibeau>
Component: documentationAssignee: Dan Macpherson <dmacpher>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: low Docs Contact:
Priority: medium    
Version: 7.0 (Kilo)CC: adahms, jean-francois.bibeau, yeylon
Target Milestone: y1Keywords: Documentation, ZStream
Target Release: 7.0 (Kilo)   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2015-10-12 04:18:11 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description JF Bibeau 2015-09-03 14:06:02 UTC
Description of problem:
Section: E.2. CONFIGURING ROUTES AND DEFAULT ROUTES

Located here: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/7/html/Director_Installation_and_Usage/sect-Configuring_Routes_and_Default_Routes.html

Sample config:
# No default route on the Provisioning network
- type: interface
  name: nic1
  use_dhcp: true
  defroute: no
# Instead use this DHCP infrastructure VLAN as the default route
- type: interface
  name: nic2
  use_dhcp: true

Should be:
# No default route on the Provisioning network
- type: interface
  name: nic1
  use_dhcp: true
  defroute: false
# Instead use this DHCP infrastructure VLAN as the default route
- type: interface
  name: nic2
  use_dhcp: true


(Note defroute: no  -> defroute: false)


As per Network Interface Parameters [1], defroute is a boolean.

[1] https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/7/html/Director_Installation_and_Usage/appe-Network_Interface_Parameters.html

Comment 3 Andrew Dahms 2015-09-08 00:53:28 UTC
Assigning to Dan for review.

Comment 4 Dan Macpherson 2015-09-18 04:28:25 UTC
Hi JF,

Am currently implementing a fix for this. Should be available within the next few days.

Thanks for the report.

- Dan

Comment 6 Dan Macpherson 2015-09-25 02:55:30 UTC
Hi JF,

This is now live on the portal:

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/7/html/Director_Installation_and_Usage/sect-Configuring_Routes_and_Default_Routes.html

Did you have any further changes required? If not, I'll close this bug.

Comment 7 JF Bibeau 2015-09-25 13:04:23 UTC
Perfect, that should do it! Thanks for the fix.