Pull is the action for checking a given release's information. It provides the implementation of 'helm pull'.
| 34 | // |
| 35 | // It provides the implementation of 'helm pull'. |
| 36 | type Pull struct { |
| 37 | ChartPathOptions |
| 38 | |
| 39 | Settings *cli.EnvSettings // TODO: refactor this out of pkg/action |
| 40 | |
| 41 | Devel bool |
| 42 | Untar bool |
| 43 | VerifyLater bool |
| 44 | UntarDir string |
| 45 | DestDir string |
| 46 | cfg *Configuration |
| 47 | } |
| 48 | |
| 49 | type PullOpt func(*Pull) |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected