Skip to content

Commit 37f37c4

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Refresh Glance example configs for antelope milestone 3"
2 parents ac93d8b + 1d54ddd commit 37f37c4

File tree

4 files changed

+93
-84
lines changed

4 files changed

+93
-84
lines changed

etc/glance-api.conf

Lines changed: 47 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -487,32 +487,6 @@
487487
# * [DEFAULT]/node_staging_uri (list value)
488488
#enabled_import_methods = [glance-direct,web-download,copy-image]
489489

490-
# DEPRECATED:
491-
# Enforce API access based on common persona definitions used across OpenStack.
492-
# Enabling this option formalizes project-specific read/write operations, like
493-
# creating private images or updating the status of shared image, behind the
494-
# `member` role. It also formalizes a read-only variant useful for
495-
# project-specific API operations, like listing private images in a project,
496-
# behind the `reader` role.
497-
#
498-
# Operators should take an opportunity to understand glance's new image
499-
# policies,
500-
# audit assignments in their deployment, and update permissions using the
501-
# default
502-
# roles in keystone (e.g., `admin`, `member`, and `reader`).
503-
#
504-
# Related options:
505-
# * [oslo_policy]/enforce_new_defaults
506-
# (boolean value)
507-
# This option is deprecated for removal since Wallaby.
508-
# Its value may be silently ignored in the future.
509-
# Reason:
510-
# This option has been introduced to require operators to opt into enforcing
511-
# authorization based on common RBAC personas, which is EXPERIMENTAL as of the
512-
# Wallaby release. This behavior will be the default and STABLE in a future
513-
# release, allowing this option to be removed.
514-
#enforce_secure_rbac = false
515-
516490
#
517491
# The URL to this worker.
518492
#
@@ -1771,6 +1745,11 @@
17711745
# (string value)
17721746
#mysql_sql_mode = TRADITIONAL
17731747

1748+
# For Galera only, configure wsrep_sync_wait causality checks on new
1749+
# connections. Default is None, meaning don't configure any setting. (integer
1750+
# value)
1751+
#mysql_wsrep_sync_wait = <None>
1752+
17741753
# DEPRECATED: If True, transparently enables support for handling MySQL Cluster
17751754
# (NDB). (boolean value)
17761755
# This option is deprecated for removal since 12.1.0.
@@ -2224,6 +2203,22 @@
22242203
# (string value)
22252204
#s3_store_host = <None>
22262205

2206+
#
2207+
# The S3 region name.
2208+
#
2209+
# This parameter will set the region_name used by boto.
2210+
# If this parameter is not set, we we will try to compute it from the
2211+
# s3_store_host.
2212+
#
2213+
# Possible values:
2214+
# * A valid region name
2215+
#
2216+
# Related Options:
2217+
# * s3_store_host
2218+
#
2219+
# (string value)
2220+
#s3_store_region_name =
2221+
22272222
#
22282223
# The S3 query token access key.
22292224
#
@@ -3941,6 +3936,22 @@
39413936
# (string value)
39423937
#s3_store_host = <None>
39433938

3939+
#
3940+
# The S3 region name.
3941+
#
3942+
# This parameter will set the region_name used by boto.
3943+
# If this parameter is not set, we we will try to compute it from the
3944+
# s3_store_host.
3945+
#
3946+
# Possible values:
3947+
# * A valid region name
3948+
#
3949+
# Related Options:
3950+
# * s3_store_host
3951+
#
3952+
# (string value)
3953+
#s3_store_region_name =
3954+
39443955
#
39453956
# The S3 query token access key.
39463957
#
@@ -4872,6 +4883,14 @@
48724883
# Deprecated group/name - [DEFAULT]/disk_formats
48734884
#disk_formats = ami,ari,aki,vhd,vhdx,vmdk,raw,qcow2,vdi,iso,ploop
48744885

4886+
# A list of strings describing allowed VMDK 'create-type' subformats that will
4887+
# be allowed. This is recommended to only include single-file-with-sparse-header
4888+
# variants to avoid potential host file exposure due to processing named
4889+
# extents. If this list is empty, then no VDMK image types allowed. Note that
4890+
# this is currently only checked during image conversion (if enabled), and
4891+
# limits the types of VMDK images we will convert from. (list value)
4892+
#vmdk_allowed_types = streamOptimized,monolithicSparse
4893+
48754894

