Fix incomplete setting to enable in-storage image data copy
Change-Id: Ie2e89ad697120aa46a05753690c5c3835e612f68
This commit is contained in:
parent
6d37684f6d
commit
cac0f79f71
@ -59,7 +59,8 @@ class { 'openstack_integration::keystone':
|
||||
token_expiration => '2400',
|
||||
}
|
||||
class { 'openstack_integration::glance':
|
||||
backend => 'rbd',
|
||||
backend => 'rbd',
|
||||
show_multiple_locations => true,
|
||||
}
|
||||
class { 'openstack_integration::neutron':
|
||||
notification_topics => $notification_topics,
|
||||
|
@ -56,7 +56,8 @@ include openstack_integration::mysql
|
||||
include openstack_integration::redis
|
||||
include openstack_integration::keystone
|
||||
class { 'openstack_integration::glance':
|
||||
backend => 'rbd',
|
||||
backend => 'rbd',
|
||||
show_multiple_locations => true,
|
||||
}
|
||||
|
||||
class { 'openstack_integration::neutron':
|
||||
|
@ -53,7 +53,8 @@ include openstack_integration::ovn
|
||||
include openstack_integration::keystone
|
||||
include openstack_integration::cinder
|
||||
class { 'openstack_integration::glance':
|
||||
backend => 'cinder',
|
||||
backend => 'cinder',
|
||||
show_multiple_locations => true,
|
||||
}
|
||||
class { 'openstack_integration::neutron':
|
||||
driver => 'ovn',
|
||||
|
@ -139,7 +139,9 @@ class openstack_integration::cinder (
|
||||
}
|
||||
class { 'cinder::backup': }
|
||||
class { 'cinder::cron::db_purge': }
|
||||
class { 'cinder::glance': }
|
||||
class { 'cinder::glance':
|
||||
allowed_direct_url_schemes => ['cinder'],
|
||||
}
|
||||
case $backend {
|
||||
'iscsi': {
|
||||
class { 'cinder::setup_test_volume':
|
||||
|
@ -9,9 +9,14 @@
|
||||
# (optional) Boolean to configure or not image encryption
|
||||
# Defaults to false.
|
||||
#
|
||||
# [*show_multiple_locations*]
|
||||
# (optional) Include the backend image locations in image properties
|
||||
# Defaults to undef
|
||||
#
|
||||
class openstack_integration::glance (
|
||||
$backend = 'file',
|
||||
$image_encryption = false,
|
||||
$backend = 'file',
|
||||
$image_encryption = false,
|
||||
$show_multiple_locations = undef,
|
||||
) {
|
||||
|
||||
include openstack_integration::config
|
||||
@ -109,10 +114,11 @@ class openstack_integration::glance (
|
||||
}),
|
||||
}
|
||||
class { 'glance::api':
|
||||
enabled_backends => $enabled_backends,
|
||||
default_backend => $default_backend,
|
||||
bind_host => $::openstack_integration::config::host,
|
||||
service_name => 'httpd',
|
||||
enabled_backends => $enabled_backends,
|
||||
default_backend => $default_backend,
|
||||
bind_host => $::openstack_integration::config::host,
|
||||
service_name => 'httpd',
|
||||
show_multiple_locations => $show_multiple_locations,
|
||||
}
|
||||
class { 'glance::wsgi::apache':
|
||||
bind_host => $::openstack_integration::config::host,
|
||||
|
Loading…
Reference in New Issue
Block a user