Feedback

Chat Icon

Cloud-Native Microservices With Kubernetes - 2nd Edition

A Comprehensive Guide to Building, Scaling, Deploying, Observing, and Managing Highly-Available Microservices in Kubernetes

Everything You Need to Know to Start Using Helm
91%

Installing a Chart from a Local Directory

Installing a chart from a local directory is usually done during the development and testing phases. The general syntax is:

helm install [RELEASE_NAME] [CHART_DIRECTORY] [flags]

In our case, if we have the WordPress chart downloaded and extracted in a directory called wordpress-chart, we can install it as follows:

helm install \
  my-wordpress \
  ./wordpress-chart

It's possible to use a custom configuration file when installing a chart from your disk. The general syntax is:

Cloud-Native Microservices With Kubernetes - 2nd Edition

A Comprehensive Guide to Building, Scaling, Deploying, Observing, and Managing Highly-Available Microservices in Kubernetes

Enroll now to unlock all content and receive all future updates for free.