Skip to content

Commit 7dc3594

Browse files
authored
Create HelmNotes
1 parent f91e0de commit 7dc3594

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

Kubernetese/Helm/HelmNotes

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Understanding Helm
2+
3+
Helm is one the popular package Manager in Kubernetes
4+
5+
K8s has lot and lot of objects to create like: Deployments, ReplicaSets, LoadBalancers, Volumes, Services, secrets and others
6+
7+
For successfully deplpying your application you need to create all the above or most of the above methoned objects.
8+
Creation of all these objects manually is big task, so there has to be way that you entire application could be configured at a go in K8s cluster
9+
with a minimum amount of commands.
10+
That is where Helm can prove to be useful
11+
12+
Configuration of Helm:
13+
14+
2 major components:
15+
16+
Helm
17+
Tiller (Server Side support for Helm)
18+
19+
# wget -O helm.tar.gz https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz
20+
# ls
21+
# gunzip helm.tar.gz
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+

0 commit comments

Comments
 (0)