Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding option to set mh config from CLI, same as helm --set #12

Merged
merged 6 commits into from
Jul 19, 2018

Conversation

prabdeb
Copy link
Contributor

@prabdeb prabdeb commented Jul 17, 2018

Fixes #11

@darkyat darkyat requested review from simt2 and a user July 17, 2018 06:48
@ghost
Copy link

ghost commented Jul 17, 2018

Thanks, @prabdeb! It looks very cool!

Any way we can mirror helm's set semantics, such that --set can be set as many times as needed and lists can be mutated as well as map key values? Is there a component in helm which we could import to do those admittedly complex things? The comma-separate syntax may be short-lived as people will eventually request list override.

ref: https://github.com/kubernetes/helm/blob/master/docs/using_helm.md#the-format-and-limitations-of---set

Edit: If the above is too difficult, I'll not block merging this. It's good work as-is.

@prabdeb
Copy link
Contributor Author

prabdeb commented Jul 18, 2018

Thanks @josdotso , yes having it merged with "," solves the the issues partially. I have fixed it now as per - https://github.com/kubernetes/helm/blob/daeb458302e95863fc75c31afc05c03f0121012e/cmd/helm/install.go#L365

cmd/apply.go Outdated
@@ -39,6 +39,13 @@ apps, mh acts on all apps in your mh config.`,
PrintRendered: viper.GetBool("printRendered"),
}

// Add values passed via CLI using --set
if viper.GetStringSlice("set") != nil {
envCLIConfig = lib.MHConfig{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are overwriting envCLIConfig instead of extending it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, the condition is unnecessary here, GetStringSlice will return an empty slice if no parameters are given on the command line. It will in never return nil.

cmd/simulate.go Outdated
@@ -39,6 +39,13 @@ apps, mh acts on all apps in your mh config.`,
PrintRendered: viper.GetBool("printRendered"),
}

// Add values passed via CLI using --set
if viper.GetStringSlice("set") != nil {
envCLIConfig = lib.MHConfig{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also overwriting envCLIConfig here.

@@ -27,6 +27,7 @@ type MHConfig struct {
Simulate bool `yaml:"simulate"`
TargetContext string `yaml:"targetContext"`
Team string `yaml:"team"`
CLIValues []string `yaml:"cliValues"`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please rename this to something more descriptive, CLIValues gives the impression of this field holding all CLI flags. E.g. SETValues like you did in cmd/.

mhlib/app.go Outdated
@@ -228,6 +229,11 @@ func (a *App) render(configFile string) (*string, *string, *[]byte, error) {
},
}

// Add config via --set command
for _, value := range a.MHConfig.CLIValues {
strvals.ParseInto(value, config)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please check for errors here.

@prabdeb
Copy link
Contributor Author

prabdeb commented Jul 18, 2018

@simt2 thanks for your review, I have done them, can you please have a look!

@@ -27,6 +27,7 @@ type MHConfig struct {
Simulate bool `yaml:"simulate"`
TargetContext string `yaml:"targetContext"`
Team string `yaml:"team"`
SETValues []string `yaml:"setValues"`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One more thing @prabdeb , please remove the yaml tag here, I don't think it should be possible to set those values in a MH config file.

@prabdeb
Copy link
Contributor Author

prabdeb commented Jul 18, 2018

Done @simt2

@darkyat
Copy link

darkyat commented Jul 19, 2018

LGTM. Let's wait for @simt2 to approve as well.

@simt2 simt2 merged commit d45c232 into cisco-sso:master Jul 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants