> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Persistent Storage

## Supported Persistent Storage

* Local (PVC) / S3 / AWS S3 (with AK/SK or IRSA) / Azure Blob / Aliyun OSS / Tencent COS / Google GCS / Huawei OBS / VolcEngine TOS

## Display Helm Chart Values

```bash theme={null}
helm show values dify/dify
```

This is an example of the persistent storage configuration in the Helm chart values.

```yaml theme={null}
persistence:
  type: "s3"
  s3:
    endpoint: "https://xxx.r2.cloudflarestorage.com"
    accessKey: "#REPLACE_ME#"
    secretKey: "#REPLACE_ME#"
    region: "us-east-1"
    bucketName: "your-bucket-name"
    addressType: ""
    useAwsManagedIam: false
    useAwsS3: true
  ... ...
```

## The options for the `persistence.type` field

* local
* s3
* azure-blob
* aliyun-oss
* google-storage
* tencent-cos
* volcengine-tos
* huawei-obs
