File tree Expand file tree Collapse file tree
.agents/skills/helm-dev-environment Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -212,6 +212,33 @@ mise run helm:k3s:status
212212
213213---
214214
215+ ## Helm Chart Checks
216+
217+ Run the chart lint task before changing Helm templates, values overlays, or
218+ Skaffold inputs:
219+
220+ ``` bash
221+ mise run helm:lint
222+ ```
223+
224+ If Helm reports missing chart dependencies, remove the specific stale subchart
225+ archive or directory named by the error from ` deploy/helm/openshell/charts/ ` ,
226+ then rerun the lint task.
227+
228+ For example, when lint reports `chart metadata is missing these dependencies:
229+ postgresql`, remove stale PostgreSQL chart artifacts:
230+
231+ ``` bash
232+ rm -f deploy/helm/openshell/charts/postgresql-* .tgz
233+ rm -rf deploy/helm/openshell/charts/postgresql
234+ mise run helm:lint
235+ ```
236+
237+ The ` charts/ ` directory is ignored and regenerated by ` helm dependency build `
238+ for dependencies still declared in ` Chart.yaml ` .
239+
240+ ---
241+
215242## Key Files
216243
217244| Path | Purpose |
You can’t perform that action at this time.
0 commit comments