This commit is contained in:
Ivan Pedrazas
2017-01-08 10:56:33 +00:00
parent 8045324763
commit 53296a1244
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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"),
+1 -1
View File
@@ -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
}