-
Notifications
You must be signed in to change notification settings - Fork 6
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
load_var friendly format for metadata.json #248
Comments
…lated unit tests (fixes #248)
Currently, the [
{"name": "item1", "value": "bla"},
{"name": "item2", "value": "foo"},
...
] To change this to a simple map structure like: {
"item1": "bla",
"item2": "foo",
...
} You'll need to modify the logic that generates the
|
…lated unit tests (fixes telia-oss#248)
Unfortunately, there is no hope that you get any further support here (#246 was 2+y ago). But recent news is that the Cloud Foundry community is now maintaining a fork of this resource at cloudfoundry-community/github-pr-resource. In that new repo, the PR #276 that I had submitted here has been ported as cloudfoundry-community#7 and has been merged. On our Concourse installation at Gstack, the latest version is working fine. Could you give a try and provide feedback there? (the new resource is a drop-in replacement; you only have to switch |
Now that PR cloudfoundry-community#7 is shipped (see v0.25.0), could you please closed this issue @schmurfy? Thanks! |
The current output format for
metadata.json
that gets populated on aget
step is a list of maps:Instead, a simple map like
{"item1": "bla", "item2": "foo"}
would be more useful for Concourse'sload_var
step and then we wouldn't need a separateload_var
for every metadata file that gets dumped.The text was updated successfully, but these errors were encountered: