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
3 changes: 3 additions & 0 deletions bin/k8s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ rustfs:
rustfs:
access_key: texera_rustfs
secret_key: password
extraEnv:
- name: RUSTFS_CORS_ALLOWED_ORIGINS
value: "*"
config:
rustfs:
# Must match storage.s3.region: the region is part of the SigV4 scope.
Expand Down
1 change: 1 addition & 0 deletions bin/single-node/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ services:
environment:
- RUSTFS_ACCESS_KEY=${STORAGE_S3_AUTH_USERNAME}
- RUSTFS_SECRET_KEY=${STORAGE_S3_AUTH_PASSWORD}
- RUSTFS_CORS_ALLOWED_ORIGINS=*
# Must match STORAGE_S3_REGION: the region is part of the SigV4 scope, and
# LakeFS sends its blockstore region on every request.
- RUSTFS_REGION=${STORAGE_S3_REGION}
Expand Down
1 change: 1 addition & 0 deletions file-service/src/main/resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ services:
environment:
- RUSTFS_ACCESS_KEY=texera_rustfs
- RUSTFS_SECRET_KEY=password
- RUSTFS_CORS_ALLOWED_ORIGINS=*
# Must match the region the AWS SDK signs with: it is part of the SigV4 scope.
- RUSTFS_REGION=us-west-2
- RUSTFS_CONSOLE_ENABLE=true
Expand Down
Loading