ubuntu: re-enable barbican

Change-Id: Id6e14249bb8174a67f7435467fd9d3224fb22137
This commit is contained in:
Emilien Macchi 2016-12-01 07:58:07 -05:00
parent d994b2e28e
commit 25f4a650c6

View File

@ -17,15 +17,11 @@
case $::osfamily {
'Debian': {
$ipv6 = false
# we'll start testing barbican after Newton stable, Ubuntu packaging is not
# updated enough.
$barbican_enabled = false
# ec2api is not packaged on Ubuntu Trusty
# ec2api is not packaged on UCA
$ec2api_enabled = false
}
'RedHat': {
$ipv6 = true
$barbican_enabled = true
$ec2api_enabled = true
}
default: {
@ -61,17 +57,15 @@ include ::openstack_integration::mongodb
include ::openstack_integration::provision
class { '::openstack_integration::nova':
volume_encryption => $barbican_enabled,
volume_encryption => true,
}
class { '::openstack_integration::cinder':
volume_encryption => $barbican_enabled,
volume_encryption => true,
cinder_backup => 'swift',
}
if $barbican_enabled {
include ::openstack_integration::barbican
}
if $ec2api_enabled {
include ::openstack_integration::ec2api
@ -83,6 +77,6 @@ class { '::openstack_integration::tempest':
swift => true,
ironic => true,
zaqar => true,
attach_encrypted_volume => $barbican_enabled,
attach_encrypted_volume => true,
ec2api => $ec2api_enabled,
}