0PricingLogin
Helm Academy · Lesson

Release Metadata via .Release

Name, namespace, revision, and install flags.

Meet the Release Object

While .Values holds config, .Release holds facts about this specific install: who it is, where it lives, and which revision it is.

The Release Name

.Release.Name is the name you gave the install. It is the most common way to prefix resource names so they stay unique. 🏷️

# helm install web ./mychart
name: {{ .Release.Name }}-config

All lessons in this course

  1. The Values Object and Nested Access
  2. Release Metadata via .Release
  3. Chart and Capabilities Objects
  4. Files, Template, and the Root Context
← Back to Helm Academy