helm-templates

Installation
SKILL.md

Helm Templates

Working with Helm templates and template functions.

Basic Templating

Values Access

apiVersion: v1
kind: Pod
metadata:
  name: {{ .Values.name }}
  namespace: {{ .Release.Namespace }}
spec:
  containers:
  - name: {{ .Chart.Name }}
    image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Installs
35
GitHub Stars
173
First Seen
Jan 22, 2026
helm-templates — thebushidocollective/han