Merge "Install rados and rbd python3 libs on Ubuntu"

This commit is contained in:
Zuul 2019-02-13 14:20:41 +00:00 committed by Gerrit Code Review
commit 07790b398c
1 changed files with 9 additions and 0 deletions

View File

@ -143,5 +143,14 @@ class openstack_integration::repos {
ensure => 'present',
}
Apt::Source<||> -> Package['python-keystonemiddleware']
# TODO(tobias-urdin): Something changed in packages that was installed in puppet-nova
# on Ubuntu so the rbd and rados python libs are not installed anymore.
# Need to figure out a good place to add them back in, until then just testing with this.
ensure_packages(['python3-rados', 'python3-rbd'], {
'ensure' => 'present',
'tag' => 'nova-python3-libs',
})
Apt::Source<||> -> Package<| tag == 'nova-python3-libs' |>
}
}