MCPcopy
hub / github.com/helm/helm / Uninstall

Struct Uninstall

pkg/action/uninstall.go:40–52  ·  view source on GitHub ↗

Uninstall is the action for uninstalling releases. It provides the implementation of 'helm uninstall'.

Source from the content-addressed store, hash-verified

38//
39// It provides the implementation of 'helm uninstall'.
40type 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.
55func NewUninstall(cfg *Configuration) *Uninstall {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected