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

372 questions
-1
votes
1 answer

Concourse: Read git resource meta-data

I have a concourse pipeline: groups: [] resources: - name: source-code type: git resource_types: [] jobs: - name: build public: true plan: - get: source-code - task: build privileged: true config: platform: linux …
-1
votes
1 answer

Autoscaling program Bosh/Concourse

I am developing a autoscaling program for Bosh running Concourse, what is the language/process to writing the program and then implementing it in the pipeline?
-1
votes
1 answer

Where does the concourse ci create containers to run the task? How to get into any of those containers?

Where does the concourse ci create containers to run the task? How to get into any of those containers?
-1
votes
1 answer

Concourse resources not working after changing instance

I need some help to understand what is happening with our Concourse installation. We have Concourse working in an AWS EC2 Ubuntu instance (web and worker). For different reasons, we needed to move to a new EC2 instance. The problem is that Concourse…
Gerardo
  • 185
  • 1
  • 13
-1
votes
1 answer

How to send the test results from a build (Concourse or any CI tool) into the git or bitbucket?

What are the methods to commit a test results output from a Concourse CI pipeline to a repository in GitHub or Bit Bucket?
Ravim
  • 1
  • 3
-1
votes
1 answer

Version number as a variable in a shell script

I’m using a semver resource where the version number is stored in git. Now I want to use the version number in the filename of the build file that is stored in a S3 bucket. We have the pipeline pointing to a separate task-file which points to a…
-1
votes
1 answer

Concourse S3 resource can't find simple file; 'no versions available'

I've got a Concourse trigger set to detect when a particular file appears in an S3 bucket. Using this resource: https://github.com/concourse/s3-resource . Configuration is like so: - name: s3-trigger-file type: s3 source: bucket: mybucket …
ether_joe
  • 841
  • 13
  • 24
-1
votes
2 answers

How to setup ci/cd pipeline for github, docker dev and prod environments via concourse?

I am actually setting up CI/CD pipeline between GitHub, concourse, docker. here i am able get the code into concourse and build the docker images and push those images to docker private registry. After build success i want to deploy those images to…
kota chari
  • 19
  • 3
-2
votes
0 answers

Azure IaC with Terraform on Concourse-CI

Looking for a simple demo with example or reference on "Azure Infrastructure Automatic Deployment" with Terraform as IaC , automated on ConCourse-CI Pipelines. Thanks in Advance for the help.
-2
votes
1 answer

Resource Type in Concourse CI: What happens if Check always returns just the latest version?

I was looking at the git resource and found it curious that Check is doing a clone rather than the much more lightweight ls-remote. I think there are two reasons: The possibility to filter commits based on metadata and what files changed in the…
squashed
  • 1
  • 1
  • 3
-2
votes
1 answer

while doing vagrant up vm is not initialing getting error in INFO subprocess

while doing vagrant up vm is not initialing getting error in INFO subprocess: Starting process: ["C:\Windows\System32\WindowsPowerShell rofile", "-NonInteractive", "-ExecutionPolicy", "Bypass", "-Command", "(new-ob…
-2
votes
1 answer

what is the purpose of -exc, export TERM=dumb in concourse yml file?

Can someone tell me what the purpose of "-exc", "|", and "export TERM=dumb" in concourse .yaml file? run: path: sh args: - -exc - | export TERM=dumb
dab
  • 37
  • 2
1 2 3
24
25