2019-12-09 17:56:02 +00:00
|
|
|
package helm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2019-12-09 18:52:41 +00:00
|
|
|
// The Config struct captures the `settings` and `environment` blocks inthe application's drone
|
|
|
|
// config. Configuration in drone's `settings` block arrives as uppercase env vars matching the
|
|
|
|
// config key, prefixed with `PLUGIN_`. Config from the `environment` block is *not* prefixed; any
|
|
|
|
// keys that are likely to be in that block (i.e. things that use `from_secret` need an explicit
|
|
|
|
// `envconfig:` tag so that envconfig will look for a non-prefixed env var.
|
2019-12-09 17:56:02 +00:00
|
|
|
type Config struct {
|
|
|
|
// Configuration for drone-helm itself
|
2019-12-09 18:52:41 +00:00
|
|
|
Command helmCommand `envconfig:"HELM_COMMAND"` // Helm command to run
|
2019-12-09 17:56:02 +00:00
|
|
|
DroneEvent string `envconfig:"DRONE_BUILD_EVENT"` // Drone event that invoked this plugin.
|
|
|
|
UpdateDependencies bool `split_words:"true"` // call `helm dependency update` before the main command
|
|
|
|
Repos []string `envconfig:"HELM_REPOS"` // call `helm repo add` before the main command
|
|
|
|
Prefix string `` // Prefix to use when looking up secret env vars
|
|
|
|
|
|
|
|
// Global helm config
|
|
|
|
Debug bool `` // global helm flag (also applies to drone-helm itself)
|
|
|
|
KubeConfig string `split_words:"true" default:"/root/.kube/config"` // path to the kube config file
|
|
|
|
Values string ``
|
|
|
|
StringValues string `split_words:"true"`
|
|
|
|
ValuesFiles []string `split_words:"true"`
|
|
|
|
Namespace string ``
|
|
|
|
Token string `envconfig:"KUBERNETES_TOKEN"`
|
|
|
|
SkipTLSVerify bool `envconfig:"SKIP_TLS_VERIFY"`
|
|
|
|
Certificate string `envconfig:"KUBERNETES_CERTIFICATE"`
|
|
|
|
APIServer string `envconfig:"API_SERVER"`
|
|
|
|
ServiceAccount string `envconfig:"SERVICE_ACCOUNT"` // Can't just use split_words; need envconfig to find the non-prefixed form
|
|
|
|
|
|
|
|
// Config specifically for `helm upgrade`
|
|
|
|
ChartVersion string `split_words:"true"` //
|
|
|
|
DryRun bool `split_words:"true"` // also available for `delete`
|
|
|
|
Wait bool `` //
|
|
|
|
ReuseValues bool `split_words:"true"` //
|
|
|
|
Timeout string `` //
|
|
|
|
Chart string `` // Also available for `lint`, in which case it must be a path to a chart directory
|
|
|
|
Release string ``
|
|
|
|
Force bool `` //
|
|
|
|
}
|
|
|
|
|
2019-12-09 18:52:41 +00:00
|
|
|
type helmCommand string
|
2019-12-09 17:56:02 +00:00
|
|
|
|
2019-12-09 18:52:41 +00:00
|
|
|
// helmCommand.Decode checks the given value against the list of known commands and generates a helpful error if the command is unknown.
|
|
|
|
func (cmd *helmCommand) Decode(value string) error {
|
2019-12-09 17:56:02 +00:00
|
|
|
known := []string{"upgrade", "delete", "lint", "help"}
|
|
|
|
for _, c := range known {
|
|
|
|
if value == c {
|
2019-12-09 18:52:41 +00:00
|
|
|
*cmd = helmCommand(value)
|
2019-12-09 17:56:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if value == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
known[len(known)-1] = fmt.Sprintf("or %s", known[len(known)-1])
|
2019-12-09 18:52:41 +00:00
|
|
|
return fmt.Errorf("unknown command '%s'. If specified, command must be %s",
|
2019-12-09 17:56:02 +00:00
|
|
|
value, strings.Join(known, ", "))
|
|
|
|
}
|