We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Allow command line overrides of render params
Overriding values is a common requirement when building reusable pipelines. Allowing values in an existing render.yml file to be overridden at the command line gives flexibility without having to rewrite the yaml file programmatically. jsonnet supports both "external variables" and "top-level arguments" as command line arguments.
shore render
An example of the proposed syntax:
shore render --override foo=bar
where foo is a YAML key path, and bar is a YAML value.
foo
bar
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Allow command line overrides of render params
Motivation
Overriding values is a common requirement when building reusable pipelines. Allowing values in an existing render.yml file to be overridden at the command line gives flexibility without having to rewrite the yaml file programmatically. jsonnet supports both "external variables" and "top-level arguments" as command line arguments.
Describe alternatives you've considered
shore render
Additional context
An example of the proposed syntax:
where
foo
is a YAML key path, andbar
is a YAML value.The text was updated successfully, but these errors were encountered: