-
-
Notifications
You must be signed in to change notification settings - Fork 285
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
feat: add/expose cli flags #771
Conversation
e980174
to
23753d2
Compare
Signed-off-by: Hans Song <hans.m.song@gmail.com>
23753d2
to
3f7c79a
Compare
f57f5bf
to
cb3dee4
Compare
@hans-m-song Thanks for your PR. if it's ready. I will review that and give some feedback. |
thanks @yxxhero, looking forward to it 😄 |
pkg/config/apply.go
Outdated
@@ -146,7 +146,7 @@ func (a *ApplyImpl) SkipCleanup() bool { | |||
|
|||
// SkipDeps returns the skip deps. | |||
func (a *ApplyImpl) SkipDeps() bool { | |||
return a.ApplyOptions.SkipDeps | |||
return a.GlobalOptions.SkipDeps || a.ApplyOptions.SkipDeps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove SkipDeps
field in ApplyOptions
. others are similar.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for my understanding... this is because ApplyImpl
embeds GlobalImpl
which embeds GlobalOptions
?
Signed-off-by: Hans Song <hans.m.song@gmail.com>
@hans-m-song ah. you got me. |
@hans-m-song you can refer to the logic of Line 119 in fe1eba6
|
@yxxhero sorry not sure I follow 🤔
|
@hans-m-song if added in global level. then other subcommands don't need to add. |
Signed-off-by: Hans Song <hans.m.song@gmail.com>
@@ -132,6 +136,11 @@ func (g *GlobalImpl) EnableLiveOutput() bool { | |||
return g.GlobalOptions.EnableLiveOutput | |||
} | |||
|
|||
// DisableForceUpdate return when to disable forcing updates to repos upon adding | |||
func (g *GlobalImpl) DisableForceUpdate() bool { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add SkipDeps function. remote in other subcommands.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Hans Song <hans.m.song@gmail.com>
@hans-m-song final step. please update the docs: https://github.com/helmfile/helmfile/blob/main/docs/index.md#cli-reference |
Signed-off-by: Hans Song <hans.m.song@gmail.com>
Every time I execute commands, I would like to opt out of force-updates
This adds additional flags to the cli:
--skip-deps
- hoisted up to the global level--disable-force-update
- exposes the ability to disable the force-update flagResolves roboll/helmfile/issues/795
Relates to roboll/helmfile#1494 (review)
Still a rookie at go (especially a repo of this size), any feedback is appreciated