48764895
[key_manager]
48774896

@@ -5761,7 +5780,7 @@
57615780
# ``InvalidScope`` exception will be raised. If ``False``, a message will be
57625781
# logged informing operators that policies are being invoked with mismatching
57635782
# scope. (boolean value)
5764-
#enforce_scope = false
5783+
#enforce_scope = true
57655784

57665785
# This option controls whether or not to use old deprecated defaults when
57675786
# evaluating policies. If ``True``, the old deprecated defaults are not going to
@@ -5772,7 +5791,7 @@
57725791
# deprecated policy check string is logically OR'd with the new policy check
57735792
# string, allowing for a graceful upgrade experience between releases with new
57745793
# policies, which is the default behavior. (boolean value)
5775-
#enforce_new_defaults = false
5794+
#enforce_new_defaults = true
57765795

57775796
# The relative or absolute path of a file that maps roles to permissions for a
57785797
# given service. Relative paths must be specified in relation to the

etc/glance-cache.conf

Lines changed: 18 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -429,32 +429,6 @@
429429
# * [DEFAULT]/node_staging_uri (list value)
430430
#enabled_import_methods = [glance-direct,web-download,copy-image]
431431

432-
# DEPRECATED:
433-
# Enforce API access based on common persona definitions used across OpenStack.
434-
# Enabling this option formalizes project-specific read/write operations, like
435-
# creating private images or updating the status of shared image, behind the
436-
# `member` role. It also formalizes a read-only variant useful for
437-
# project-specific API operations, like listing private images in a project,
438-
# behind the `reader` role.
439-
#
440-
# Operators should take an opportunity to understand glance's new image
441-
# policies,
442-
# audit assignments in their deployment, and update permissions using the
443-
# default
444-
# roles in keystone (e.g., `admin`, `member`, and `reader`).
445-
#
446-
# Related options:
447-
# * [oslo_policy]/enforce_new_defaults
448-
# (boolean value)
449-
# This option is deprecated for removal since Wallaby.
450-
# Its value may be silently ignored in the future.
451-
# Reason:
452-
# This option has been introduced to require operators to opt into enforcing
453-
# authorization based on common RBAC personas, which is EXPERIMENTAL as of the
454-
# Wallaby release. This behavior will be the default and STABLE in a future
455-
# release, allowing this option to be removed.
456-
#enforce_secure_rbac = false
457-
458432
#
459433
# The URL to this worker.
460434
#
@@ -1557,6 +1531,22 @@
15571531
# (string value)
15581532
#s3_store_host = <None>
15591533

1534+
#
1535+
# The S3 region name.
1536+
#
1537+
# This parameter will set the region_name used by boto.
1538+
# If this parameter is not set, we we will try to compute it from the
1539+
# s3_store_host.
1540+
#
1541+
# Possible values:
1542+
# * A valid region name
1543+
#
1544+
# Related Options:
1545+
# * s3_store_host
1546+
#
1547+
# (string value)
1548+
#s3_store_region_name =
1549+
15601550
#
15611551
# The S3 query token access key.
15621552
#
@@ -2468,7 +2458,7 @@
24682458
# ``InvalidScope`` exception will be raised. If ``False``, a message will be
24692459
# logged informing operators that policies are being invoked with mismatching
24702460
# scope. (boolean value)
2471-
#enforce_scope = false
2461+
#enforce_scope = true
24722462

24732463
# This option controls whether or not to use old deprecated defaults when
24742464
# evaluating policies. If ``True``, the old deprecated defaults are not going to
@@ -2479,7 +2469,7 @@
24792469
# deprecated policy check string is logically OR'd with the new policy check
24802470
# string, allowing for a graceful upgrade experience between releases with new
24812471
# policies, which is the default behavior. (boolean value)
2482-
#enforce_new_defaults = false
2472+
#enforce_new_defaults = true
24832473

24842474
# The relative or absolute path of a file that maps roles to permissions for a
24852475
# given service. Relative paths must be specified in relation to the

