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

Introduction to Helm
92%

The values.yaml File

The values.yaml file contains the default configuration values for the chart. You can override these values using the --set flag or by using a custom configuration file.

You can see the default configuration values for the WordPress Chart by running the following command:

cd $HOME

# Pull the chart (if not already done)
helm pull prometheus-community/kube-prometheus-stack

# Extract the chart
tar -xvf kube-prometheus-stack-*.tgz

# View the values.yaml file
cat kube-prometheus-stack/values.yaml | grep -v '#' | grep -v '^$'

You should see a similar output:

nameOverride: ""
namespaceOverride: ""
kubeTargetVersionOverride: ""
kubeVersionOverride

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.