Uninstall is the action for uninstalling releases. It provides the implementation of 'helm uninstall'.
| 38 | // |
| 39 | // It provides the implementation of 'helm uninstall'. |
| 40 | type Uninstall struct { |
| 41 | cfg *Configuration |
| 42 | |
| 43 | DisableHooks bool |
| 44 | DryRun bool |
| 45 | IgnoreNotFound bool |
| 46 | KeepHistory bool |
| 47 | WaitStrategy kube.WaitStrategy |
| 48 | WaitOptions []kube.WaitOption |
| 49 | DeletionPropagation string |
| 50 | Timeout time.Duration |
| 51 | Description string |
| 52 | } |
| 53 | |
| 54 | // NewUninstall creates a new Uninstall object with the given configuration. |
| 55 | func NewUninstall(cfg *Configuration) *Uninstall { |
nothing calls this directly
no outgoing calls
no test coverage detected