diff --git a/main.go b/main.go index fa80539..a3a0bed 100644 --- a/main.go +++ b/main.go @@ -75,8 +75,8 @@ func run(c *cli.Context) error { } plugin := Plugin{ Config: Config{ - // APIServer: c.String("api_server"), - // Token: c.String("token"), + APIServer: c.String("api_server"), + Token: c.String("token"), HelmCommand: c.StringSlice("helm_command"), Namespace: c.String("namespace"), SkipTLSVerify: c.Bool("skip_tls_verify"), diff --git a/plugin.go b/plugin.go index f77e6e1..72759e3 100644 --- a/plugin.go +++ b/plugin.go @@ -165,7 +165,7 @@ func replaceEnvvars(envvars [][]string, prefix string, s string) string { s = strings.Replace(s, envvarName, envval, -1) } } - // fmt.Println(s) + fmt.Println(s) return s }