Set Murano package_service backend as glare

Murano option package_service now should be set to 'glare' because 'glance'
is deprecated and will not be used in future.

Change-Id: I73f6053710c64f7e34905a2ced984d3b47c7337a
Closes-bug: #1630209
This commit is contained in:
Denis Egorenko 2016-10-04 15:28:52 +03:00
parent 800aae5515
commit fdf6cd5ea1
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ class openstack_tasks::murano::murano {
# we can remove the os_package_type once UCA provides the package
# TODO(aschultz): switch to dig at some point
if $murano_plugins and $murano_plugins['glance_artifacts_plugin'] and $murano_plugins['glance_artifacts_plugin']['enabled'] and ($::os_package_type == 'debian') {
$packages_service = 'glance'
$packages_service = 'glare'
$enable_glare = true
package {'murano-glance-artifacts-plugin':

View File

@ -133,7 +133,7 @@ describe manifest do
end
let(:packages_service) do
if murano_glance_artifacts_plugin and murano_glance_artifacts_plugin['enabled'] and facts[:os_package_type] == 'debian'
'glance'
'glare'
else
'murano'
end