We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94f5425 commit 198f7daCopy full SHA for 198f7da
nix/workbench/profiles/profiles.jq
@@ -72,13 +72,14 @@ def generate_all_era_profiles($era; $mcompo; $topo):
72
73
| all_profile_variants
74
| map (## Each profile is defined as extension of defaults:
75
- era_defaults($era) * .
+ era_defaults($era) ## prof0-defaults.jq
76
+ * . ## prof1-variants.jq
77
78
## Profiles define their own cluster composition:
79
| . * { composition: (.composition // $compo) }
80
81
## Finally, compute the derived ("computed") params.
- | add_derived_params
82
+ | add_derived_params ## prof2-derived.jq
83
);
84
| map (## Assemble into a dictionary..
85
{ "\(.name)": .
0 commit comments