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

[bitnami/seaweedfs]: correct typo in values.yaml regarding s3.auth.existingSecret #31339

Merged
merged 2 commits into from
Jan 13, 2025
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
6 changes: 5 additions & 1 deletion bitnami/seaweedfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 4.3.1 (2025-01-13)

* [bitnami/seaweedfs]: correct typo in values.yaml regarding s3.auth.existingSecret ([#31339](https://github.com/bitnami/charts/pull/31339))

## 4.3.0 (2025-01-10)

* [bitnami/seaweedfs] Make database check on start optional ([#31277](https://github.com/bitnami/charts/pull/31277))
* [bitnami/seaweedfs] Make database check on start optional (#31277) ([ddb8a97](https://github.com/bitnami/charts/commit/ddb8a97d80c5bc87f2c33be751fbc35797f5f1be)), closes [#31277](https://github.com/bitnami/charts/issues/31277)

## <small>4.2.1 (2025-01-07)</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.3.0
version: 4.3.1
8 changes: 4 additions & 4 deletions bitnami/seaweedfs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -842,10 +842,10 @@ enabled = false
| `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` | `""` |
| `s3.auth.adminAccessKeyId` | Amazon S3 API access key with admin privileges. Ignored if `security.mTLS.volume.existingSecret` is set | `""` |
| `s3.auth.adminSecretAccessKey` | Amazon S3 API secret key with admin privileges. Ignored if `security.mTLS.volume.existingSecret` is set | `""` |
| `s3.auth.readAccessKeyId` | Amazon S3 API read access key with read-only privileges. Ignored if `security.mTLS.volume.existingSecret` is set | `""` |
| `s3.auth.readSecretAccessKey` | Amazon S3 API read secret key with read-only privileges. Ignored if `security.mTLS.volume.existingSecret` is set | `""` |
| `s3.auth.adminAccessKeyId` | Amazon S3 API access key with admin privileges. Ignored if `s3.auth.existingSecret` is set | `""` |
| `s3.auth.adminSecretAccessKey` | Amazon S3 API secret key with admin privileges. Ignored if `s3.auth.existingSecret` is set | `""` |
| `s3.auth.readAccessKeyId` | Amazon S3 API read access key with read-only privileges. Ignored if `s3.auth.existingSecret` is set | `""` |
| `s3.auth.readSecretAccessKey` | Amazon S3 API read secret key with read-only privileges. Ignored if `s3.auth.existingSecret` is set | `""` |
| `s3.command` | Override default Amazon S3 API container command (useful when using custom images) | `[]` |
| `s3.args` | Override default Amazon S3 API container args (useful when using custom images) | `[]` |
| `s3.automountServiceAccountToken` | Mount Service Account token in Amazon S3 API pods | `false` |
Expand Down
8 changes: 4 additions & 4 deletions bitnami/seaweedfs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2231,10 +2231,10 @@ s3:
## @param s3.auth.enabled Enable Amazon S3 API authentication
## @param s3.auth.existingSecret Existing secret with Amazon S3 API authentication configuration
## @param s3.auth.existingSecretConfigKey Key of the above existing secret with S3 API authentication configuration, defaults to `config.json`
## @param s3.auth.adminAccessKeyId Amazon S3 API access key with admin privileges. Ignored if `security.mTLS.volume.existingSecret` is set
## @param s3.auth.adminSecretAccessKey Amazon S3 API secret key with admin privileges. Ignored if `security.mTLS.volume.existingSecret` is set
## @param s3.auth.readAccessKeyId Amazon S3 API read access key with read-only privileges. Ignored if `security.mTLS.volume.existingSecret` is set
## @param s3.auth.readSecretAccessKey Amazon S3 API read secret key with read-only privileges. Ignored if `security.mTLS.volume.existingSecret` is set
## @param s3.auth.adminAccessKeyId Amazon S3 API access key with admin privileges. Ignored if `s3.auth.existingSecret` is set
## @param s3.auth.adminSecretAccessKey Amazon S3 API secret key with admin privileges. Ignored if `s3.auth.existingSecret` is set
## @param s3.auth.readAccessKeyId Amazon S3 API read access key with read-only privileges. Ignored if `s3.auth.existingSecret` is set
## @param s3.auth.readSecretAccessKey Amazon S3 API read secret key with read-only privileges. Ignored if `s3.auth.existingSecret` is set
##
auth:
enabled: false
Expand Down
Loading