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
I'm using aviator (version 1.9.0) to create a complex, or rather lengthy, pipeline.
The pipeline consists of over a dozen resources, and it would be hard to maintain or add to the pipeline if created by hand.
My aviator file is supposed to create an all_resources.yml, but it's not working as intended.
The file contains the full list of resources with their respective repo-names and repo-urls, and additionally it also contains a job, where all those resources are fetched with get as input to a compilation task.
I managed to get the part of the resources: section working and made a really identical part for the plan: section, but SOMEHOW, the - get lines overwrite each other, which ends up with only the last resource in the final file.
I'm really at a dead end here, because I can't see anything I'm doing wrong.
Can you help me out here?
This is my aviator.yml file:
spruce:
# First we generate all resources to use in the pipeline
- base: factory/meta-resource-stub.ymlprune:
- metafor_each:
in: meta-resources/except:
- example-resource.ymlregexp: ".*.(yml)"to_dir: temp/resources/# Merge all resources into one file
- base: factory/all-resources-stub.ymlmerge:
- with_all_in: temp/resources/regexp: ".*.(yml)"to: temp/all-resources.yml
When run, it correctly produces the all-resources.yml but inside, it failed to add each resource in the jobs section, instead it overwrites itself, so only the last resource was added.
The resources section correctly produces ALL generated resources.
I don't know what's wrong, since the two sections are near-identical
And also, I know that the resulting file currently is not correct in terms of concourse syntax, but I reduced it to a minimal example to figure out what's wrong.
The text was updated successfully, but these errors were encountered:
I would need the ability to use the (( merge in <key> )) function inside aviator, to tell it to merge on the key get, so that I can add multiple inputs.
HackXIt
changed the title
Possible Bug: merge is overwriting instead of adding to the map
Possible Bug: merge is overwriting instead of appending
Apr 4, 2023
Hello,
I'm using
aviator
(version 1.9.0) to create a complex, or rather lengthy, pipeline.The pipeline consists of over a dozen resources, and it would be hard to maintain or add to the pipeline if created by hand.
My aviator file is supposed to create an
all_resources.yml
, but it's not working as intended.The file contains the full list of resources with their respective repo-names and repo-urls, and additionally it also contains a job, where all those resources are fetched with
get
as input to a compilation task.I managed to get the part of the
resources:
section working and made a really identical part for theplan:
section, but SOMEHOW, the- get
lines overwrite each other, which ends up with only the last resource in the final file.I'm really at a dead end here, because I can't see anything I'm doing wrong.
Can you help me out here?
This is my
aviator.yml
file:And these are the stubs:
meta-resource.stub.yml
all-resources-stub.yml
When run, it correctly produces the
all-resources.yml
but inside, it failed to add each resource in thejobs
section, instead it overwrites itself, so only the last resource was added.The
resources
section correctly produces ALL generated resources.I don't know what's wrong, since the two sections are near-identical
And also, I know that the resulting file currently is not correct in terms of concourse syntax, but I reduced it to a minimal example to figure out what's wrong.
The text was updated successfully, but these errors were encountered: