Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert sample object store configuration to YAML and support configuring inline #17222

Merged
merged 3 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/object_store_conf.sample.yml
1 change: 0 additions & 1 deletion config/object_store_conf.xml.sample

This file was deleted.

18 changes: 18 additions & 0 deletions doc/source/admin/galaxy_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1442,6 +1442,24 @@
:Type: str


~~~~~~~~~~~~~~~~~~~~~~~
``object_store_config``
~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Rather than specifying an object_store_config_file, the object
store configuration can be embedded into Galaxy's config with this
option.
This option has no effect if the file specified by
object_store_config_file exists. Otherwise, if this option is set,
it overrides any other objectstore settings.
The syntax, available instrumenters, and documentation of their
options is explained in detail in the object store sample
configuration file, `object_store_conf.sample.yml`
:Default: ``None``
:Type: seq


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``object_store_cache_monitor_driver``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
10 changes: 10 additions & 0 deletions lib/galaxy/config/sample/galaxy.yml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,16 @@ galaxy:
# <config_dir>.
#object_store_config_file: object_store_conf.xml

# Rather than specifying an object_store_config_file, the object store
# configuration can be embedded into Galaxy's config with this option.
# This option has no effect if the file specified by
# object_store_config_file exists. Otherwise, if this option is set,
# it overrides any other objectstore settings.
# The syntax, available instrumenters, and documentation of their
# options is explained in detail in the object store sample
# configuration file, `object_store_conf.sample.yml`
#object_store_config: null

# Specify where cache monitoring is driven for caching object stores
# such as S3, Azure, and iRODS. This option has no affect on disk
# object stores. For production instances, the cache should be
Expand Down
Loading
Loading