Show is the action for checking a given release's information. It provides the implementation of 'helm show' and its respective subcommands.
| 57 | // |
| 58 | // It provides the implementation of 'helm show' and its respective subcommands. |
| 59 | type Show struct { |
| 60 | ChartPathOptions |
| 61 | Devel bool |
| 62 | OutputFormat ShowOutputFormat |
| 63 | JSONPathTemplate string |
| 64 | chart *chart.Chart // for testing |
| 65 | } |
| 66 | |
| 67 | // NewShow creates a new Show object with the given configuration. |
| 68 | func NewShow(output ShowOutputFormat, cfg *Configuration) *Show { |
nothing calls this directly
no outgoing calls
no test coverage detected