Make Murano always use the latest CoreLibrary

When we updating environment Murano doesn't update
CoreLibrary if it's already installed. So we need
to make it always install latest CoreLibrary version.

Change-Id: I702d6e393fd24dc8649f02b72d83c14aeed3bff9
Closes-Bug: #1624723
This commit is contained in:
Alexey Deryugin 2016-09-23 15:39:45 +03:00 committed by Oleksiy Molchanov
parent 632109b5ad
commit e931ff0850
2 changed files with 6 additions and 2 deletions

View File

@ -2,5 +2,7 @@ class openstack_tasks::murano::upload_murano_package {
notice('MODULAR: murano/upload_murano_package.pp')
murano::application { 'io.murano' : }
murano::application { 'io.murano' :
exists_action => 'u'
}
}

View File

@ -12,7 +12,9 @@ describe manifest do
context 'on primary controller', :if => enable do
it 'should declare murano::application resource correctly' do
should contain_murano__application('io.murano')
should contain_murano__application('io.murano').with(
'exists_action' => 'u'
)
end
end
end # end of shared_examples