13c663e906
This change revealed more about how the system needs to work, so there are some supporting changes: * helm.upgrade and helm.help are now vars rather than raw functions. This allows unit tests to target the "which step should we run" logic directly by comparing function pointers, rather than having to configure/prepare a fully-valid Plan and then infer the logic’s correctness based on the Plan’s state. * configuration that's specific to kubeconfig initialization is now part of the InitKube struct rather than run.Config, since other steps shouldn’t need access to those settings (particularly the secrets). * Step.Execute now receives a run.Config so it can log debug output.
34 lines
600 B
Go
34 lines
600 B
Go
package run
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Help is a step in a helm Plan that calls `helm help`.
|
|
type Help struct {
|
|
cmd cmd
|
|
}
|
|
|
|
// Execute executes the `helm help` command.
|
|
func (h *Help) Execute(_ Config) error {
|
|
return h.cmd.Run()
|
|
}
|
|
|
|
// Prepare gets the Help ready to execute.
|
|
func (h *Help) Prepare(cfg Config) error {
|
|
args := []string{"help"}
|
|
if cfg.Debug {
|
|
args = append([]string{"--debug"}, args...)
|
|
}
|
|
|
|
h.cmd = command(helmBin, args...)
|
|
h.cmd.Stdout(cfg.Stdout)
|
|
h.cmd.Stderr(cfg.Stderr)
|
|
|
|
if cfg.Debug {
|
|
fmt.Fprintf(cfg.Stderr, "Generated command: '%s'\n", h.cmd.String())
|
|
}
|
|
|
|
return nil
|
|
}
|