Add option to disable "d1" Swift device

A default TripleO installation uses a local directory named "d1" to be
used by Swift. With SwiftRawDisks set it is highly unlikely that that an
operator wants to use this any longer, because it affects system
perforamce and might result in an overfilled the system disk. In this
case d1 should be no longer when building rings.

This patch makes it possible to disable the d1 device usage in the ring
building process by using a new option "SwiftUseLocalDir". This is set
by default to true, not changing the default behavior. If set to false,
the d1 device won't be used when building rings.

Closes-Bug: 1634051
Change-Id: Ia9ad38e3ffa533e170f4cedd0518d830e9b2fa69
This commit is contained in:
Christian Schwede 2016-10-27 16:54:35 +02:00
parent e60c5377fb
commit 813b3dc4fc
1 changed files with 5 additions and 2 deletions

View File

@ -38,7 +38,10 @@ parameters:
default: {} default: {}
description: 'A hash of additional raw devices to use as Swift backend (eg. {sdb: {}})' description: 'A hash of additional raw devices to use as Swift backend (eg. {sdb: {}})'
type: json type: json
SwiftUseLocalDir:
default: true
description: 'Use a local directory for Swift storage services when building rings'
type: boolean
outputs: outputs:
role_data: role_data:
@ -56,7 +59,7 @@ outputs:
expression: $.data.raw_disk_lists.flatten() expression: $.data.raw_disk_lists.flatten()
data: data:
raw_disk_lists: raw_disk_lists:
- [':%PORT%/d1'] - {if: [{get_param: SwiftUseLocalDir}, [':%PORT%/d1'], []]}
- repeat: - repeat:
template: ':%PORT%/DEVICE' template: ':%PORT%/DEVICE'
for_each: for_each: