The world of DevOps has given so many opportunities for software organizations. Software development best practices have given rise to many platforms and tools to deploy software quickly and easily. Kubernetes and Helm can do so much together in helping developers deploy software with less effort. Kubernetes is the most popular open-source platform for running container-based apps in the enterprise. In fact, organizations aim at running all their production deployments on Kubernetes.
These are exciting times for those in the Kubernetes community because we’re seeing more and more users leverage its extended capabilities for even deeper operational insight and control. One such capability is the use of Helm to package and deploy individual Kubernetes applications.
What is Helm?
Helm is a popular open-source tool for managing Kubernetes clusters. It simplifies the process of installing, updating, and removing applications on your cluster by packaging them as "charts." These charts are then installed on your cluster with one command.
Helm relies on the concept of charts. A chart is an archive of all the resource definitions that are needed to deploy an application to Kubernetes, including the configuration files and scripts needed for deployment. To get started with Helm, you need to create a chart for your application or find one online that suits your needs. Today, we will see a simple tutorial on how to create a simple Helm chart.
You can quickly install software onto your Kubernetes cluster, and the public Helm charts are readily available in the ArtifactHub.
Pre-requisites for this tutorial:
- Install Helm from the official Helm website
- Install Rancher Desktop or Docker Desktop (with Kubernetes enabled)
- Signup for the Harness Software Delivery Platform to deploy to any Kubernetes environment
Tutorial: Create a Simple Helm Chart
Use your terminal to create a new directory to store our code
mkdir helm-example
cd helm-example
Create a new chart and give it a name as you wish
helm create new-chart
This creates a simple chart that will deploy an Nginx pod.
You should see the output on your terminal as below,
Creating new-chart
Change the directory into the folder of the new chart that we just created,
cd new-chart
With ls
command, you can see the contents of the new-chart folder
Chart.yaml
charts
templates
values.yaml
Keeping everything as it is, we will deploy our first chart
helm install new-chart ./helm-example/new-chart
Note: Use this command outside of your directory to set the path correctly as shown.
With the command helm ls
you can see your deployed helm chart.
You can also confirm that the pods are up and running with the command
kubectl get pods
I am using Rancher Desktop so it is easy to access the deployed chart. You can download Rancher Desktop from their official website.
And when I check my localhost:56253, I can see the nginx container running.
Like I said before, if you are using Rancher Desktop, it is very easy to access your newly deployed app.
Next, you can package this chart to share it with anyone with the command
helm package ./new-chart
It is very easy to use Helm charts and do deployments with Harness CD. Further in this tutorial, let us see how to deploy a publicly available Docker image to your Kubernetes cluster using Helm charts and a Rolling deployment strategy through Harness CD.
Assuming you have a Kubernetes cluster setup with 3 nodes, 4vCPU machine type, 16GB memory, and 100GB disk.
Head on to app.harness.io and signup if this is your first time using the Harness platform.
Once you login, switch to the NextGen mode which is the advanced and new version.
Create a project with any name you want, select continuous delivery and start creating the pipeline to deploy a MongoDB chart.
Every stage is self-explanatory - Add the required fields. Specify the service, select deployment type as Kubernetes, add the manifest details as Helm chart and you need to create a New HTTP Helm repo connector.
I have already created the HTTP Helm Repo Connector, you have to create a new one if you are new.
Once you click on + HTTP Helm Repo Connector, it will ask for some details and you need to provide them. Provide Helm Repository URL as https://charts.bitnami.com/bitnami as we are using the official chart.
In the infrastructure setup, give cluster details.
In the execution step, select the Rolling deployment strategy.
Once everything is set up, save the pipeline and run it.
You should see a successful deployment of the MongoDB image.
Confirm that by going to your cluster set-up. I have my cluster created on GCP and I can confirm that the MongoDB image has been successfully deployed through the Helm chart.
Congratulations!!! You have successfully learned how to create a helm chart and deploy it with the help of Harness.