Skip to content

Commit

Permalink
[bitnami/seaweedfs] Add support for s3.allowEmptyFolder (#32234)
Browse files Browse the repository at this point in the history
* [bitnami/seaweedfs] Add support for `s3.allowEmptyFolder`

Signed-off-by: Sylvain Joubert <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <[email protected]>

---------

Signed-off-by: Sylvain Joubert <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
sjoubert and bitnami-bot authored Mar 3, 2025
1 parent 74b219d commit ce208fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions bitnami/seaweedfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 4.7.0 (2025-02-21)
## 4.8.0 (2025-03-03)

* [bitnami/seaweedfs] Set `usePasswordFiles=true` by default ([#32119](https://github.com/bitnami/charts/pull/32119))
* [bitnami/seaweedfs] Add support for `s3.allowEmptyFolder` ([#32234](https://github.com/bitnami/charts/pull/32234))

## 4.7.0 (2025-02-24)

* [bitnami/seaweedfs] Set `usePasswordFiles=true` by default (#32119) ([dbc5cb6](https://github.com/bitnami/charts/commit/dbc5cb6ebacef3036f8bbb32ae1d761f171b8bdd)), closes [#32119](https://github.com/bitnami/charts/issues/32119)

## <small>4.6.2 (2025-02-20)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/seaweedfs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ name: seaweedfs
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/seawwedfs
- https://github.com/bitnami/containers/tree/main/bitnami/seaweedfs
version: 4.7.0
version: 4.8.0
1 change: 1 addition & 0 deletions bitnami/seaweedfs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,7 @@ enabled = false
| `s3.containerSecurityContext.seccompProfile.type` | Set seccomp profile in Amazon S3 API container | `RuntimeDefault` |
| `s3.logLevel` | Amazon S3 API log level [0|1|2|3|4] | `1` |
| `s3.bindAddress` | Amazon S3 API bind address | `0.0.0.0` |
| `s3.allowEmptyFolder` | Allow empty folders in Amazon S3 API | `true` |
| `s3.auth.enabled` | Enable Amazon S3 API authentication | `false` |
| `s3.auth.existingSecret` | Existing secret with Amazon S3 API authentication configuration | `""` |
| `s3.auth.existingSecretConfigKey` | Key of the above existing secret with S3 API authentication configuration, defaults to `config.json` | `""` |
Expand Down
1 change: 1 addition & 0 deletions bitnami/seaweedfs/templates/s3/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ spec:
- -metricsPort={{ .Values.s3.containerPorts.metrics }}
{{- end }}
- -filer={{ printf "%s:%d" (include "seaweedfs.filer.fullname" .) (int .Values.filer.service.ports.http) }}
- -allowEmptyFolder={{ .Values.s3.allowEmptyFolder }}
{{- end }}
env:
- name: BITNAMI_DEBUG
Expand Down
2 changes: 2 additions & 0 deletions bitnami/seaweedfs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2382,6 +2382,8 @@ s3:
## @param s3.bindAddress Amazon S3 API bind address
##
bindAddress: 0.0.0.0
## @param s3.allowEmptyFolder Allow empty folders in Amazon S3 API
allowEmptyFolder: true
## S3 Authentication
## ref: https://github.com/seaweedfs/seaweedfs/wiki/Amazon-S3-API#s3-authentication
## @param s3.auth.enabled Enable Amazon S3 API authentication
Expand Down

0 comments on commit ce208fa

Please sign in to comment.