Debug School

Chandrashekhar
Chandrashekhar

Posted on

Helm Training - Day 1

Q1 - What is helm?
Ans. Helm is a deployment tool that helps you to manage complexity, easy updates, simple sharing, rollbacks and use of software built for Kubernetes.

Q2 - Top 5 reason for using helm?
Ans. Following are the reasons.

  1. Boosts productivity
  2. Enhances deployment speed
  3. Reduces Complexity
  4. Simplifies Deployments
  5. Sharing and Publishing

Q3 - How helm works? Inlcude some pic
Ans. Helm is a Kubernetes deployment tool for automating creation, packaging, configuration, and deployment of applications and services to Kubernetes clusters.
Image description

Q4 - Helm Architecture? Inlcude some pic
Ans.
https://helm.sh/docs/topics/architecture/
Image description

Q5 - What is chart and what it contains?
Ans. Helm uses a packaging format called charts. A chart is a collection of files that describe a related set of Kubernetes resources.
Helm Charts help you define, install, and upgrade even the most complex Kubernetes application.
It contains yaml files following are.

  • chart.yaml
  • values.yaml templates
    • deployment.yaml
    • services.yaml

Top comments (0)