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

chore: switch default S3 storage to MinIO #878

Merged
merged 1 commit into from
Apr 4, 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 changes/878.changed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`MinIO` is now the default S3 storage, instead of `localstack`.
7 changes: 7 additions & 0 deletions charts/substra-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

<!-- towncrier release notes start -->

## [25.1.0] - 2024-04-04

### Changed
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought you added towncrier on this changelog too ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but for now the CI check hasn't been changed yet, and there is a question on whether it's useful to use towncrier for manual updates given that we bump the version number at every change.


- The default S3 storage is now MinIO, instead of localstack.


## [25.0.0] - 2024-04-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: substra-backend
home: https://github.com/Substra
version: 25.0.0
version: 25.1.0
appVersion: 0.45.0
kubeVersion: ">= 1.19.0-0"
description: Main package for Substra
Expand Down
4 changes: 2 additions & 2 deletions charts/substra-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ docker-registry:
## @skip minio
##
minio:
enabled: false
enabled: true
auth:
rootUser: minio
rootPassword: minio1234
Expand All @@ -892,7 +892,7 @@ minio:
## @skip localstack
##
localstack:
enabled: true
enabled: false
service:
edgeService:
nodePort: ""
Expand Down
Loading