Refresh Glance example configs for Ussuri milestone 3
Change-Id: I1c2c14c3e1997b1adbc28022ea03fd541554bdb6
This commit is contained in:
parent
28afc9fc6f
commit
68e5fa35cb
@ -33,13 +33,14 @@
|
||||
# proposed.
|
||||
#owner_is_tenant = true
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Role used to identify an authenticated user as administrator.
|
||||
#
|
||||
# Provide a string value representing a Keystone role to identify an
|
||||
# administrative user. Users with this role will be granted
|
||||
# administrative privileges. The default value for this option is
|
||||
# 'admin'.
|
||||
# administrative privileges.
|
||||
#
|
||||
# NOTE: The default value for this option has changed in this release.
|
||||
#
|
||||
# Possible values:
|
||||
# * A string value which is a valid Keystone role
|
||||
@ -48,7 +49,21 @@
|
||||
# * None
|
||||
#
|
||||
# (string value)
|
||||
#admin_role = admin
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant as its goal can be achieved via policy file
|
||||
# configuration. Additionally, it can override any configured policies,
|
||||
# leading to unexpected behavior and difficulty in policy configuration.
|
||||
# The option will be removed early in the Victoria development cycle,
|
||||
# following the standard OpenStack deprecation policy.
|
||||
#
|
||||
# Because this can be a security issue, the default value of this
|
||||
# configuration option has been changed in this release.
|
||||
#
|
||||
# Please see the 'Deprecation Notes' section of the Ussuri Glance
|
||||
# Release Notes for more information.
|
||||
#admin_role = __NOT_A_ROLE_07697c71e6174332989d3d5f2a7d2e7c_NOT_A_ROLE__
|
||||
|
||||
#
|
||||
# Allow limited access to unauthenticated users.
|
||||
@ -108,7 +123,7 @@
|
||||
# (string value)
|
||||
#public_endpoint = <None>
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Allow users to add additional/custom properties to images.
|
||||
#
|
||||
# Glance defines a standard set of properties (in its schema) that
|
||||
@ -130,6 +145,12 @@
|
||||
# * image_property_quota
|
||||
#
|
||||
# (boolean value)
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant. Control custom image property usage via the
|
||||
# 'image_property_quota' configuration option. This option is scheduled
|
||||
# to be removed during the Victoria development cycle.
|
||||
#allow_additional_image_properties = true
|
||||
|
||||
#
|
||||
@ -1970,6 +1991,43 @@
|
||||
# (string value)
|
||||
#cinder_volume_type = <None>
|
||||
|
||||
#
|
||||
# If this is set to True, attachment of volumes for image transfer will
|
||||
# be aborted when multipathd is not running. Otherwise, it will fallback
|
||||
# to single path.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_use_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_enforce_multipath = false
|
||||
|
||||
#
|
||||
# Flag to identify mutipath is supported or not in the deployment.
|
||||
#
|
||||
# Set it to False if multipath is not supported.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_enforce_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_use_multipath = false
|
||||
|
||||
#
|
||||
# Directory where the NFS volume is mounted on the glance node.
|
||||
#
|
||||
# Possible values:
|
||||
#
|
||||
# * A string representing absolute path of mount point.
|
||||
# (string value)
|
||||
#cinder_mount_point_base = /var/lib/glance/mnt
|
||||
|
||||
|
||||
[cors]
|
||||
|
||||
@ -2426,6 +2484,177 @@
|
||||
#rados_connect_timeout = 0
|
||||
|
||||
|
||||
[glance.store.s3.store]
|
||||
|
||||
#
|
||||
# From glance.multi_store
|
||||
#
|
||||
|
||||
#
|
||||
# The host where the S3 server is listening.
|
||||
#
|
||||
# This configuration option sets the host of the S3 or S3 compatible storage
|
||||
# Server. This option is required when using the S3 storage backend.
|
||||
# The host can contain a DNS name (e.g. s3.amazonaws.com, my-object-storage.com)
|
||||
# or an IP address (127.0.0.1).
|
||||
#
|
||||
# Possible values:
|
||||
# * A valid DNS name
|
||||
# * A valid IPv4 address
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_access_key
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_host = <None>
|
||||
|
||||
#
|
||||
# The S3 query token access key.
|
||||
#
|
||||
# This configuration option takes the access key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is the access key for a user with appropriate
|
||||
# privileges
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_access_key = <None>
|
||||
|
||||
#
|
||||
# The S3 query token secret key.
|
||||
#
|
||||
# This configuration option takes the secret key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is a secret key corresponding to the access key
|
||||
# specified using the ``s3_store_host`` option
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_access_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_secret_key = <None>
|
||||
|
||||
#
|
||||
# The S3 bucket to be used to store the Glance data.
|
||||
#
|
||||
# This configuration option specifies where the glance images will be stored
|
||||
# in the S3. If ``s3_store_create_bucket_on_put`` is set to true, it will be
|
||||
# created automatically even if the bucket does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_create_bucket_on_put
|
||||
# * s3_store_bucket_url_format
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket = <None>
|
||||
|
||||
#
|
||||
# Determine whether S3 should create a new bucket.
|
||||
#
|
||||
# This configuration option takes boolean value to indicate whether Glance
|
||||
# should
|
||||
# create a new bucket to S3 if it does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any Boolean value
|
||||
#
|
||||
# Related Options:
|
||||
# * None
|
||||
#
|
||||
# (boolean value)
|
||||
#s3_store_create_bucket_on_put = false
|
||||
|
||||
#
|
||||
# The S3 calling format used to determine the object.
|
||||
#
|
||||
# This configuration option takes access model that is used to specify the
|
||||
# address of an object in an S3 bucket.
|
||||
#
|
||||
# NOTE:
|
||||
# In ``path``-style, the endpoint for the object looks like
|
||||
# 'https://s3.amazonaws.com/bucket/example.img'.
|
||||
# And in ``virtual``-style, the endpoint for the object looks like
|
||||
# 'https://bucket.s3.amazonaws.com/example.img'.
|
||||
# If you do not follow the DNS naming convention in the bucket name, you can
|
||||
# get objects in the path style, but not in the virtual style.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value of ``auto``, ``virtual``, or ``path``
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_bucket
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket_url_format = auto
|
||||
|
||||
#
|
||||
# What size, in MB, should S3 start chunking image files and do a multipart
|
||||
# upload in S3.
|
||||
#
|
||||
# This configuration option takes a threshold in MB to determine whether to
|
||||
# upload the image to S3 as is or to split it (Multipart Upload).
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_chunk_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_size = 100
|
||||
|
||||
#
|
||||
# What multipart upload part size, in MB, should S3 use when uploading parts.
|
||||
#
|
||||
# This configuration option takes the image split size in MB for Multipart
|
||||
# Upload.
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value (must be greater than or equal to 5M)
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_chunk_size = 10
|
||||
|
||||
#
|
||||
# The number of thread pools to perform a multipart upload in S3.
|
||||
#
|
||||
# This configuration option takes the number of thread pools when performing a
|
||||
# Multipart Upload.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_large_object_chunk_size
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_thread_pools = 10
|
||||
|
||||
|
||||
[glance.store.swift.store]
|
||||
|
||||
#
|
||||
@ -2961,12 +3190,12 @@
|
||||
# buffered briefly before they are uploaded to swift.
|
||||
#
|
||||
# NOTES:
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
#
|
||||
# Possible values:
|
||||
# * String value representing an absolute directory path
|
||||
@ -3225,6 +3454,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vmware
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * default_store
|
||||
@ -3264,6 +3494,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vsphere
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * stores
|
||||
@ -3281,6 +3512,7 @@
|
||||
# rbd - <No description provided>
|
||||
# cinder - <No description provided>
|
||||
# vsphere - <No description provided>
|
||||
# s3 - <No description provided>
|
||||
# This option is deprecated for removal since Rocky.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
@ -3550,6 +3782,43 @@
|
||||
# (string value)
|
||||
#cinder_volume_type = <None>
|
||||
|
||||
#
|
||||
# If this is set to True, attachment of volumes for image transfer will
|
||||
# be aborted when multipathd is not running. Otherwise, it will fallback
|
||||
# to single path.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_use_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_enforce_multipath = false
|
||||
|
||||
#
|
||||
# Flag to identify mutipath is supported or not in the deployment.
|
||||
#
|
||||
# Set it to False if multipath is not supported.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_enforce_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_use_multipath = false
|
||||
|
||||
#
|
||||
# Directory where the NFS volume is mounted on the glance node.
|
||||
#
|
||||
# Possible values:
|
||||
#
|
||||
# * A string representing absolute path of mount point.
|
||||
# (string value)
|
||||
#cinder_mount_point_base = /var/lib/glance/mnt
|
||||
|
||||
#
|
||||
# Directory to which the filesystem backend store writes images.
|
||||
#
|
||||
@ -3841,6 +4110,170 @@
|
||||
# (integer value)
|
||||
#rados_connect_timeout = 0
|
||||
|
||||
#
|
||||
# The host where the S3 server is listening.
|
||||
#
|
||||
# This configuration option sets the host of the S3 or S3 compatible storage
|
||||
# Server. This option is required when using the S3 storage backend.
|
||||
# The host can contain a DNS name (e.g. s3.amazonaws.com, my-object-storage.com)
|
||||
# or an IP address (127.0.0.1).
|
||||
#
|
||||
# Possible values:
|
||||
# * A valid DNS name
|
||||
# * A valid IPv4 address
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_access_key
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_host = <None>
|
||||
|
||||
#
|
||||
# The S3 query token access key.
|
||||
#
|
||||
# This configuration option takes the access key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is the access key for a user with appropriate
|
||||
# privileges
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_access_key = <None>
|
||||
|
||||
#
|
||||
# The S3 query token secret key.
|
||||
#
|
||||
# This configuration option takes the secret key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is a secret key corresponding to the access key
|
||||
# specified using the ``s3_store_host`` option
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_access_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_secret_key = <None>
|
||||
|
||||
#
|
||||
# The S3 bucket to be used to store the Glance data.
|
||||
#
|
||||
# This configuration option specifies where the glance images will be stored
|
||||
# in the S3. If ``s3_store_create_bucket_on_put`` is set to true, it will be
|
||||
# created automatically even if the bucket does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_create_bucket_on_put
|
||||
# * s3_store_bucket_url_format
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket = <None>
|
||||
|
||||
#
|
||||
# Determine whether S3 should create a new bucket.
|
||||
#
|
||||
# This configuration option takes boolean value to indicate whether Glance
|
||||
# should
|
||||
# create a new bucket to S3 if it does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any Boolean value
|
||||
#
|
||||
# Related Options:
|
||||
# * None
|
||||
#
|
||||
# (boolean value)
|
||||
#s3_store_create_bucket_on_put = false
|
||||
|
||||
#
|
||||
# The S3 calling format used to determine the object.
|
||||
#
|
||||
# This configuration option takes access model that is used to specify the
|
||||
# address of an object in an S3 bucket.
|
||||
#
|
||||
# NOTE:
|
||||
# In ``path``-style, the endpoint for the object looks like
|
||||
# 'https://s3.amazonaws.com/bucket/example.img'.
|
||||
# And in ``virtual``-style, the endpoint for the object looks like
|
||||
# 'https://bucket.s3.amazonaws.com/example.img'.
|
||||
# If you do not follow the DNS naming convention in the bucket name, you can
|
||||
# get objects in the path style, but not in the virtual style.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value of ``auto``, ``virtual``, or ``path``
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_bucket
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket_url_format = auto
|
||||
|
||||
#
|
||||
# What size, in MB, should S3 start chunking image files and do a multipart
|
||||
# upload in S3.
|
||||
#
|
||||
# This configuration option takes a threshold in MB to determine whether to
|
||||
# upload the image to S3 as is or to split it (Multipart Upload).
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_chunk_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_size = 100
|
||||
|
||||
#
|
||||
# What multipart upload part size, in MB, should S3 use when uploading parts.
|
||||
#
|
||||
# This configuration option takes the image split size in MB for Multipart
|
||||
# Upload.
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value (must be greater than or equal to 5M)
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_chunk_size = 10
|
||||
|
||||
#
|
||||
# The number of thread pools to perform a multipart upload in S3.
|
||||
#
|
||||
# This configuration option takes the number of thread pools when performing a
|
||||
# Multipart Upload.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_large_object_chunk_size
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_thread_pools = 10
|
||||
|
||||
#
|
||||
# Set verification of the server certificate.
|
||||
#
|
||||
@ -4370,12 +4803,12 @@
|
||||
# buffered briefly before they are uploaded to swift.
|
||||
#
|
||||
# NOTES:
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
#
|
||||
# Possible values:
|
||||
# * String value representing an absolute directory path
|
||||
|
@ -4,7 +4,7 @@
|
||||
# From glance.cache
|
||||
#
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Allow users to add additional/custom properties to images.
|
||||
#
|
||||
# Glance defines a standard set of properties (in its schema) that
|
||||
@ -26,6 +26,12 @@
|
||||
# * image_property_quota
|
||||
#
|
||||
# (boolean value)
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant. Control custom image property usage via the
|
||||
# 'image_property_quota' configuration option. This option is scheduled
|
||||
# to be removed during the Victoria development cycle.
|
||||
#allow_additional_image_properties = true
|
||||
|
||||
#
|
||||
@ -1135,6 +1141,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vmware
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * default_store
|
||||
@ -1174,6 +1181,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vsphere
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * stores
|
||||
@ -1191,6 +1199,7 @@
|
||||
# rbd - <No description provided>
|
||||
# cinder - <No description provided>
|
||||
# vsphere - <No description provided>
|
||||
# s3 - <No description provided>
|
||||
# This option is deprecated for removal since Rocky.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
@ -1460,6 +1469,43 @@
|
||||
# (string value)
|
||||
#cinder_volume_type = <None>
|
||||
|
||||
#
|
||||
# If this is set to True, attachment of volumes for image transfer will
|
||||
# be aborted when multipathd is not running. Otherwise, it will fallback
|
||||
# to single path.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_use_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_enforce_multipath = false
|
||||
|
||||
#
|
||||
# Flag to identify mutipath is supported or not in the deployment.
|
||||
#
|
||||
# Set it to False if multipath is not supported.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_enforce_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_use_multipath = false
|
||||
|
||||
#
|
||||
# Directory where the NFS volume is mounted on the glance node.
|
||||
#
|
||||
# Possible values:
|
||||
#
|
||||
# * A string representing absolute path of mount point.
|
||||
# (string value)
|
||||
#cinder_mount_point_base = /var/lib/glance/mnt
|
||||
|
||||
#
|
||||
# Directory to which the filesystem backend store writes images.
|
||||
#
|
||||
@ -1751,6 +1797,170 @@
|
||||
# (integer value)
|
||||
#rados_connect_timeout = 0
|
||||
|
||||
#
|
||||
# The host where the S3 server is listening.
|
||||
#
|
||||
# This configuration option sets the host of the S3 or S3 compatible storage
|
||||
# Server. This option is required when using the S3 storage backend.
|
||||
# The host can contain a DNS name (e.g. s3.amazonaws.com, my-object-storage.com)
|
||||
# or an IP address (127.0.0.1).
|
||||
#
|
||||
# Possible values:
|
||||
# * A valid DNS name
|
||||
# * A valid IPv4 address
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_access_key
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_host = <None>
|
||||
|
||||
#
|
||||
# The S3 query token access key.
|
||||
#
|
||||
# This configuration option takes the access key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is the access key for a user with appropriate
|
||||
# privileges
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_access_key = <None>
|
||||
|
||||
#
|
||||
# The S3 query token secret key.
|
||||
#
|
||||
# This configuration option takes the secret key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is a secret key corresponding to the access key
|
||||
# specified using the ``s3_store_host`` option
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_access_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_secret_key = <None>
|
||||
|
||||
#
|
||||
# The S3 bucket to be used to store the Glance data.
|
||||
#
|
||||
# This configuration option specifies where the glance images will be stored
|
||||
# in the S3. If ``s3_store_create_bucket_on_put`` is set to true, it will be
|
||||
# created automatically even if the bucket does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_create_bucket_on_put
|
||||
# * s3_store_bucket_url_format
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket = <None>
|
||||
|
||||
#
|
||||
# Determine whether S3 should create a new bucket.
|
||||
#
|
||||
# This configuration option takes boolean value to indicate whether Glance
|
||||
# should
|
||||
# create a new bucket to S3 if it does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any Boolean value
|
||||
#
|
||||
# Related Options:
|
||||
# * None
|
||||
#
|
||||
# (boolean value)
|
||||
#s3_store_create_bucket_on_put = false
|
||||
|
||||
#
|
||||
# The S3 calling format used to determine the object.
|
||||
#
|
||||
# This configuration option takes access model that is used to specify the
|
||||
# address of an object in an S3 bucket.
|
||||
#
|
||||
# NOTE:
|
||||
# In ``path``-style, the endpoint for the object looks like
|
||||
# 'https://s3.amazonaws.com/bucket/example.img'.
|
||||
# And in ``virtual``-style, the endpoint for the object looks like
|
||||
# 'https://bucket.s3.amazonaws.com/example.img'.
|
||||
# If you do not follow the DNS naming convention in the bucket name, you can
|
||||
# get objects in the path style, but not in the virtual style.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value of ``auto``, ``virtual``, or ``path``
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_bucket
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket_url_format = auto
|
||||
|
||||
#
|
||||
# What size, in MB, should S3 start chunking image files and do a multipart
|
||||
# upload in S3.
|
||||
#
|
||||
# This configuration option takes a threshold in MB to determine whether to
|
||||
# upload the image to S3 as is or to split it (Multipart Upload).
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_chunk_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_size = 100
|
||||
|
||||
#
|
||||
# What multipart upload part size, in MB, should S3 use when uploading parts.
|
||||
#
|
||||
# This configuration option takes the image split size in MB for Multipart
|
||||
# Upload.
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value (must be greater than or equal to 5M)
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_chunk_size = 10
|
||||
|
||||
#
|
||||
# The number of thread pools to perform a multipart upload in S3.
|
||||
#
|
||||
# This configuration option takes the number of thread pools when performing a
|
||||
# Multipart Upload.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_large_object_chunk_size
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_thread_pools = 10
|
||||
|
||||
#
|
||||
# Set verification of the server certificate.
|
||||
#
|
||||
@ -2280,12 +2490,12 @@
|
||||
# buffered briefly before they are uploaded to swift.
|
||||
#
|
||||
# NOTES:
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
#
|
||||
# Possible values:
|
||||
# * String value representing an absolute directory path
|
||||
|
@ -33,13 +33,14 @@
|
||||
# proposed.
|
||||
#owner_is_tenant = true
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Role used to identify an authenticated user as administrator.
|
||||
#
|
||||
# Provide a string value representing a Keystone role to identify an
|
||||
# administrative user. Users with this role will be granted
|
||||
# administrative privileges. The default value for this option is
|
||||
# 'admin'.
|
||||
# administrative privileges.
|
||||
#
|
||||
# NOTE: The default value for this option has changed in this release.
|
||||
#
|
||||
# Possible values:
|
||||
# * A string value which is a valid Keystone role
|
||||
@ -48,7 +49,21 @@
|
||||
# * None
|
||||
#
|
||||
# (string value)
|
||||
#admin_role = admin
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant as its goal can be achieved via policy file
|
||||
# configuration. Additionally, it can override any configured policies,
|
||||
# leading to unexpected behavior and difficulty in policy configuration.
|
||||
# The option will be removed early in the Victoria development cycle,
|
||||
# following the standard OpenStack deprecation policy.
|
||||
#
|
||||
# Because this can be a security issue, the default value of this
|
||||
# configuration option has been changed in this release.
|
||||
#
|
||||
# Please see the 'Deprecation Notes' section of the Ussuri Glance
|
||||
# Release Notes for more information.
|
||||
#admin_role = __NOT_A_ROLE_07697c71e6174332989d3d5f2a7d2e7c_NOT_A_ROLE__
|
||||
|
||||
#
|
||||
# Allow limited access to unauthenticated users.
|
||||
@ -87,7 +102,7 @@
|
||||
# Minimum value: 0
|
||||
#max_request_id_length = 64
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Allow users to add additional/custom properties to images.
|
||||
#
|
||||
# Glance defines a standard set of properties (in its schema) that
|
||||
@ -109,6 +124,12 @@
|
||||
# * image_property_quota
|
||||
#
|
||||
# (boolean value)
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant. Control custom image property usage via the
|
||||
# 'image_property_quota' configuration option. This option is scheduled
|
||||
# to be removed during the Victoria development cycle.
|
||||
#allow_additional_image_properties = true
|
||||
|
||||
#
|
||||
|
@ -4,7 +4,7 @@
|
||||
# From glance.scrubber
|
||||
#
|
||||
|
||||
#
|
||||
# DEPRECATED:
|
||||
# Allow users to add additional/custom properties to images.
|
||||
#
|
||||
# Glance defines a standard set of properties (in its schema) that
|
||||
@ -26,6 +26,12 @@
|
||||
# * image_property_quota
|
||||
#
|
||||
# (boolean value)
|
||||
# This option is deprecated for removal since Ussuri.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
# This option is redundant. Control custom image property usage via the
|
||||
# 'image_property_quota' configuration option. This option is scheduled
|
||||
# to be removed during the Victoria development cycle.
|
||||
#allow_additional_image_properties = true
|
||||
|
||||
#
|
||||
@ -928,6 +934,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vmware
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * default_store
|
||||
@ -967,6 +974,7 @@
|
||||
# * rbd
|
||||
# * cinder
|
||||
# * vsphere
|
||||
# * s3
|
||||
#
|
||||
# Related Options:
|
||||
# * stores
|
||||
@ -984,6 +992,7 @@
|
||||
# rbd - <No description provided>
|
||||
# cinder - <No description provided>
|
||||
# vsphere - <No description provided>
|
||||
# s3 - <No description provided>
|
||||
# This option is deprecated for removal since Rocky.
|
||||
# Its value may be silently ignored in the future.
|
||||
# Reason:
|
||||
@ -1253,6 +1262,43 @@
|
||||
# (string value)
|
||||
#cinder_volume_type = <None>
|
||||
|
||||
#
|
||||
# If this is set to True, attachment of volumes for image transfer will
|
||||
# be aborted when multipathd is not running. Otherwise, it will fallback
|
||||
# to single path.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_use_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_enforce_multipath = false
|
||||
|
||||
#
|
||||
# Flag to identify mutipath is supported or not in the deployment.
|
||||
#
|
||||
# Set it to False if multipath is not supported.
|
||||
#
|
||||
# Possible values:
|
||||
# * True or False
|
||||
#
|
||||
# Related options:
|
||||
# * cinder_enforce_multipath
|
||||
#
|
||||
# (boolean value)
|
||||
#cinder_use_multipath = false
|
||||
|
||||
#
|
||||
# Directory where the NFS volume is mounted on the glance node.
|
||||
#
|
||||
# Possible values:
|
||||
#
|
||||
# * A string representing absolute path of mount point.
|
||||
# (string value)
|
||||
#cinder_mount_point_base = /var/lib/glance/mnt
|
||||
|
||||
#
|
||||
# Directory to which the filesystem backend store writes images.
|
||||
#
|
||||
@ -1544,6 +1590,170 @@
|
||||
# (integer value)
|
||||
#rados_connect_timeout = 0
|
||||
|
||||
#
|
||||
# The host where the S3 server is listening.
|
||||
#
|
||||
# This configuration option sets the host of the S3 or S3 compatible storage
|
||||
# Server. This option is required when using the S3 storage backend.
|
||||
# The host can contain a DNS name (e.g. s3.amazonaws.com, my-object-storage.com)
|
||||
# or an IP address (127.0.0.1).
|
||||
#
|
||||
# Possible values:
|
||||
# * A valid DNS name
|
||||
# * A valid IPv4 address
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_access_key
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_host = <None>
|
||||
|
||||
#
|
||||
# The S3 query token access key.
|
||||
#
|
||||
# This configuration option takes the access key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is the access key for a user with appropriate
|
||||
# privileges
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_secret_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_access_key = <None>
|
||||
|
||||
#
|
||||
# The S3 query token secret key.
|
||||
#
|
||||
# This configuration option takes the secret key for authenticating with the
|
||||
# Amazon S3 or S3 compatible storage server. This option is required when using
|
||||
# the S3 storage backend.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value that is a secret key corresponding to the access key
|
||||
# specified using the ``s3_store_host`` option
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_host
|
||||
# * s3_store_access_key
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_secret_key = <None>
|
||||
|
||||
#
|
||||
# The S3 bucket to be used to store the Glance data.
|
||||
#
|
||||
# This configuration option specifies where the glance images will be stored
|
||||
# in the S3. If ``s3_store_create_bucket_on_put`` is set to true, it will be
|
||||
# created automatically even if the bucket does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_create_bucket_on_put
|
||||
# * s3_store_bucket_url_format
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket = <None>
|
||||
|
||||
#
|
||||
# Determine whether S3 should create a new bucket.
|
||||
#
|
||||
# This configuration option takes boolean value to indicate whether Glance
|
||||
# should
|
||||
# create a new bucket to S3 if it does not exist.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any Boolean value
|
||||
#
|
||||
# Related Options:
|
||||
# * None
|
||||
#
|
||||
# (boolean value)
|
||||
#s3_store_create_bucket_on_put = false
|
||||
|
||||
#
|
||||
# The S3 calling format used to determine the object.
|
||||
#
|
||||
# This configuration option takes access model that is used to specify the
|
||||
# address of an object in an S3 bucket.
|
||||
#
|
||||
# NOTE:
|
||||
# In ``path``-style, the endpoint for the object looks like
|
||||
# 'https://s3.amazonaws.com/bucket/example.img'.
|
||||
# And in ``virtual``-style, the endpoint for the object looks like
|
||||
# 'https://bucket.s3.amazonaws.com/example.img'.
|
||||
# If you do not follow the DNS naming convention in the bucket name, you can
|
||||
# get objects in the path style, but not in the virtual style.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any string value of ``auto``, ``virtual``, or ``path``
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_bucket
|
||||
#
|
||||
# (string value)
|
||||
#s3_store_bucket_url_format = auto
|
||||
|
||||
#
|
||||
# What size, in MB, should S3 start chunking image files and do a multipart
|
||||
# upload in S3.
|
||||
#
|
||||
# This configuration option takes a threshold in MB to determine whether to
|
||||
# upload the image to S3 as is or to split it (Multipart Upload).
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_chunk_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_size = 100
|
||||
|
||||
#
|
||||
# What multipart upload part size, in MB, should S3 use when uploading parts.
|
||||
#
|
||||
# This configuration option takes the image split size in MB for Multipart
|
||||
# Upload.
|
||||
#
|
||||
# Note: You can only split up to 10,000 images.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value (must be greater than or equal to 5M)
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_thread_pools
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_large_object_chunk_size = 10
|
||||
|
||||
#
|
||||
# The number of thread pools to perform a multipart upload in S3.
|
||||
#
|
||||
# This configuration option takes the number of thread pools when performing a
|
||||
# Multipart Upload.
|
||||
#
|
||||
# Possible values:
|
||||
# * Any positive integer value
|
||||
#
|
||||
# Related Options:
|
||||
# * s3_store_large_object_size
|
||||
# * s3_store_large_object_chunk_size
|
||||
#
|
||||
# (integer value)
|
||||
#s3_store_thread_pools = 10
|
||||
|
||||
#
|
||||
# Set verification of the server certificate.
|
||||
#
|
||||
@ -2073,12 +2283,12 @@
|
||||
# buffered briefly before they are uploaded to swift.
|
||||
#
|
||||
# NOTES:
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
# * This is required only when the configuration option
|
||||
# ``swift_buffer_on_upload`` is set to True.
|
||||
# * This directory should be provisioned keeping in mind the
|
||||
# ``swift_store_large_object_chunk_size`` and the maximum
|
||||
# number of images that could be uploaded simultaneously by
|
||||
# a given glance node.
|
||||
#
|
||||
# Possible values:
|
||||
# * String value representing an absolute directory path
|
||||
|
Loading…
x
Reference in New Issue
Block a user