You can enable blog/object storage for Pachyderm by updating the pachd.storage section in your Helm chart. The necessary configuration options depend on your chosen blob storage provider.
Before You Start #
- You should be familiar with the storageURL options in goCDK related to your blob storage provider.
 - You should have the necessary credentials and permissions to create a bucket or container in your blob storage provider.
 
How to Set Up Blob Storage #
Navigate to your
values.yamlfile or obtain your current Helmvalues.yamloverrides:helm get values pachyderm > values.yamlAdd the following
pachd.storagefields to yourvalues.yamlfile:pachd: storage: gocdkEnabled: true storageURL: "s3://my-bucket" or "gs://my-bucket" or "azure://my-container"Update the storageURL to include provider-specific configuration options as needed; for options, see the related goCDK packages.
- Save your changes and upgrade your cluster:
helm upgrade pachyderm pachyderm/pachyderm -f values.yaml 
Limitations #
Some configuration settings such as verifySSL may not be passable via the storageURL as query parameters. In such cases, you can use the pachd.storage section to set these options.