helm-playground icon indicating copy to clipboard operation
helm-playground copied to clipboard

Interactive site to debug Helm templating (& syntax cheatsheet)

Results 4 helm-playground issues
Sort by recently updated
recently updated
newest added

Html tags without a language attribute are an accessibility issue. https://dequeuniversity.com/rules/axe/4.7/html-has-lang ![Screenshot_20230727_035548_Firefox](https://github.com/shipmight/helm-playground/assets/5070516/c8469f3d-a1a8-48fc-be35-afb6725d5053)

The most common built-in objects were implemented in commit 9c878dcd1c00e9323302a7562a50e46c44e0ca17 Implement the remaining objects that are documented in Helm docs: https://helm.sh/docs/chart_template_guide/builtin_objects/ Missing objects at the time of writing: - `.Files`...

enhancement
good first issue

Implement `tpl`. For reference, `include` was implented in commit b131bd0ce74e502263b022e65575526505af7b8b

enhancement

Template ``` {{ fail "message" }} name: {{ .Values.unset | required "unset messsage" }} ``` and no values produce following output: ``` name: ```