-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
add option to pass arguments to kustomize, fixes #2488 #2700
Conversation
What is the preferred format here? deploy:
kustomize:
build:
- "--load_restrictor none" or deploy:
kustomize:
build:
- "--load_restrictor"
- "none" I went with the first option for now but could easily change to option 2. |
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.
What is the preferred format here?
both of those formats will be supported by this change. I think splitting on spaces is probably fine, though this is kind of a weird way to specify args IMO (--load_restrictor=none
seems easier to reason about to me)
@nkubala, thanks for the feedback! I addressed your comments. |
@daddz,
|
@tejal29 Sure thing, I'll look into it tomorrow/friday. |
Related issue: #2488