Skip to content
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ This project is deployed in accordance to the [DargStack template](https://githu

The job scheduler's AWS bucket name.

- ### `jobber_aws-configuration`

The job scheduler's AWS configuration.

- ### `jobber_aws-credentials`

The job scheduler's AWS credentials.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[default]
region = nl-ams
region = <s3-region>

s3 =
endpoint_url = https://s3.nl-ams.scw.cloud
endpoint_url = <s3-endpoint>
signature_version = s3v4
max_concurrent_requests = 100
max_queue_size = 1000
multipart_threshold = 50MB
# Edit the multipart_chunksize value according to the file sizes that you want to upload. The present configuration allows to upload files up to 10 GB (100 requests * 10MB). For example setting it to 5GB allows you to upload files up to 5TB.
multipart_chunksize = 10MB
s3api =
endpoint_url = https://s3.nl-ams.scw.cloud
endpoint_url = <s3-endpoint>

[plugins]
endpoint = awscli_plugin_endpoint
6 changes: 5 additions & 1 deletion src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ secrets:
jobber_aws-credentials:
# The job scheduler's AWS credentials.
file: ./secrets/jobber/aws-credentials.secret
jobber_aws-configuration:
# The job scheduler's AWS configuration.
file: ./secrets/jobber/aws-configuration.secret
jobber_msmtprc:
# The job scheduler's SMTP client configuration.
file: ./secrets/jobber/msmtprc.secret
Expand Down Expand Up @@ -170,12 +173,13 @@ services:
target: /etc/aliases
- jobber_aws-bucket
- jobber_aws-credentials
- source: jobber_aws-configuration
target: /home/jobberuser/.aws/config
- source: jobber_msmtprc
target: /etc/msmtprc
volumes:
- ../production/backups/postgres/:/backups/
- ./configurations/jobber/.jobber:/home/jobberuser/.jobber:ro
- ./configurations/jobber/aws-config:/home/jobberuser/.aws/config:ro
minio: #DARGSTACK-REMOVE
# You can access the s3 console at [minio.localhost](https://minio.localhost/).
# You can access the s3 api service at [s3.localhost](https://s3.localhost/) if you want to access via cli from outside the stack.
Expand Down