-
Notifications
You must be signed in to change notification settings - Fork 141
Check and generate multiple readme files in one package #282
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
Changes from 22 commits
12a17ea
a3886c0
ae666b8
0981abe
d57e8ba
7ef4eb5
3e762da
303bb12
17afb55
4f603f8
5898df2
6cf1ce4
e5983ce
380019c
41c2ff2
9d9039c
9a85bb5
da89e55
cb3e976
9ff5e57
1673749
d24311c
17506c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -487,6 +487,7 @@ func createPackageDatastream( | |
| // Add package-level vars | ||
| pkgVars := kibana.Vars{} | ||
| input := pkg.PolicyTemplates[0].FindInputByType(streamInput) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is something we'll have to look to support multiple policy templates. |
||
| input.Vars = append(input.Vars, pkg.Vars...) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ycombinator could you please verify this fix? I'm not quite sure about implications.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My understanding of this change is that all the package-level From a system test definition perspective, this means that the top-level The only thing I would change is move this line inside the
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done! Thanks @ycombinator for the review!! |
||
| if input != nil { | ||
| for _, pkgVar := range input.Vars { | ||
| val := pkgVar.Default | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.