Questions tagged [concourse-git-resource]
49 questions
0
votes
1 answer
JGitflow triggers concourse job infinitely
I'm using JGitFlow with Concourse.
I have two branches - master and develop. My job is triggered when there is a change to develop.
When the job is run, it executes mvn -X --batch-mode jgitflow:release-start jgitflow:release-finish
The issue is…

breaktop
- 1,899
- 4
- 37
- 58
0
votes
1 answer
How do I build a docker-compose container from a git-resource in Concourse CI?
I am currently trying to build and deploy a dockerized Go project, pulled from a Git repo in using Concourse.
To give you some background about my current setup:
I got two AWS Lightsail instances set up, both of them using a Docker container to…

Lennart Schoch
- 157
- 2
- 3
- 21
0
votes
1 answer
How to combine triggers in Concourse pipeline: git and time resource?
I'm trying to set up a Concourse pipeline that will trigger a new deployment. The goal is to only let the pipeline run when new values have been pushed to the git repository AND when the time is within a defined time window.
Currently, the triggers…

FF_Zairo
- 3
- 1
- 3
0
votes
1 answer
How to run a Concourse task conditionally?
I am modifying a concourse script I inherited.
We have a pipeline that looks like this:
[1]build - [2]test A - [3]test B - [4]publish - [5]deploy
Our team worked only with the master branch before but now we are using feature branches.
I made a…

melis
- 1,145
- 2
- 13
- 30
0
votes
2 answers
How to fix the triggering of email with attachments using concourse pipelines
I am trying to get the email triggers with attachments. Which concourse resource to be used?
I have used the below question to get the email trigger working.
How to send email via Concourse CI pipeline?
I would like to get the logs as attachment…

Gurudutt Marathe
- 45
- 12
0
votes
1 answer
How to create Authkey for concoure server that can be used in API Calls to the concourse sever?
request(
{
url:'mysampleendpoint',
headers: {
Authorization: 'Auth key from Browser (skymarshal_auth)',
},
},
function(error, response, body) {
if (response.statusCode ===…

Mike
- 899
- 9
- 27
- 45
0
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
…

M.Haris Qayyum
- 137
- 16
0
votes
1 answer
Concourse: How to add "passed" condition on put task
I have a concourse pipeline which takes git source code, build then deploy it to pcf.
Now I have to make two deployments after the build, pcf-dev and pcf-qa with dependency of qa over dev. It means if dev deployment is successful then do the qa…

M.Haris Qayyum
- 137
- 16
0
votes
1 answer
let concourse job only triggered by git merge commit
I'm working on a pipeline, which watches a git repo and trigger some job when there's a commit. But the repo has too many commits, and I just want the merge commit trigger update, and all other commits should be ignored.
The concourse git resourse…

Peri
- 1
- 1
0
votes
2 answers
Getting error in concourse hijack: Backend error: Exit status: 500
I am getting below error while working on concourse:
hijack: Backend error: Exit status: 500, message:
{"Type":"","Message":"runc exec: exit status 1: exec failed:
container_linux.go:264: starting container process caused \"exec:
…

Manmohan Rawat
- 51
- 3
0
votes
1 answer
Private git repo with self-signed certificate as Concourse resource
Please explain how to make use of a private Git repo with a self-signed certificate as resource in Concourse.
(I know about this accepted feature request but I - and others probably as well - prefer the concise answer.)

Bart Weber
- 1,136
- 4
- 15
- 32
0
votes
1 answer
trigger concourse job via CLI: "resource not found"
I am attempting to trigger a concourse job from the command line. My pipeline has one resource (a git repo) and one job, which uses that repo. I am seeing:
$ fly -t tutorial trigger-job -j my-pipeline/my-job -w
error: resource not found
However,…

Alex Flint
- 6,040
- 8
- 41
- 80
0
votes
2 answers
How to bind the socket through the .yml file..?
My pipeline.yml file looks below, where i am trying to install docker and run docker pull inside the ubuntu container which concourse created.
FYI...
---
resources:
- name: hello_hapi
type: git
source:
uri:…

Rohith
- 1,077
- 5
- 16
- 36
0
votes
1 answer
How to handle multiple code checkins in Concourse pipeline?
One of the github repository is resource for my pipeline. I have 3 parallel jobs in my concourse pipeline which gets triggered when there is any checkin to the github repository. Other jobs in the pipeline is in sequence. I am having the below…

Srbh
- 1
- 1
-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?