NewGetValues creates a new GetValues object with the given configuration.
(cfg *Configuration)
| 36 | |
| 37 | // NewGetValues creates a new GetValues object with the given configuration. |
| 38 | func NewGetValues(cfg *Configuration) *GetValues { |
| 39 | return &GetValues{ |
| 40 | cfg: cfg, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // Run executes 'helm get values' against the given release. |
| 45 | func (g *GetValues) Run(name string) (map[string]any, error) { |
no outgoing calls
searching dependent graphs…