concourse Questions
3
Goal: Build a continuous integration pipeline for a spring boot application that runs JUnit tests, packages, builds a docker image, and finally pushes that image to Amazon Elastic Container Registr...
Miscellaneous asked 13/7, 2022 at 19:28
7
I download the latest version of the Fly cli
https://concourse-ci.org/download.html
to ~/Downloads then cd to ~/Downloads
cd ~/Downloads
mv fly_darwin_amd64 fly
install fly
then I do
fly
a...
Loving asked 10/1, 2019 at 17:9
7
Solved
I am currently running a docker-compose stack for basic integration tests with a protractor test runner, a nodejs server serving a web page and a wildfly server serving a java backend.
The stack i...
Whitehead asked 1/12, 2016 at 10:18
2
I want to build a docker image in my pipeline and then run a job inside it, without pushing or pulling the image.
Is this possible?
Rurik asked 9/12, 2016 at 13:4
2
Solved
I created a repository on hub.docker.com and now want to push my image to the Dockerhub using my credentials. I am wondering whether I have to use my username and password or whether I can create s...
Bal asked 24/1, 2017 at 17:27
5
While executing e2e test in concourse, I'm getting the below error, where it looks like the chromedriver is not getting updated. While similar problems were discussing about chrome version falling ...
Galenical asked 7/8, 2019 at 8:51
2
Solved
How can I set an email to be sent upon completion or failure of a job in Concourse?
Secretariat asked 28/9, 2016 at 15:56
3
I've been trying to integrate Luigi as our workflow handler. Currently we are using concourse, however many of the things we're trying to do is a hassle to get around in concourse so we made the sw...
Instantaneous asked 28/2, 2017 at 19:49
2
Solved
Is it possible to execute multiple tasks from on_failure in concourse?
I could not find an example in documentation or elsewhere
I'd like to do something like
on_failure:
- aggregate:
- put: ...
Signature asked 3/8, 2018 at 12:53
2
I've set up a Concourse server (on bare metal), and everything is working swimmingly, except that I can't start any jobs and at this point I'm at a complete loss. Any help or suggestions would be g...
0
I have a pipeline that looks like this:
jobs:
- name: master
public: true
plan:
- get: master-git
trigger: true
- get: my-build-image
- task: "Run integration tests"
image: my-build-image
...
1
Solved
I am running Concourse 3.10.0, which I installed with the official helm chart, on GKE. I am getting this error, which refers to the wrong sha256:
Pulling registry.hub.docker.com/linkyard/concourse...
Cusped asked 25/4, 2018 at 9:8
1
Solved
I have a shell-based concourse task which uses semi-sensitive credentials (a key to a test server) in one of its commands. I'd like to avoid this being logged in the task output.
The gist of the p...
3
Solved
I have a job with many tasks like this:
- name: main-job
serial: true
plan:
- aggregate:
- get: <git-resource>
passed: [previous-job]
trigger: true
- get: <git-resource-3>
- ta...
Buzzell asked 16/8, 2017 at 2:49
1
I totally understand that Concourse is meant to be stateless, but nevertheless is there any way to re-use already pulled docker images?
In my case, I build ~10 docker images which have the same bas...
1
I am able to use the below code to do a get request on the concourse api to fetch the pipeline build details.
However post request to trigger the pipeline build does not work and no error is report...
Reefer asked 10/6, 2017 at 12:56
1
If task file (file: task.yml) in pipeline (pipeline.yml) config needs to contain some {{properties}}, what is a proper way to add them?
In my case, I want to use a custom docker image from reposit...
Holmann asked 22/4, 2017 at 21:19
3
Solved
we are in the middle of process migrating from Jenkins to Concourse CI and everything was pretty smooth so far. But now I have the issue, that I don't know how to solve. I would like to get any adv...
Felicafelicdad asked 20/6, 2016 at 10:19
1
Solved
It's not clear for me from the documentation if it's even possible to pass one job's output to the another job (not from task to task, but from job to job).
I don't know if conceptually I'm doing ...
Dungeon asked 6/3, 2017 at 20:27
1
Solved
During Concourse build of Java application I want to:
Checkout git master branch
Run mvn package
If it was successful:
increment the SNAPSHOT version in Maven's pom.xml
commit it back to the ma...
2
I try to setup a concourse build server (http://concourse-ci.org/) that supports as many languages/platforms as possible.
I've read that beginning with Windows Server 2016 it will be possible to h...
Chert asked 12/7, 2016 at 9:25
1
Due to some requirement to run the tests in some specific test environment we want to build a custom container to run test on Concourse CI.
We are aware of a workflow which is
Concourse --> B...
Mears asked 28/2, 2017 at 6:36
2
Solved
I want to set up a build pipeline in Concourse for my web application. The application is built using Node.
The plan is to do something like this:
,-> build style guide -> dockerize
source...
2
Solved
I am using concourse and build binaries that I would like to send off to integration tests. However they are lightweight and using an S3 bucket for permanent storage seems like overkill. Additional...
Mihalco asked 4/10, 2016 at 19:28
1
Solved
I am using concourse for our build system.
Concourse caches docker images so that we don't need to go through the download process each on subsequent runs.
I want to add a binary file to the dock...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.