Skip to content

Commit

Permalink
update: #460
Browse files Browse the repository at this point in the history
  • Loading branch information
gschmutz committed Jan 12, 2025
1 parent 8fb023b commit 1441ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11994,10 +11994,10 @@ services:
{% endif -%} {# KESTRA_storage_type = local #}
{%if KESTRA_storage_type == 'minio' and MINIO_enable | default(false) %}
minio:
endpoint: "{{minioEndpoint | default(omit) }}"
endpoint: {{s3Endpoint | default(omit) }}
port: 9000
accessKey: {{s3AccessKey | mandatory('s3AccessKey must be defined, if using minIO use the MINIO_access_key in config.yml') }}
secretKey: ${PLATYS_AWS_SECRET_ACCESS_KEY:-{{MINIO_secret_key}}}
secretKey: {{s3SecretAccessKey}}
region: {{s3DefaultRegion if s3DefaultRegion is defined and s3DefaultRegion else omit}}
bucket: {{KESTRA_bucket_name}}
{% endif -%} {# KESTRA_storage_type = 'minio' #}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1178,6 +1178,7 @@
KESTRA_database_name: postgres
# the storage type, one of 'local', 's3', 'minixo'
KESTRA_storage_type: local
KESTRA_bucket_name: kestra-bucket
KESTRA_provision_tutorial_flows: false
KESTRA_auth_enabled: false
KESTRA_username: [email protected]
Expand Down

0 comments on commit 1441ed3

Please sign in to comment.