Skip to content

Commit

Permalink
docs(s3-proxy): Add special cases part
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyno-zeta committed Jun 19, 2023
1 parent 6fda814 commit b633733
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions charts/s3-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,31 @@ $ helm install oxynozeta-stable/s3-proxy --name my-release -f values.yaml
```

> **Tip**: You can use the default [values.yaml](values.yaml)
## Cases

### Temporary directory for uploads

When uploads are enabled, files will be uploaded in a temporary file written in OS temporary directory (`/tmp` in the container).

Here is an example to have a volume for that directory:

```yaml
extraVolumesMounts:
- name: tmp
mountPath: /tmp

extraVolumes:
- name: tmp
ephemeral:
volumeClaimTemplate:
# metadata:
# labels:
# type: my-frontend-volume
spec:
accessModes: ["ReadWriteOnce"]
storageClassName: "scratch-storage-class"
resources:
requests:
storage: 50Gi
```

0 comments on commit b633733

Please sign in to comment.