|
508 | 508 | # (string value)
|
509 | 509 | #worker_self_reference_url = <None>
|
510 | 510 |
|
511 |
| -# |
| 511 | +# DEPRECATED: |
512 | 512 | # Strategy to determine the preference order of image locations.
|
513 | 513 | #
|
514 | 514 | # This configuration option indicates the strategy to determine
|
|
535 | 535 | # Possible values:
|
536 | 536 | # location_order - <No description provided>
|
537 | 537 | # store_type - <No description provided>
|
| 538 | +# This option is deprecated for removal since Caracal. |
| 539 | +# Its value may be silently ignored in the future. |
| 540 | +# Reason: |
| 541 | +# In Bobcat, a new weighing mechanism has been introduced, which makes the |
| 542 | +# location strategy obsolete. This option is scheduled to be removed during the |
| 543 | +# Dalmatian development cycle. |
538 | 544 | #location_strategy = location_order
|
539 | 545 |
|
540 | 546 | #
|
|
778 | 784 | # value)
|
779 | 785 | #pipe_handle = <None>
|
780 | 786 |
|
781 |
| -# |
| 787 | +# DEPRECATED: |
782 | 788 | # The relative path to sqlite file database that will be used for image cache
|
783 | 789 | # management.
|
784 | 790 | #
|
|
795 | 801 | # * ``image_cache_dir``
|
796 | 802 | #
|
797 | 803 | # (string value)
|
| 804 | +# This option is deprecated for removal since Caracal (2024.1). |
| 805 | +# Its value may be silently ignored in the future. |
| 806 | +# Reason: |
| 807 | +# As centralized database will now be used for image cache management, the use |
| 808 | +# of `sqlite` database and driver will be dropped from 'E' (2025.1) |
| 809 | +# development cycle. |
798 | 810 | #image_cache_sqlite_db = cache.db
|
799 | 811 |
|
800 | 812 | #
|
|
813 | 825 | # are ``sqlite`` and ``xattr``. These drivers primarily differ in the way they
|
814 | 826 | # store the information about cached images:
|
815 | 827 | #
|
816 |
| -# * The ``sqlite`` driver uses a sqlite database (which sits on every glance |
817 |
| -# node locally) to track the usage of cached images. |
| 828 | +# * The ``centralized_db`` driver uses a central database (which will be common |
| 829 | +# for all glance nodes) to track the usage of cached images. |
| 830 | +# * The ``sqlite`` (deprecated) driver uses a sqlite database (which sits on |
| 831 | +# every glance node locally) to track the usage of cached images. |
818 | 832 | # * The ``xattr`` driver uses the extended attributes of files to store this
|
819 | 833 | # information. It also requires a filesystem that sets ``atime`` on the files
|
820 | 834 | # when accessed.
|
821 | 835 | #
|
| 836 | +# Deprecation warning: |
| 837 | +# * As centralized database will now be used for image cache management, the |
| 838 | +# use of `sqlite` database and driver will be dropped from 'E' (2025.1) |
| 839 | +# development cycle. |
| 840 | +# |
822 | 841 | # Possible values:
|
| 842 | +# * centralized_db |
823 | 843 | # * sqlite
|
824 | 844 | # * xattr
|
825 | 845 | #
|
|
828 | 848 | #
|
829 | 849 | # (string value)
|
830 | 850 | # Possible values:
|
| 851 | +# centralized_db - <No description provided> |
831 | 852 | # sqlite - <No description provided>
|
832 | 853 | # xattr - <No description provided>
|
833 |
| -#image_cache_driver = sqlite |
| 854 | +#image_cache_driver = centralized_db |
834 | 855 |
|
835 | 856 | #
|
836 | 857 | # The upper limit on cache size, in bytes, after which the cache-pruner cleans
|
|
967 | 988 | # (list value)
|
968 | 989 | #disabled_notifications =
|
969 | 990 |
|
970 |
| -# |
| 991 | +# DEPRECATED: |
971 | 992 | # The amount of time, in seconds, to delay image scrubbing.
|
972 | 993 | #
|
973 | 994 | # When delayed delete is turned on, an image is put into ``pending_delete``
|
|
989 | 1010 | #
|
990 | 1011 | # (integer value)
|
991 | 1012 | # Minimum value: 0
|
| 1013 | +# This option is deprecated for removal since 2024.1 (Caracal). |
| 1014 | +# Its value may be silently ignored in the future. |
| 1015 | +# Reason: The entire glance scrubber, including this option, is scheduled to be |
| 1016 | +# removed during the 2024.2 (Dalmatian) development cycle. |
992 | 1017 | #scrub_time = 0
|
993 | 1018 |
|
994 |
| -# |
| 1019 | +# DEPRECATED: |
995 | 1020 | # The size of thread pool to be used for scrubbing images.
|
996 | 1021 | #
|
997 | 1022 | # When there are a large number of images to scrub, it is beneficial to scrub
|
|
1009 | 1034 | #
|
1010 | 1035 | # (integer value)
|
1011 | 1036 | # Minimum value: 1
|
| 1037 | +# This option is deprecated for removal since 2024.1 (Caracal). |
| 1038 | +# Its value may be silently ignored in the future. |
| 1039 | +# Reason: The entire glance scrubber, including this option, is scheduled to be |
| 1040 | +# removed during the 2024.2 (Dalmatian) development cycle. |
1012 | 1041 | #scrub_pool_size = 1
|
1013 | 1042 |
|
1014 |
| -# |
| 1043 | +# DEPRECATED: |
1015 | 1044 | # Turn on/off delayed delete.
|
1016 | 1045 | #
|
1017 | 1046 | # Typically when an image is deleted, the ``glance-api`` service puts the image
|
|
1039 | 1068 | # * ``scrub_pool_size``
|
1040 | 1069 | #
|
1041 | 1070 | # (boolean value)
|
| 1071 | +# This option is deprecated for removal since 2024.1 (Caracal). |
| 1072 | +# Its value may be silently ignored in the future. |
| 1073 | +# Reason: The entire glance scrubber, including this option, is scheduled to be |
| 1074 | +# removed during the 2024.2 (Dalmatian) development cycle. |
1042 | 1075 | #delayed_delete = false
|
1043 | 1076 |
|
1044 | 1077 | #
|
|
1106 | 1139 | # set. (boolean value)
|
1107 | 1140 | #use_stderr = false
|
1108 | 1141 |
|
1109 |
| -# Log output to Windows Event Log. (boolean value) |
| 1142 | +# DEPRECATED: Log output to Windows Event Log. (boolean value) |
| 1143 | +# This option is deprecated for removal. |
| 1144 | +# Its value may be silently ignored in the future. |
| 1145 | +# Reason: Windows support is no longer maintained. |
1110 | 1146 | #use_eventlog = false
|
1111 | 1147 |
|
1112 | 1148 | # The amount of time before the log files are rotated. This option is ignored
|
|
1763 | 1799 | # value)
|
1764 | 1800 | #mysql_wsrep_sync_wait = <None>
|
1765 | 1801 |
|
1766 |
| -# DEPRECATED: If True, transparently enables support for handling MySQL Cluster |
1767 |
| -# (NDB). (boolean value) |
1768 |
| -# This option is deprecated for removal since 12.1.0. |
1769 |
| -# Its value may be silently ignored in the future. |
1770 |
| -# Reason: Support for the MySQL NDB Cluster storage engine has been deprecated |
1771 |
| -# and will be removed in a future release. |
1772 |
| -#mysql_enable_ndb = false |
1773 |
| - |
1774 | 1802 | # Connections which have been present in the connection pool longer than this
|
1775 | 1803 | # number of seconds will be replaced with a new one the next time they are
|
1776 | 1804 | # checked out from the pool. (integer value)
|
|
2151 | 2179 | # (string value)
|
2152 | 2180 | #rbd_store_ceph_conf =
|
2153 | 2181 |
|
2154 |
| -# DEPRECATED: |
| 2182 | +# |
2155 | 2183 | # Timeout value for connecting to Ceph cluster.
|
2156 | 2184 | #
|
2157 | 2185 | # This configuration option takes in the timeout value in seconds used
|
2158 | 2186 | # when connecting to the Ceph cluster i.e. it sets the time to wait for
|
2159 | 2187 | # glance-api before closing the connection. This prevents glance-api
|
2160 | 2188 | # hangups during the connection to RBD. If the value for this option
|
2161 |
| -# is set to less than or equal to 0, no timeout is set and the default |
2162 |
| -# librados value is used. |
| 2189 | +# is set to less than 0, no timeout is set and the default librados value |
| 2190 | +# is used. |
2163 | 2191 | #
|
2164 | 2192 | # Possible Values:
|
2165 | 2193 | # * Any integer value
|
|
2168 | 2196 | # * None
|
2169 | 2197 | #
|
2170 | 2198 | # (integer value)
|
2171 |
| -# This option is deprecated for removal since Zed. |
2172 |
| -# Its value may be silently ignored in the future. |
2173 |
| -# Reason: |
2174 |
| -# This option has not had any effect in years. Users willing to set a timeout |
2175 |
| -# for |
2176 |
| -# connecting to the Ceph cluster should use 'client_mount_timeout' in Ceph's |
2177 |
| -# configuration file. |
2178 |
| -#rados_connect_timeout = 0 |
| 2199 | +#rados_connect_timeout = -1 |
2179 | 2200 |
|
2180 | 2201 | #
|
2181 | 2202 | # Enable or not thin provisioning in this backend.
|
|
3911 | 3932 | # (string value)
|
3912 | 3933 | #rbd_store_ceph_conf =
|
3913 | 3934 |
|
3914 |
| -# DEPRECATED: |
| 3935 | +# |
3915 | 3936 | # Timeout value for connecting to Ceph cluster.
|
3916 | 3937 | #
|
3917 | 3938 | # This configuration option takes in the timeout value in seconds used
|
3918 | 3939 | # when connecting to the Ceph cluster i.e. it sets the time to wait for
|
3919 | 3940 | # glance-api before closing the connection. This prevents glance-api
|
3920 | 3941 | # hangups during the connection to RBD. If the value for this option
|
3921 |
| -# is set to less than or equal to 0, no timeout is set and the default |
3922 |
| -# librados value is used. |
| 3942 | +# is set to less than 0, no timeout is set and the default librados value |
| 3943 | +# is used. |
3923 | 3944 | #
|
3924 | 3945 | # Possible Values:
|
3925 | 3946 | # * Any integer value
|
|
3928 | 3949 | # * None
|
3929 | 3950 | #
|
3930 | 3951 | # (integer value)
|
3931 |
| -# This option is deprecated for removal since Zed. |
3932 |
| -# Its value may be silently ignored in the future. |
3933 |
| -# Reason: |
3934 |
| -# This option has not had any effect in years. Users willing to set a timeout |
3935 |
| -# for |
3936 |
| -# connecting to the Ceph cluster should use 'client_mount_timeout' in Ceph's |
3937 |
| -# configuration file. |
3938 |
| -#rados_connect_timeout = 0 |
| 3952 | +#rados_connect_timeout = -1 |
3939 | 3953 |
|
3940 | 3954 | #
|
3941 | 3955 | # Enable or not thin provisioning in this backend.
|
|
4899 | 4913 | # back as part of a request. (list value)
|
4900 | 4914 | #backends =
|
4901 | 4915 |
|
| 4916 | +# A list of network addresses to limit source ip allowed to access healthcheck |
| 4917 | +# information. Any request from ip outside of these network addresses are |
| 4918 | +# ignored. (list value) |
| 4919 | +#allowed_source_ranges = |
| 4920 | + |
| 4921 | +# Ignore requests with proxy headers. (boolean value) |
| 4922 | +#ignore_proxied_requests = false |
| 4923 | + |
4902 | 4924 | # Check the presence of a file to determine if an application is running on a
|
4903 | 4925 | # port. Used by DisableByFileHealthcheck plugin. (string value)
|
4904 | 4926 | #disable_by_file_path = <None>
|
|
5340 | 5362 | # used. (floating point value)
|
5341 | 5363 | #status_code_retry_delay = <None>
|
5342 | 5364 |
|
| 5365 | +# List of retriable HTTP status codes that should be retried. If not set default |
| 5366 | +# to [503] (list value) |
| 5367 | +#retriable_status_codes = <None> |
| 5368 | + |
5343 | 5369 |
|
5344 | 5370 | [oslo_messaging_amqp]
|
5345 | 5371 |
|
|
5769 | 5795 |
|
5770 | 5796 | # Positive integer representing duration in seconds for queue TTL (x-expires).
|
5771 | 5797 | # Queues which are unused for the duration of the TTL are automatically deleted.
|
5772 |
| -# The parameter affects only reply and fanout queues. (integer value) |
5773 |
| -# Minimum value: 1 |
| 5798 | +# The parameter affects only reply and fanout queues. Setting 0 as value will |
| 5799 | +# disable the x-expires. If doing so, make sure you have a rabbitmq policy to |
| 5800 | +# delete the queues or you deployment will create an infinite number of queue |
| 5801 | +# over time. (integer value) |
| 5802 | +# Minimum value: 0 |
5774 | 5803 | #rabbit_transient_queues_ttl = 1800
|
5775 | 5804 |
|
5776 | 5805 | # Specifies the number of messages to prefetch. Setting to zero allows unlimited
|
|
5783 | 5812 |
|
5784 | 5813 | # How often times during the heartbeat_timeout_threshold we check the heartbeat.
|
5785 | 5814 | # (integer value)
|
5786 |
| -#heartbeat_rate = 2 |
| 5815 | +#heartbeat_rate = 3 |
5787 | 5816 |
|
5788 | 5817 | # DEPRECATED: (DEPRECATED) Enable/Disable the RabbitMQ mandatory flag for direct
|
5789 | 5818 | # send. The direct send is used as reply, so the MessageUndeliverable exception
|
|
6093 | 6122 | # From glance.api
|
6094 | 6123 | #
|
6095 | 6124 |
|
6096 |
| -# |
| 6125 | +# DEPRECATED: |
6097 | 6126 | # Preference order of storage backends.
|
6098 | 6127 | #
|
6099 | 6128 | # Provide a comma separated list of store names in the order in
|
|
6121 | 6150 | # * stores
|
6122 | 6151 | #
|
6123 | 6152 | # (list value)
|
| 6153 | +# This option is deprecated for removal since Caracal. |
| 6154 | +# Its value may be silently ignored in the future. |
| 6155 | +# Reason: |
| 6156 | +# In Bobcat, a new weighing mechanism has been introduced, which makes the |
| 6157 | +# location strategy obsolete. This option is scheduled to be removed during the |
| 6158 | +# Dalmatian development cycle. |
6124 | 6159 | #store_type_preference =
|
6125 | 6160 |
|
6126 | 6161 |
|
|
6300 | 6335 | # Mountpoint of KV store in Vault to use, for example: secret (string value)
|
6301 | 6336 | #kv_mountpoint = secret
|
6302 | 6337 |
|
| 6338 | +# Path relative to root of KV store in Vault to use. (string value) |
| 6339 | +#kv_path = <None> |
| 6340 | + |
6303 | 6341 | # Version of KV store in Vault to use, for example: 2 (integer value)
|
6304 | 6342 | #kv_version = 2
|
6305 | 6343 |
|
|
0 commit comments