You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To add Volcengine TOS storage support, you can follow the existing pattern for integrating new storage services. Here are the steps:
Define Environment Variables:
Add new environment variables for Volcengine TOS similar to the existing ones for S3, Azure Blob, and Aliyun OSS.
Update Configuration:
Modify the configuration section to include Volcengine TOS as a storage type.
Implement Storage Integration:
Implement the necessary code to handle file operations (upload, download, delete) using Volcengine TOS SDK.
Example Configuration
Add the following environment variables for Volcengine TOS:
- TOS_ENDPOINT: TOS endpoint address
- TOS_BUCKET_NAME: TOS bucket name
- TOS_ACCESS_KEY: TOS Access Key
- TOS_SECRET_KEY: TOS Secret Key
- TOS_REGION: TOS region information
Update Configuration Section
Modify the configuration section to include Volcengine TOS:
- STORAGE_TYPE
Type of storage facility
- local (default)
- s3
- azure-blob
- aliyun-oss
- tos # Add this line for Volcengine TOS
- TOS_ENDPOINT: TOS endpoint address
- TOS_BUCKET_NAME: TOS bucket name
- TOS_ACCESS_KEY: TOS Access Key
- TOS_SECRET_KEY: TOS Secret Key
- TOS_REGION: TOS region information
Implement Storage Integration
Implement the necessary code to handle file operations using the Volcengine TOS SDK. Ensure you follow the same structure as the existing storage integrations.
No description provided.
The text was updated successfully, but these errors were encountered: