AppVersion returns the appversion of the chart.
()
| 136 | |
| 137 | // AppVersion returns the appversion of the chart. |
| 138 | func (ch *Chart) AppVersion() string { |
| 139 | if ch.Metadata == nil { |
| 140 | return "" |
| 141 | } |
| 142 | return ch.Metadata.AppVersion |
| 143 | } |
| 144 | |
| 145 | // CRDs returns a list of File objects in the 'crds/' directory of a Helm chart. |
| 146 | // Deprecated: use CRDObjects() |
no outgoing calls