Questions tagged [concourse]

For questions related to pipeline-based CI system Concourse written in Go.

Concourse is an open source continuous integration and continuous delivery (CI/CD) system designed for teams that practice test-driven development and continuous delivery.

Teams automate delivery of their software as pipelines which execute testing, packaging, and deployment as often as every commit.

Concourse pipelines are configured via YAML. Pipelines can scale to projects of any complexity. Pipelines are displayed visually to show the status of build runs.

Concourse provides dependable, repeatable results that behave the same in any Concourse deployment, on any cloud.

Concourse provides a wide variety of predefined integrations with external systems, and an open approach for defining custom integrations.

See also: - Documentation - GitHub Repository

419 questions
2
votes
0 answers

Concourse templating: How to escape double curly-braces (parameters), to use as literals?

How do we escape double curly braces and use them as literals instead of fly interpreting them as parameters? I wan to be able to do something like: jobs: - task: greet-him params: STRING: 'Hello {{firstname}} {{lastname}}!' With the STRING…
rrw
  • 671
  • 7
  • 18
2
votes
1 answer

How to mount local directory to concourse pipeline job?

I am trying to connect local git repository to concourse so that i can perform automated testing on my local environment even before committing the code to GitRepo. In other terms i want to perform some tasks before git commit using concourse…
Devanshu
  • 33
  • 1
  • 7
2
votes
5 answers

Concourse resource cache flushing

Sometimes when a concourse pipeline is getting build, it tries to use the previous version of resource, not the latest one. I could confirm this because the resource hash don't match. Please let me know a solution to flush the resource hash.
shoan
  • 1,303
  • 15
  • 22
2
votes
2 answers

Concourse Webhook to Git

Environment: BitBucket Concourse 3.14.0 Wondering is it possible to configure Concourse pipeline with Git webhook which will check if new commit has happened and it would trigger a pipeline build based on that trigger? I looked at…
user2362699
  • 586
  • 6
  • 22
2
votes
0 answers

concourse: cf-resource sso login options

How to configure cf resource with sso options ? Is there any way that we can pass the passcode url to obtain the token through cf resource and pass it as an --sso-passcode for login? - name: cf type: cf source: api: ((cloud_foundry_api)) …
Barath
  • 5,093
  • 1
  • 17
  • 42
2
votes
2 answers

Need to Install Concourse(CI/CD) on windows system

I need to install Concourse(CI/CD) on my Local windows machine Below process I followed : Install Bosh on local system. It was successfully install and while executing command at command prompt then it show version all "bosh" -- "version…
Ajay Jirati
  • 171
  • 12
2
votes
1 answer

Concourse CI can't find kubernetes secrets

I'm receiving the following error when the runner is trying to retrieve a resource: checking failed - Expected to find variables: git my resource looks similar to: - name: resource-repo type: git source: uri: https://[url] branch:…
Deano
  • 105
  • 1
  • 8
2
votes
1 answer

Concourse: Upload to artifactory fails with curl error (outstanding read data remaining)

I want to automatically discover new stemcell versions on pivnet, download them from pivotal network and upload them to a local artifactory. However, the upload (to artifactory) task fails with the following error: % Total % Received % Xferd …
muehsi
  • 588
  • 3
  • 19
2
votes
0 answers

Missing resource types in the concourse/concourse docker image?

When i run the concourse/concourse docker image with compose below, and attach pgadmin to the DB, there are no rows in the BaseResourceTypes or ResourceTypes table. I read somewhere that they are not included in the docker image (or at least the…
Pee Gee
  • 21
  • 3
2
votes
1 answer

Concourse CI, git tag with constant value

I would like to tag my git commits as they are deployed to the various environments in my concourse pipeline with the name of the environment. For example, in my UAT deployment job, I would like to do something like: - put: master-resource <-- a git…
ebar
  • 21
  • 3
2
votes
1 answer

concourse-web service error "message":"atc.db.failed-to-open-db-retrying"

I followed the https://www.digitalocean.com/community/tutorials/how-to-install-concourse-ci-on-ubuntu-16-04 to install concourse on my local machine VM. I checked the status of the concourse-web service but I see the service is started but there is…
2
votes
1 answer

Cannot use ssh to clone git repository with Concourse

We are using a Concourse instance deployed to and EC2 instance using docker-compose, as outlined here. Things are mostly working well. However, we can't seem to clone git resources using SSH. We get this error: resource script '/opt/resource/check…
Mark
  • 53
  • 9
2
votes
2 answers

Docker-compose executions not cleaning up in Concourse

I have a single-vm deployment I am playing with using bosh (following these instructions: http://concourse-ci.org/concourse-lite.html) After a bunch of builds, my pipeline errors with /scratch/docker/tmp/GetImageBlob128904326: no space left on…
Ben Hernandez
  • 857
  • 1
  • 11
  • 23
2
votes
1 answer

Restart concourse single vm with bosh

I'm following the quickstart concourse guide to test CI on my project, the first time I did everything worked great: $ bosh create-env concourse-lite.yml Upon executing the above command I was able to go http://192.168.100.4:8080 and start using…
Javier López
  • 823
  • 8
  • 14
2
votes
1 answer

Concourse docker web component fails to run

I am trying to run Concourse from the 3.5.0 docker image and using the docker-compose.yml example as a template. I created a bridged docker network for the connections then started the postgres docker container created keys in directories web and…
PaulB
  • 29
  • 6