Saikumar
Saikumar

Reputation: 63

how to display helm revision number

How to display helm revision number so that it can be used in tagging.

Upvotes: 0

Views: 2710

Answers (1)

David Maze
David Maze

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

Related Questions