etc/glance-manage.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@
178178
# (string value)
179179
#mysql_sql_mode = TRADITIONAL
180180

181+
# For Galera only, configure wsrep_sync_wait causality checks on new
182+
# connections. Default is None, meaning don't configure any setting. (integer
183+
# value)
184+
#mysql_wsrep_sync_wait = <None>
185+
181186
# DEPRECATED: If True, transparently enables support for handling MySQL Cluster
182187
# (NDB). (boolean value)
183188
# This option is deprecated for removal since 12.1.0.

etc/glance-scrubber.conf

Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -429,32 +429,6 @@
429429
# * [DEFAULT]/node_staging_uri (list value)
430430
#enabled_import_methods = [glance-direct,web-download,copy-image]
431431

432-
# DEPRECATED:
433-
# Enforce API access based on common persona definitions used across OpenStack.
434-
# Enabling this option formalizes project-specific read/write operations, like
435-
# creating private images or updating the status of shared image, behind the
436-
# `member` role. It also formalizes a read-only variant useful for
437-
# project-specific API operations, like listing private images in a project,
438-
# behind the `reader` role.
439-
#
440-
# Operators should take an opportunity to understand glance's new image
441-
# policies,
442-
# audit assignments in their deployment, and update permissions using the
443-
# default
444-
# roles in keystone (e.g., `admin`, `member`, and `reader`).
445-
#
446-
# Related options:
447-
# * [oslo_policy]/enforce_new_defaults
448-
# (boolean value)
449-
# This option is deprecated for removal since Wallaby.
450-
# Its value may be silently ignored in the future.
451-
# Reason:
452-
# This option has been introduced to require operators to opt into enforcing
453-
# authorization based on common RBAC personas, which is EXPERIMENTAL as of the
454-
# Wallaby release. This behavior will be the default and STABLE in a future
455-
# release, allowing this option to be removed.
456-
#enforce_secure_rbac = false
457-
458432
#
459433
# The URL to this worker.
460434
#
@@ -789,6 +763,11 @@
789763
# (string value)
790764
#mysql_sql_mode = TRADITIONAL
791765

766+
# For Galera only, configure wsrep_sync_wait causality checks on new
767+
# connections. Default is None, meaning don't configure any setting. (integer
768+
# value)
769+
#mysql_wsrep_sync_wait = <None>
770+
792771
# DEPRECATED: If True, transparently enables support for handling MySQL Cluster
793772
# (NDB). (boolean value)
794773
# This option is deprecated for removal since 12.1.0.
@@ -1654,6 +1633,22 @@
16541633
# (string value)
16551634
#s3_store_host = <None>
16561635

1636+
#
1637+
# The S3 region name.
1638+
#
1639+
# This parameter will set the region_name used by boto.
1640+
# If this parameter is not set, we we will try to compute it from the
1641+
# s3_store_host.
1642+
#
1643+
# Possible values:
1644+
# * A valid region name
1645+
#
1646+
# Related Options:
1647+
# * s3_store_host
1648+
#
1649+
# (string value)
1650+
#s3_store_region_name =
1651+
16571652
#
16581653
# The S3 query token access key.
16591654
#
@@ -2581,7 +2576,7 @@
25812576
# ``InvalidScope`` exception will be raised. If ``False``, a message will be
25822577
# logged informing operators that policies are being invoked with mismatching
25832578
# scope. (boolean value)
2584-
#enforce_scope = false
2579+
#enforce_scope = true
25852580

25862581
# This option controls whether or not to use old deprecated defaults when
25872582
# evaluating policies. If ``True``, the old deprecated defaults are not going to
@@ -2592,7 +2587,7 @@
25922587
# deprecated policy check string is logically OR'd with the new policy check
25932588
# string, allowing for a graceful upgrade experience between releases with new
25942589
# policies, which is the default behavior. (boolean value)
2595-
#enforce_new_defaults = false
2590+
#enforce_new_defaults = true
25962591

25972592
# The relative or absolute path of a file that maps roles to permissions for a
25982593
# given service. Relative paths must be specified in relation to the

0 commit comments

Comments
 (0)