storageClasses: - # -- `StorageClass` Name. It is important. name: juicefs-sc # -- Default is `true` will create a new `StorageClass`. It will create `Secret` and `StorageClass` used by CSI Driver. enabled: true # -- Either `Delete` or `Retain`. Refer to [this document](https://juicefs.com/docs/csi/guide/resource-optimization#reclaim-policy) for more information. reclaimPolicy: Delete # -- Additional annotations for this `StorageClass`, e.g. make it default. # annotations: # storageclass.kubernetes.io/is-default-class: "true" backend: # -- The JuiceFS file system name name: "juicefs" # -- Connection URL for metadata engine (e.g. Redis), for community edition use only. Refer to [this document](https://juicefs.com/docs/community/databases_for_metadata) for more information. metaurl: "redis://:123456@redis-service.default:6379/1" # -- Object storage type, such as `s3`, `gs`, `oss`, for community edition use only. Refer to [this document](https://juicefs.com/docs/community/how_to_setup_object_storage) for the full supported list. storage: "minio" # -- Bucket URL, for community edition use only. Refer to [this document](https://juicefs.com/docs/community/how_to_setup_object_storage) to learn how to setup different object storage. bucket: "http://minio.zhujq:9000/juicefs" # -- JuiceFS managed token, for cloud service use only. Refer to [this document](https://juicefs.com/docs/cloud/acl) for more details. token: "" # -- Access key for object storage accessKey: "minio" # -- Secret key for object storage secretKey: "minio123"