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
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.
Find Trusted Cardiac Hospitals
Compare heart hospitals by city and services โ all in one place.
Explore Hospitals