This examples shows how to dynamically fan out over a list of values using Container templates.
The command len=$((8 + RANDOM % 4)); json=$(seq 1 "$len" | paste -sd, -); echo "[$json]" produces a list of random
length (between 8 and 12), which is then echoed in json format. This matches the dynamic fanout
example that uses Python. In this example, we must specify the arguments as Container does not automatically match
them for us.