c7b9b90dbd
Add new tripleo::profile::base::glance::api::multistore_config parameter to support configuring multiple glance-api backends. The parameter is optional, and represents a hash of settings for each additional backend. The existing 'glance_backend' parameter specifies the default backend. In order to support DCN/Edge deployments, the syntax supports multiple instances of the 'rbd' backend type. Restrictions are imposed to allow only a single instance of the 'cinder', 'file' and 'swift' backend types. Change-Id: I41ab9b3593bf3d078c5bbd1826df8308e3f5e7af Depends-On: I5a1c61430879a910e7b6c79effba538431959d56
106 lines
3.6 KiB
Ruby
106 lines
3.6 KiB
Ruby
#
|
|
# Copyright (C) 2020 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'tripleo::profile::base::glance::backend::cinder' do
|
|
shared_examples_for 'tripleo::profile::base::glance::backend::cinder' do
|
|
|
|
before :each do
|
|
facts.merge!({ :step => params[:step] })
|
|
end
|
|
|
|
context 'with step less than 4' do
|
|
let(:params) { {
|
|
:backend_names => ['my_cinder'],
|
|
:step => 3,
|
|
} }
|
|
|
|
it 'should not configure a backend' do
|
|
is_expected.to contain_class('tripleo::profile::base::glance::backend::cinder')
|
|
is_expected.to_not contain_glance__backend__multistore__cinder('my_cinder')
|
|
end
|
|
end
|
|
|
|
context 'with step 4' do
|
|
let(:params) { {
|
|
:backend_names => ['my_cinder'],
|
|
:cinder_ca_certificates_file => '/path/to/certificates_file',
|
|
:cinder_api_insecure => true,
|
|
:cinder_catalog_info => 'volume:cinder:internalURL',
|
|
:cinder_http_retries => '10',
|
|
:cinder_endpoint_template => 'http://srv-foo:8776/v1/%(project_id)s',
|
|
:cinder_store_auth_address => '127.0.0.2:8080/v3/',
|
|
:cinder_store_project_name => 'services',
|
|
:cinder_store_user_name => 'glance',
|
|
:cinder_store_password => 'glance_password',
|
|
:step => 4,
|
|
} }
|
|
|
|
it 'should configure the backend' do
|
|
is_expected.to contain_glance__backend__multistore__cinder('my_cinder').with(
|
|
:cinder_ca_certificates_file => '/path/to/certificates_file',
|
|
:cinder_api_insecure => true,
|
|
:cinder_catalog_info => 'volume:cinder:internalURL',
|
|
:cinder_http_retries => '10',
|
|
:cinder_endpoint_template => 'http://srv-foo:8776/v1/%(project_id)s',
|
|
:cinder_store_auth_address => '127.0.0.2:8080/v3/',
|
|
:cinder_store_project_name => 'services',
|
|
:cinder_store_user_name => 'glance',
|
|
:cinder_store_password => 'glance_password',
|
|
:store_description => 'Cinder store',
|
|
)
|
|
end
|
|
|
|
context 'with store description in multistore_config' do
|
|
before :each do
|
|
params.merge!({
|
|
:multistore_config => {
|
|
'my_cinder' => {
|
|
'GlanceStoreDescription' => 'My multistore cinder backend',
|
|
},
|
|
},
|
|
})
|
|
end
|
|
it 'should use the multistore_config description' do
|
|
is_expected.to contain_glance__backend__multistore__cinder('my_cinder').with(
|
|
:store_description => 'My multistore cinder backend',
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'with multiple backend_names' do
|
|
before :each do
|
|
params.merge!({
|
|
:backend_names => ['cinder1', 'cinder2'],
|
|
})
|
|
end
|
|
it_raises 'a Puppet::Error', /Multiple cinder backends are not supported./
|
|
end
|
|
end
|
|
end
|
|
|
|
on_supported_os.each do |os, facts|
|
|
context "on #{os}" do
|
|
let(:facts) do
|
|
facts.merge({})
|
|
end
|
|
|
|
it_behaves_like 'tripleo::profile::base::glance::backend::cinder'
|
|
end
|
|
end
|
|
end
|