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
0
votes
1 answer

concourse ci behind nginx proxy

export CONCOURSE_BIND_PORT=9000 export CONCOURSE_BIND_IP=5.6.7.8 # dummy internal ip export CONCOURSE_EXTERNAL_URL=http://ci.ratpoison.io docker run --rm \ --expose ${CONCOURSE_BIND_PORT} \ -v /path/to/concourse/keys/web:/concourse-keys \ …
drahnr
  • 6,782
  • 5
  • 48
  • 75
0
votes
0 answers

Logs being flooded tsa.connection.tcpip-forward.forward-conn.io-complete

We are being flooded by this in the ATC logs over 2000 message per…
DomaNitro
  • 3,156
  • 1
  • 23
  • 19
0
votes
1 answer

Running Concourse CI on Kubernetes

Is there any ways to deploy Concourse (both worker and web parts) via Kubernetes? I faced an issue with docker push: cb1e3aeea39c: Waiting 5dd685fa9d71: Waiting 8a88c6d1419d: Mounted from wodby/php b37b676c40b5: Mounted from wodby/php af413e3ea009:…
pprishchepa
  • 997
  • 1
  • 9
  • 21
0
votes
2 answers

Concourse CI and custom docker-compose

I try to start Concourse CI with custom docker-compose version: '2' services: concourse-web: image: concourse/concourse container_name: concourse-web command: web network_mode: host volumes:…
SirEdvin
  • 21
  • 2
0
votes
2 answers

Concourse CI junit test

I am new to concourse CI. Can someone point me to the right direction? I would like to know how I can run junit using concourse CI. Thanks in advance for your assistance. -Dd
dab
  • 57
  • 3
0
votes
0 answers

How to setup concourse without access to the Internet?

I've got an internal docker registry, internal DNS, etc. Access to the larger Internet is blocked except http/https via a proxy, which I'd like to avoid anyway. UDP calls to 8.8.8.8 are also blocked, in case you're wondering. I'm trying to set 2.7.0…
Baczek
  • 1,179
  • 1
  • 13
  • 23
0
votes
1 answer

How to configure dns for concourse build container?

Is it possible to configure the dns for the concourse build container. I know there is a build_args: argument with the docker-image-resource but I am unable get it to replicate the following docker build parameter--dns=IP_ADDRESS... Has anyone done…
blane
  • 9
  • 6
0
votes
0 answers

Unable to pull docker image with concourse - Verifying Checksum error

I am unable to pull docker images with concourse, it was working fine earlier today but suddenly stopped working.It basically halts.. e9c5e611068d: Pulling fs layer .. f9cf24c26853: Waiting ff82d8c50b3d: Waiting ... ab3f544d71c3: Verifying…
Atlantic0
  • 3,271
  • 5
  • 17
  • 24
0
votes
0 answers

s3-ressource : how to specify content-type?

I need to upload translations file asset on S3 using the concourse s3-ressouce with a "application/json" content-type. Although, the content-type set in aws-s3 is always "binary/octet-stream". It seems to be the default value set when concourse…
0
votes
1 answer

Concourse tasks that check uname on different images

From the Stark Concourse tutorial The following task will run the uname command with the -a switch on a docker-image tagged "14.04": --- platform: linux image_resource: type: docker-image source: {repository: ubuntu, tag: "14.04"} run: path:…
mbigras
  • 7,664
  • 11
  • 50
  • 111
0
votes
1 answer

Go binaries for concourse ci tasks

What are some good patterns for using go in concourse-ci tasks. For example, should I build files locally with all dependencies and check-in cross-compiled binaries to the repo? Should I build on concourse prior to running the task? Examples of what…
Andy Hume
  • 40,474
  • 10
  • 47
  • 58
0
votes
1 answer

Concourse cant put docker image to local repo, not a vaild repository/tag

Concourse cant build and deploy to docker, I get this error: invalid argument "http://10.250.249.243:5000/frontend-srv-img:latest" for t: Error parsing reference: "http://10.250.249.243:5000/frontend-srv-img:latest" is not a valid …
David Karlsson
  • 9,396
  • 9
  • 58
  • 103
0
votes
1 answer

concourse ci does not trigger on certain committed files

First, I do know that if I use [ci skip] in the commit message to GitHub it should not trigger based upon the commit message. However, I am only committing one file to GitHub. So instead of using this commit message, is there a way to exclude…
Chris Bolton
  • 2,162
  • 4
  • 36
  • 75
0
votes
1 answer

Concorse web-ui container keeps dying

I'm trying to test out concourse on an ubuntu 14.04 ec2 instance. I am attempting to use the containerized version of the software with the docker-compose example shown here in the documentation. However on any attempt the concourse-web container…
Alex Cohen
  • 5,596
  • 16
  • 54
  • 104
0
votes
0 answers

Exposed Service unreachable

I am trying to run the following Kubernetes module which builds a Concourse Web UI & Scheduler along with the Postgresql dependency through this: https://github.com/vyshane/concourse-kubernetes However, the issue I am having is that expose mechanism…
MaxR
  • 61
  • 1
  • 1
  • 3
1 2 3
27
28