Using https://github.com/concourse/concourse:latest (4.2.2).
When I have a concourse-ci pipeline document I can use variables like ((var)) and {{var}} - however how do I pass in a file with variables such as
params:
kubectl: | k8s/mykubectl # a template file that has variables
And then this file has contents such as:
run test --image=testme:((mytag)) --port ((myport))
How do I get concourse to replace those variables like for example the ansible template module will do..
Thanks for any suggestions!