Actions
Feature #1009
closedYaml file inclusion support
Description
We are probably moving in the direction of splitting our yaml file. It would be
be nice to verify the file inclusion feature and provide support for some of the
below features.
Couple of things that can be probably be discussed -
1. Provide support for specifying multiple yaml file on the command line.
2. If we have a yaml file as -
=Full.yaml=
one: two: three: four: "five_1" five: "five_2 six: seven: "seven"
Should we support a format such as -
=main.yaml=
one: two: #include "three_v1.yaml" six: seven: "seven"
=three_v1.yaml=
three: four: "five_1" five: "five_2
OR
=main.yaml=
one: two: six: seven: "seven" #include "three_v2.yaml"
=three_v2.yaml=
one: two: three: four: "five_1" five: "five_2
Basically what solution one(three_v1.yaml) does is, it doesn't require you to
specify the parent nodes for the config that you want to include. The node
under which you include the yaml file would be the parent for the included
config.
Actions