Saturday, June 28, 2025

Helm chart values

 Need to know all the values for a given helm chart and the readme and other documentation is not up-to-date?


The best thing to do is run the show values command and save it off to a file like below


helm show values prometheus-community/kube-prometheus-stack  > values.yaml


Now you can peruse the values.yaml file and find all the values you want to set.

No comments:

Post a Comment

Kubernetes Service

 What is the point of a Service in Kubernetes Accessing a pod by name or IP directly is fragile and not recommended for long-term connectiv...