You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the gener8s go command only supports a single manifest in a YAML document. This issue is to propose allowing multiple manifests which will produce multiple objects generated in output.
Included here are markers that allow the variable name to be specified for each object. Order of priority would be:
object name supplied in marker
variable name supplied by -v flag (used for all objects without a marker)
default variable name: resourceObj
In the case that a var name is passed with -v flag and a marker is supplied, we can emit a warning that informs the user that the marker var name will be used.
The text was updated successfully, but these errors were encountered:
Implement multi-manifest support with generic variable names. The variable name should be different - appending an incrementing int will be sufficient.
Currently the
gener8s go
command only supports a single manifest in a YAML document. This issue is to propose allowing multiple manifests which will produce multiple objects generated in output.For example:
Included here are markers that allow the variable name to be specified for each object. Order of priority would be:
-v
flag (used for all objects without a marker)resourceObj
In the case that a var name is passed with
-v
flag and a marker is supplied, we can emit a warning that informs the user that the marker var name will be used.The text was updated successfully, but these errors were encountered: