Reputation: 63
How to display helm revision number so that it can be used in tagging.
Upvotes: 0
Views: 2710
Reputation: 158977
Helm also defines several built-in objects that can be referenced from your template. You can reference .Release.Revision
in a template to get the current chart revision being deployed. Note that this number resets if you helm delete --purge
a chart.
Upvotes: 4