0PricingLogin
Helm Academy · Lesson

A Minimal Deployment Template

Turning a static manifest into a chart template.

From Static Manifest to Template

A chart is just a folder of templates. Each template is a Kubernetes manifest with placeholders Helm fills in at install time.

Start With a Plain Deployment

Before adding any magic, write the manifest you already know. Here is a hard-coded Deployment running one nginx pod.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-app
spec:
  replicas: 1
  selector:
    matchLabels:
      app: my-app

All lessons in this course

  1. A Minimal Deployment Template
  2. Parameterizing the Container Image
  3. Adding a Service Template
  4. Installing and Iterating Your Chart
← Back to Helm Academy