0PricingLogin
Helm Academy · Lesson

The templates Directory and NOTES.txt

Where manifests live and how notes are rendered.

Where Manifests Live

The templates directory is the heart of a chart. Every file here becomes a Kubernetes manifest after Helm renders it. 🧩

templates/
  deployment.yaml
  service.yaml

They Are Go Templates

Files in templates are not plain YAML: they are Go templates. Helm fills in the double-brace actions before sending them to the cluster.

spec:
  replicas: {{ .Values.replicaCount }}

All lessons in this course

  1. Generate a Skeleton with helm create
  2. Chart.yaml: Metadata and Versions
  3. The templates Directory and NOTES.txt
  4. Default values.yaml and the _helpers File
← Back to Helm Academy