Skip to content

Commit 2cf526e

Browse files
wyattwalterclaude
andauthored
docs: add Helm chart docs for extraVolumes and extraVolumeMounts (#41571)
## Summary - Adds `extraVolumes` and `extraVolumeMounts` to the deployment parameters table in the Helm chart README - Adds commented usage examples (emptyDir mounted at `/tmp`) in `values.yaml` for both parameters Follow-up to #41515, which introduced the parameters but didn't include documentation. ## Test plan - [x] Verify `values.yaml` comments render correctly and the example is valid YAML when uncommented - [x] Verify README table renders correctly on GitHub 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Added two new Helm chart parameters for configuring additional pod volumes and mounts. * Included example configurations to guide users in custom volume setup. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bc5ba09 commit 2cf526e

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

deploy/helm/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ The command uninstalls the release and removes all Kubernetes resources associat
9595
| `nodeSelector` | Node labels for pod assignment | `{}` |
9696
| `tolerations` | Tolerations for pod assignment | `[]` |
9797
| `affinity` | Affinity fod pod assignment | `{}` |
98+
| `extraVolumes` | Additional volumes to add to the pod | `[]` |
99+
| `extraVolumeMounts` | Additional volume mounts to add to the appsmith container | `[]` |
98100

99101
#### Workload kind
100102

deploy/helm/values.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,18 @@ securityContext: {}
167167
# runAsUser: 1000
168168

169169
## @param extraVolumes Additional volumes to add to the pod
170+
## e.g:
171+
## extraVolumes:
172+
## - name: tmp-dir
173+
## emptyDir: {}
170174
##
171175
extraVolumes: []
172176

173177
## @param extraVolumeMounts Additional volume mounts to add to the appsmith container
178+
## e.g:
179+
## extraVolumeMounts:
180+
## - name: tmp-dir
181+
## mountPath: /tmp
174182
##
175183
extraVolumeMounts: []
176184

0 commit comments

Comments
 (0)