New returns a Client using the `helm` binary on PATH.
()
| 34 | |
| 35 | // New returns a Client using the `helm` binary on PATH. |
| 36 | func New() *Client { |
| 37 | return &Client{Bin: "helm"} |
| 38 | } |
| 39 | |
| 40 | // List returns Helm releases visible in the given namespace ("" = all). |
| 41 | func (c *Client) List(ctx context.Context, namespace string) ([]Release, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected