For questions specifically related to the configuration and usage of Pipelines in Concourse - the CI system written in Go. When using this tag also include the more generic [concourse] tag where possible.
Questions tagged [concourse-pipeline]
64 questions
0
votes
1 answer
Not able to login to concourse from GUI
I have installed concourse ci with integration vault and database postgress SQL using below link.
Done with all the steps given in below link and all 4 docker container is working fine…
0
votes
2 answers
how to specify 'source' in module if I don't want to use local path
I have two repos(it has to be two because of my pipeline setup), one repo contains the needed terraform scripts that will creates an S3 bucket (very simple), another repo contains the backend setup, and when I test locally, I can download the model…

wawawa
- 2,835
- 6
- 44
- 105
0
votes
1 answer
Use older version of github-release-resource in Concourse using dynamic tag from a file
GitHub-release resource always emits the latest version. I want to get a specific tag with the version specified in a file.
Below did not fetch the version - github-release - pinned version tag: path/to/the/file/with/version not found
- get:…

RJ24
- 49
- 3
- 16
0
votes
1 answer
How to pull parameters from AWS Paramstore from EMR Cluster
We are using EMR. Before submitting a spark job, we are trying to pull config parameters from AWS Param Store (we have written a java program) and create a file and use it in spark-submit.
We are using aws-java-sdk-ssm API to pull the parameters…

Sanjeev
- 119
- 4
- 18
0
votes
1 answer
concourse ci job parameterization
i want to parametrize jobs for different envs.
for example:
resources:
- name: prod
type: terraform
icon: terraform
source:
backend_type: s3
backend_config:
env_name: prod
bucket:
key:
…

DevOps man
- 15
- 6
0
votes
0 answers
prometheus metrics which gets concourse build duration along with the build status
I was initially using Influxdb as a datasource and could able to fetch the concourse build duration metrics with build_status using the measurement "build finished" (FYI.. https://mockersf.github.io/docs/metrics.html)
Now I am trying to fetch…

Rohith
- 1,077
- 5
- 16
- 36
0
votes
1 answer
Does Concourse CI log who manually triggers and aborts builds?
Concourse CI provides an easy way to trigger and abort pipeline job builds via the web interface or the fly CLI.
I haven't found a way to determine who performed these actions after the fact. Is this information logged somewhere that can be…

Chris S.
- 85
- 1
- 1
- 6
0
votes
1 answer
Concourse CI + MVN
I am trying to create a pipeline using Concourse CI using Maven. The pipeline should:
Get the code from git.
Build and run test using maven.
the project generates html report in target folder
above steps are executing properly. The question how…

Anji R
- 843
- 3
- 16
- 23
0
votes
1 answer
How to pass node modules between jobs in Concourse
I have a concourse pipeline for a node js application with multiple jobs (unit test etc). Currently, I am doing a yarn install on every job. I would prefer to be able to do it in just one job and then pass those node modules to jobs as needed. Is…

Sheen
- 586
- 10
- 22
0
votes
1 answer
Concourse Pipeline: How to have an Embedded Script Fail the Pipeline
When I run a Concourse pipeline with a nested Python script inside of the run param like so:
- task: some-task
params:
...
config:
platform: linux
...
run:
path: bash
args:
- "-c"
- |
…

Austin L
- 336
- 1
- 17
0
votes
1 answer
Concourse - pass ssh keys via environment
I'm trying to ramp up a concourse ci inside cloude foundry for demo purpose. To avoid additional efforts and costs I'd like to avoid using storage services. But the TSA keys for the ssh connection between web service and worker service needs to be…

Kris
- 956
- 1
- 12
- 23
0
votes
1 answer
Difference between PUT and OUTPUT steps in Concourse
Could someone tell me the difference between the PUT step and the OUTPUT step in Concourse? For example, in the following type of YAML files why do we need a put step after a get? Can't we use output instead of put? If not what are the purposes of…

Ashan Priyadarshana
- 3,119
- 3
- 29
- 34
0
votes
2 answers
Concourse build docker-image copying from git repo
I am trying to use a Concourse pipeline to pull a git repo and then build/push a Docker image from the dockerfile in the git repo. The dockerfile has a COPY command in it to copy files from the repo into the image. Normally I'd mount a volume to be…

ZaxR
- 4,896
- 4
- 23
- 42
0
votes
1 answer
Specify runtime parameter in a pipeline task
We have a requirement to somehow pass a dynamic runtime parameter to a pipeline task.
For example below paramater APPROVAL would be different for each run of the task.
This APPROVAL parameter is for the change and release number so that the task can…

Alastair Montgomery
- 1,756
- 5
- 21
- 44
0
votes
1 answer
JGitflow triggers concourse job infinitely
I'm using JGitFlow with Concourse.
I have two branches - master and develop. My job is triggered when there is a change to develop.
When the job is run, it executes mvn -X --batch-mode jgitflow:release-start jgitflow:release-finish
The issue is…

breaktop
- 1,899
- 4
- 37
- 58