So I have been running concourse pipelines using a separate yaml file to hold my variables, similar to this example in the documentation. However I would like to set my variables within my main pipeline.yml file to avoid using the cli option --load-vars-from some_other_file.yml
. How could I do this?
Note: I might be looking for something that uses params:
, but I want the params I set to be global for everything in my pipeline.yml file, so that everything can use the variables I set in it.