Skip to content
Snippets Groups Projects
Commit bbc6dd83361e authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:pencil: Add option to activate S3 storage for attachments

parent 31234ceee163
No related branches found
No related tags found
1 merge request!191📝 Add option to activate S3 storage for attachments
This commit is part of merge request !191. Comments created here will be created in the context of that merge request.
......@@ -7,6 +7,8 @@
When copying python packages to build the image, use hg archive rather than rsync.
docker_dev_start: Add option to activate S3 storage for attachments (requires the s3_attachment_storage module to be installed to work)
20.3.1
------
......
......@@ -54,5 +54,5 @@
_logger = logging.getLogger(__name__)
__version__ = "3.12.0"
__version__ = "3.12.1"
__date__ = "2017-08-11"
......@@ -58,5 +58,5 @@
__date__ = "2017-08-11"
__updated__ = "2023-04-26"
__updated__ = "2023-05-15"
def __parser(project_name: str) -> ArgumentParser:
......@@ -413,6 +413,15 @@
type=int,
)
# workers options
parser.add_argument(
"--activate-s3-storage",
help="Activate S3 storage using the provided bucket as the main one [default: "
"%(default)s]",
default=None,
type=str,
)
return parser
......@@ -481,6 +490,7 @@
# XXX should that variable be called multi_workers?
longpolling = workers > 0
test_tags = nmspc.test_tags
activate_s3_storage = nmspc.activate_s3_storage
if restore_filename:
if not database:
......@@ -532,6 +542,13 @@
"ports": {},
"environment": {},
}
if activate_s3_storage:
options["environment"].update(
{
"s3AttachmentStorageActivate": "true",
"s3AttachmentStorageServerBucket": activate_s3_storage,
}
)
# if not longpolling:
options["hostname"] = project_name
# TODO detect that from configuration or force it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment