Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

Helm Tutorials: Complete tutorials of Helm Hooks

Step 1: Understanding Helm Hooks

Helm hooks are a feature introduced in Helm 2.0 that allows you to perform actions during the release lifecycle of a Helm chart. Hooks can be used to execute scripts, run commands, or trigger other actions at specific points in the release process. Helm supports several types of hooks, including pre-install, post-install, pre-upgrade, post-upgrade, pre-delete, and post-delete hooks.

Hooks is a helm feature that allows helm to launch resources into the cluster in response to helm lifecycle events (such as a chart being installed). All it takes to turn a regular Kubernetes object into a helm hook is to apply an annotation that indicates which lifecycle event the object should be tied to.

Helm hooks provide a way to apply certain Kubernetes resources (usually Jobs) at a particular stage of a deployment. Most developers leverage hooks to:

  • Load a ConfigMap or Secret during install before any other charts are loaded
  • Execute a Job to back up a database before installing a new chart and a second job to restore the data in the database
  • Run a job before deleting a release to gracefully take out a service before completely removing it

Hook works like a regular template, but they have special annotations that cause helm to utilize them differently. In this section, we will cover the basic usage pattern for hooks.

We can define Helm hooks that will be executed at these points in the releaseโ€™s lifecycle:

  • pre-install โ€“ Before the release is installed.
  • post-install โ€“ After the release is installed
  • pre-delete โ€“ Before the release is uninstalled.
  • post-delete โ€“ After the release is uninstalled.
  • pre-upgrade โ€“ Before the release is upgraded.
  • post-upgrade โ€“ After the release is upgraded.
  • pre-rollback โ€“ Before the release is rolled back to a previous version.
  • post-rollbackย โ€“ After the release is rolled back to a previous version.

Helm Hook

Hooks is a helm feature that allows helm to launch resources into the cluster in response to helm lifecycle events (such as a chart being installed). All it takes to turn a regular Kubernetes object into a helm hook is to apply an annotation that indicates which lifecycle event the object should be tied to.

Helm hooks provide a way to apply certain Kubernetes resources (usually Jobs) at a particular stage of a deployment. Most developers leverage hooks to:

  • Load a ConfigMap or Secret during install before any other charts are loaded
  • Execute a Job to back up a database before installing a new chart and a second job to restore the data in the database
  • Run a job before deleting a release to gracefully take out a service before completely removing it

Hook works like a regular template, but they have special annotations that cause helm to utilize them differently. In this section, we will cover the basic usage pattern for hooks.

Step 2: Creating a Helm Chart

Before diving into hooks, let’s assume you have a basic understanding of creating Helm charts. If you’re new to Helm, it’s recommended to familiarize yourself with chart creation first. You can refer to the official Helm documentation for creating a simple chart.

Step 3: Adding a Pre-Install Hook

To add a pre-install hook to your Helm chart, you need to create a templates directory in your chart’s root directory (if it doesn’t exist already). Inside the templates directory, create a YAML file for your hook. For example, let’s create a file named pre-install-hook.yaml.

In the pre-install-hook.yaml file, define the hook using the following structure:


apiVersion: batch/v1
kind: Job
metadata:
  name: {{ include "mychart.fullname" . }}-pre-install-hook
  labels:
    app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
    helm.sh/hook: pre-install
    helm.sh/hook-weight: "1"
    helm.sh/hook-delete-policy: hook-succeeded
spec:
  template:
    spec:
      containers:
        - name: {{ .Chart.Name }}
          image: busybox
          command: ['sh', '-c', 'echo "Running pre-install hook"']
      restartPolicy: Never
Code language: JavaScript (javascript)

In this example, we define a Kubernetes Job that runs a container with the busybox image and executes a simple command.

Step 4: Adding a Post-Install Hook

Similar to the pre-install hook, you can add a post-install hook to your chart. Create a new YAML file in the templates directory, for example, post-install-hook.yaml.

In the post-install-hook.yaml file, define the hook using the following structure:


apiVersion: batch/v1
kind: Job
metadata:
  name: {{ include "mychart.fullname" . }}-post-install-hook
  labels:
    app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
    helm.sh/hook: post-install
    helm.sh/hook-weight: "1"
    helm.sh/hook-delete-policy: hook-succeeded
spec:
  template:
    spec:
      containers:
        - name: {{ .Chart.Name }}
          image: busybox
          command: ['sh', '-c', 'echo "Running post-install hook"']
      restartPolicy: Never
Code language: JavaScript (javascript)

This hook follows a similar structure as the pre-install hook but with a different name and the helm.sh/hook set to post-install.

Step 5: Updating the Chart’s hooks Section

Now that we have defined our hooks, we need to update the chart’s hooks section in the templates/hooks.yaml file. If the file doesn’t exist, create it.

Add the following code to the hooks.yaml file:


{{- if .Values.hooks.preInstall.enabled -}}
preInstall:
  - name: {{ include "mychart.fullname" . }}-pre-install
    manifest: {{ include "mychart.pre
Code language: PHP (php)

Reference

  • https://medium.com/@pratyush.mathur/introduction-to-helm-hooks-460c704021b
  • https://kodekloud.com/blog/chart-hooks/#
  • https://medium.com/@pratyush.mathur/introduction-to-helm-hooks-460c704021b

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Top 10 Integration Platform as a Service (iPaaS) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In todayโ€™s fast-paced digital world, businesses are leveraging multiple software applications, cloud services, and data sources to streamline operations. However, the challenge lies in integrating these…

Read More

IReviewed Blog’s Post List

truereviewnow.com is a portal for product review and rating. truereviewnow.com is having very in-depth analysis of review and testimony of Mobiles, Laptop, Electronics Gadgets, Airports, Boradbands, Movies…

Read More

Top 10 Social Media Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, social media continues to be a cornerstone of digital marketing strategies, shaping how businesses connect with their audiences. With millions of users interacting on…

Read More

Top 10 Drone Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, drones are not only revolutionizing industries like agriculture, logistics, filmmaking, and construction, but also the way we collect and process data. Drone software is…

Read More

Top 10 AI Survey Automation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI Survey Automation Tools are transforming the way businesses, researchers, and organizations gather and analyze feedback. Traditional survey platforms often relied on static questions…

Read More

Top 10 AI Animation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI animation tools are revolutionizing how creators, businesses, and educators bring stories to life, making animation accessible to all skill levels. These tools leverage…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
0
Would love your thoughts, please comment.x
()
x