Skip to content

santhoshvempali/major

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

STEPS TO CREATE HELM CHART

STEP 1: create new helm chart

helm create "chartname"

# demogarage is chart name
helm create demogarage
#to see the chart structure
ls demogarage

alt text

  • Directory charts – Used for adding dependent charts. Empty by default.
  • Directory templates – All kubernetees Configuration files that deploy in the cluster.
  • Chart file – Outline of the Helm chart structure.
  • values file – Formatting information for configuring the chart
#to see kubernetees objets yamls in templates
ls demogarage/templates

These are deafulat kubernetees yamls in templates

all text

we can create other kuberntees resource yamls as per our application needs

Step 2: Configure Helm Chart values.yaml file

configure image name and image policy

all text

There are three possible values for the pullPolicy:

  • IfNotPresent – Downloads a new version of the image if one does not exist in the cluster.
  • Always – Pulls the image on every restart or deployment.
  • Latest – Pulls the most up-to-date version available.

Step 3: Change Networking Service Type

To change the networking service type, locate the service value and change service type and port values The avaliable service types are

  • ClusterIp
  • NodePort
  • Loadbalancer

all text

Step 4 :Install the Helm Chart

helm install "full name override" "chart name"/ --values "chart name"/values.yaml

  helm install demogarage-chart demogarage/ --values demogarage/values.yaml

all text

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published