Browse Source

Add comments to values.yaml

pull/8389/head
Richard Chen 2 days ago
parent
commit
7116a3e333
Failed to extract signature
  1. 21
      k8s/charts/seaweedfs/values.yaml

21
k8s/charts/seaweedfs/values.yaml

@ -890,6 +890,13 @@ filer:
# set to the name of an existing kubernetes Secret with the s3 json config file # set to the name of an existing kubernetes Secret with the s3 json config file
# should have a secret key called seaweedfs_s3_config with an inline json configure # should have a secret key called seaweedfs_s3_config with an inline json configure
existingConfigSecret: null existingConfigSecret: null
# Optionally provide explicit admin credentials for the S3 gateway.
# When set, these are used as the admin identity in the generated s3 secret
# instead of auto-generating random credentials.
# credentials:
# admin:
# accessKey: ""
# secretKey: ""
auditLogConfig: {} auditLogConfig: {}
# You may specify buckets to be created during the install or upgrade process. # You may specify buckets to be created during the install or upgrade process.
# Buckets may be exposed publicly by setting `anonymousRead` to `true` # Buckets may be exposed publicly by setting `anonymousRead` to `true`
@ -918,6 +925,13 @@ s3:
# set to the name of an existing kubernetes Secret with the s3 json config file # set to the name of an existing kubernetes Secret with the s3 json config file
# should have a secret key called seaweedfs_s3_config with an inline json config # should have a secret key called seaweedfs_s3_config with an inline json config
existingConfigSecret: null existingConfigSecret: null
# Optionally provide explicit admin credentials for the S3 gateway.
# When set, these are used as the admin identity in the generated s3 secret
# instead of auto-generating random credentials.
# credentials:
# admin:
# accessKey: ""
# secretKey: ""
auditLogConfig: {} auditLogConfig: {}
# You may specify buckets to be created during the install or upgrade process. # You may specify buckets to be created during the install or upgrade process.
# Buckets may be exposed publicly by setting `anonymousRead` to `true` # Buckets may be exposed publicly by setting `anonymousRead` to `true`
@ -1421,6 +1435,13 @@ allInOne:
# Set to the name of an existing kubernetes Secret with the s3 json config file # Set to the name of an existing kubernetes Secret with the s3 json config file
# should have a secret key called seaweedfs_s3_config with an inline json config # should have a secret key called seaweedfs_s3_config with an inline json config
existingConfigSecret: null existingConfigSecret: null
# Optionally provide explicit admin credentials for the S3 gateway.
# When set, these are used as the admin identity in the generated s3 secret
# instead of auto-generating random credentials.
# credentials:
# admin:
# accessKey: ""
# secretKey: ""
auditLogConfig: null # S3 audit log configuration (null inherits from s3.auditLogConfig) auditLogConfig: null # S3 audit log configuration (null inherits from s3.auditLogConfig)
# You may specify buckets to be created during the install process. # You may specify buckets to be created during the install process.
# Buckets may be exposed publicly by setting `anonymousRead` to `true` # Buckets may be exposed publicly by setting `anonymousRead` to `true`

Loading…
Cancel
Save