Add a way for a group of components to be processed in a user-defined order.
Only apply to components with the field.
First process numbered components serially, then un-numbered.
Not sure if it should go smal -> large or large -> small
In cluster kr8_spec:
{
_kr8_spec: {
_components: {
cmpA: { path : '/dir', weight: 10 },
cmpB: { path : '/dir', weight: 20 },
cmpC: { path : '/dir' },
cmpD: { path : '/dir' },
}
}
}
Does:
Generate cmpA
Generate cmpB
threaded: Generate cmpC, cmpD
Add a way for a group of components to be processed in a user-defined order.
Only apply to components with the field.
First process numbered components serially, then un-numbered.
Not sure if it should go smal -> large or large -> small
In cluster kr8_spec:
Does: