Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view revision history with values provided in kubernetes-helm

helm history <release name> but there's no option to see what values are used in each release history. How can I do that?

like image 742
nmiculinic Avatar asked Jan 23 '18 22:01

nmiculinic


1 Answers

you can download the values for any given release and revision. There are two options I've used helm get and helm get values. For example:

helm get values --revision=12 crafty-badger

For details see the docs1

like image 70
Dan Murphy Avatar answered Sep 22 '22 12:09

Dan Murphy