Status is the action for checking the deployment status of releases. It provides the implementation of 'helm status'.
| 27 | // |
| 28 | // It provides the implementation of 'helm status'. |
| 29 | type Status struct { |
| 30 | cfg *Configuration |
| 31 | |
| 32 | Version int |
| 33 | |
| 34 | // ShowResourcesTable is used with ShowResources. When true this will cause |
| 35 | // the resulting objects to be retrieved as a kind=table. |
| 36 | ShowResourcesTable bool |
| 37 | } |
| 38 | |
| 39 | // NewStatus creates a new Status object with the given configuration. |
| 40 | func NewStatus(cfg *Configuration) *Status { |
nothing calls this directly
no outgoing calls
no test coverage detected