For questions specific to the usage of the "fly" command-line interface tool for Concourse - the CI system written in Go. When using this tag also include the more generic [concourse] tag where possible.
Questions tagged [concourse-fly]
22 questions
2
votes
1 answer
Error on Concurse while integrating Cypress. Cypress executable not found
I'm trying to integrate cypress with concourse. I was referring to these steps. mentioned here, https://notes.dmitriydubson.com/testing/e2e-testing/cypress-and-concourse/ . However, I'm getting this error. Any help is much appreciated.
>…

sparsh bhardwaj
- 93
- 2
- 8
2
votes
1 answer
What is the Concourse (fly) CLI command to list all the available resource types?
While troubleshooting some pipelines a week ago I stumbled upon a fly CLI command that lists the resource types available in Concourse (i.e. for which one would not need to provide resource_types in the pipeline.).
Can someone help me dig out this…

Gabriel Petrovay
- 20,476
- 22
- 97
- 168
2
votes
1 answer
Don't run second job when first job fails in concourse
I am new to concourse and created one concourse pipeline having 2 jobs that are running sequential.
Is there a way to not run second job when first job fails?
I know that i can handle this at task level, but can i handle this at job level?

Anshita Singh
- 1,583
- 1
- 17
- 40
1
vote
0 answers
fly watch on current job inside on_error?
I want to get the results of the fly watch command for the current build on the on_error hook so I can report the details of the error into Slack.
I found a way to do this using a custom resource, however, since the job is still running during the…

Chris
- 171
- 2
- 8
1
vote
1 answer
Setting Up Concourse with external url
Currently following the Concourse Tutorial (https://concoursetutorial.com/), but I am stuck at the Deploy Concourse using Docker Compose step. As indicated in the docs, "You need to set the external url env variable inside the docker-compose.yml"
-…

user19251203
- 322
- 4
- 13
1
vote
1 answer
is there a way to skip archived concourse pipelines and unpause only un archived pipelines?
I am getting below error while unpause all our concourse pipelines using this below command.
Command: fly -t ci unpause-pipeline -a
unpaused 'pipeline-1'
unpaused 'pipeline-2'
unpaused 'pipeline-3'
unpaused 'pipeline-4'
unpaused…

Tamilselvan
- 55
- 5
1
vote
1 answer
Concourse Tutorial : create resource config: base resource type not found: docker-image
I was following along the tutorial for concourse from https://concoursetutorial.com/basics/task-hello-world/ after setting up the concourse version 7.1 using docker-compose up -d. Tried a few different hello world examples but all of them failed…

Harsh8V
- 31
- 4
1
vote
0 answers
How can I detect the task where a job failed in Concourse given the build number?
Concourse Fly CLI had the build command which only lists the status and ID from the last N builds.
Is there a way to get the task that made the job fail for a particular build? And maybe also the output for failure details?
Or do you know another…

Gabriel Petrovay
- 20,476
- 22
- 97
- 168
0
votes
0 answers
Pull and run docker image from docker hub using Concourse pipeline
I have pushed the image to docker hub and now trying to pull the docker image from docker hub into Ec2 instance and run that image using CONCCOURSE.
Image is pushed to docker hub.
Unable to pull image from docker hub using concourse
Unable to run…
0
votes
0 answers
Pre steps in docker build with Concourse
I have a concourse pipeline I use to build docker images using this resource. This is a code example:
- put: build-image.spilo
params:
build: git.spilo-dockerfile/
build_args: {}
tag_as_latest: true
tag_file:…

Salvatore D'angelo
- 1,019
- 3
- 14
- 39
0
votes
1 answer
How to give input parameter to the concourse pipeline on the pipeline page and trigger the job similar to jenkins
I would like to know if it is possible to give inputs to a concourse pipeline from the UI.
I know we can add input details to a git repo and read from the repo, but for every tiny input I need to do a code commit.
For this scenario is Jenkins better…

Venkatesh G
- 3
- 1
0
votes
0 answers
How to trigger a job in Concourse pipeline when feature branch is deleted?
I am looking for an option to trigger a job automatically whenever a feature branch is deleted in git.
For e.g I have two feature branches and if one is deleted, should trigger a Job and Job should know which feature branch is deleted.
Reference -…

Coder
- 1
- 1
0
votes
0 answers
Tasks are not populated in concourse pipeline (Concourse version 7.8.2)
I am brand new to the concourse and trying to set up a pipeline through the pipeline but why am I getting this error on my very first pipeline, can anyone help out?
'''
jobs:
name: update-library-cache
serial: true
plan:
get: library_cache
get:…

Sanju
- 1
- 2
0
votes
0 answers
"attempts" field is invalid in concourse version 7.7.1
in concourse 7.7.1, When I setup the pipeline
plan:
- {get: abc, trigger: true}
- get: ttt
- get: library_cache
- in_parallel:
- {task: build-frontend, file: ttt/ci/tasks/build.yml, privileged: true, params: {TARGET_CFG: ((gamma)), SERVICE:…

Sanju
- 1
- 2
0
votes
1 answer
Resource Type vs Resource in Concource CI
I am new to Concourse
Can someone please help me understand the difference between Resource and Resource Type in simple words?
Apparently, documentation is not helping me.

P Kernel
- 217
- 4
- 13