diff options
| author | Max Roby <max@lil-mac.lan> | 2023-11-23 12:02:53 +0100 |
|---|---|---|
| committer | Chris Lu <chrislusf@users.noreply.github.com> | 2023-11-24 06:40:19 -0800 |
| commit | 2920949defc1d8e641126e15624a27c30267f7fd (patch) | |
| tree | 89389c05e2206fe6350b30f856fa58ea3b4dbd72 | |
| parent | 5db0064ffe209703c5889d15d8a5fd51b83da1d9 (diff) | |
| download | seaweedfs-2920949defc1d8e641126e15624a27c30267f7fd.tar.xz seaweedfs-2920949defc1d8e641126e15624a27c30267f7fd.zip | |
templates/post-install-user-hook.yaml
| -rw-r--r-- | k8s/charts/seaweedfs/values.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/k8s/charts/seaweedfs/values.yaml b/k8s/charts/seaweedfs/values.yaml index 3ee159ebb..a94bbb745 100644 --- a/k8s/charts/seaweedfs/values.yaml +++ b/k8s/charts/seaweedfs/values.yaml @@ -576,15 +576,19 @@ filer: # should have a secret key called seaweedfs_s3_config with an inline json configure existingConfigSecret: "" auditLogConfig: {} - # You may specify buckets and users to be created during the install process - # createBuckets: + # You may specify buckets and users to be created during the install process + # The user's credentials must be in an existing secret using the key names: + # 'ACCESS_KEY_ID' and 'ACCESS_SECRET_KEY' + # The secret name should use underscore '_' separators, + # using a dash '-' will case variable expansion to fail inside the job. + #createBuckets: # - bucket-a # - bucket-b # createUsers: # - name: friend # actions: "read,write,list" # buckets: "bucket-b" - # secretName: friend-s3-creds + # secretName: friend_s3_creds s3: |
