Questions tagged [concourse-pipeline]

For questions specifically related to the configuration and usage of Pipelines in Concourse - the CI system written in Go. When using this tag also include the more generic [concourse] tag where possible.

64 questions
0
votes
0 answers

Tasks are not populated in concourse pipeline (Concourse version 7.8.2)

I am brand new to the concourse and trying to set up a pipeline through the pipeline but why am I getting this error on my very first pipeline, can anyone help out? ''' jobs: name: update-library-cache serial: true plan: get: library_cache get:…
0
votes
0 answers

"attempts" field is invalid in concourse version 7.7.1

in concourse 7.7.1, When I setup the pipeline plan: - {get: abc, trigger: true} - get: ttt - get: library_cache - in_parallel: - {task: build-frontend, file: ttt/ci/tasks/build.yml, privileged: true, params: {TARGET_CFG: ((gamma)), SERVICE:…
0
votes
2 answers

Concourse custom resource type failing in check step

I'm following below github repo for building a new concourse custom resource type in python. https://github.com/apjansing/mongo_resource But it is failing with below error in the resource check in concourse pipeline run check step: check: Backend…
0
votes
1 answer

Building and pushing a docker image for a springboot application on ECR using concourse

I am building a concourse pipeline for a spring-boot service. The pipeline has two jobs (test, package-build-and-push). The first job (test) has a single task (mvn-test-task) that will be responsible for running a maven test. The second job has two…
0
votes
2 answers

Letting Concourse retry a build which failed because of a flaky issue

According to Concourse documentation If any step in the build plan fails, the build will fail and subsequent steps will not be executed It makes sense. However I'm wondering how I could deal with flaky steps. For instance if I have a pipeline…
gturri
  • 13,807
  • 9
  • 40
  • 57
0
votes
1 answer

Concourse: Option to run all taks regardless of failure state

Wanted to know if there is any flag/option for concourse tasks inside a single job so that all tasks gets executed regardless of any task failing. Thanks!
0
votes
1 answer

Resource Type vs Resource in Concource CI

I am new to Concourse Can someone please help me understand the difference between Resource and Resource Type in simple words? Apparently, documentation is not helping me.
0
votes
1 answer

How can I display the url of a page in concourse pipeline so that I can click the url in the pipeline to jump to the corresponding page

I am trying to create a concourse pipeline where there should be a url link and that link should be clickable to jump to the corresponding page. Here is my code which is giving the static link. - task: url-link config: platform: linux …
u.mang
  • 25
  • 1
  • 7
0
votes
1 answer

Concourse resource `check_every: never` time: invalid duration "never"

Running concourse 6.7.4. The concourse documentation says you can set a resource to never be checked by setting check_every to never (https://concourse-ci.org/resources.html#schema.resource). However, it results int the following error, time:…
0
votes
0 answers

Adding pom version number to the Artifactory repository path

How can I add the pom.xml (maven) version number to the Artifactory repository path in the pipeline. resource_types: - name: artifactory type: docker-image source: repository: pivotalservices/artifactory-resource resources: -…
angus
  • 3,210
  • 10
  • 41
  • 71
0
votes
1 answer

Running a Concourse-Task with an registry-image resource

I am using Concourse-CI in combination with a private Docker registry and everything works fine. However, I want to run a task as an image I provide via the registry. To clarify: I don't want to run the image within the task, the task source should…
0
votes
2 answers

Why am I getting this error in Concourse? Error: No step configured

I am brand new to concourse and am trying to use it to make a terraform-ci platform and cannot figure out why im getting this error on my very first pipeline, can anyone help out? jobs: - name: terraform-pipeline serial: true plan: -…
0
votes
1 answer

Concourse CI git clone multiple repos to same directory

Can someone help me to achieve my request. I would like to git clone multiple repos into the same directory where the first git repo is downloaded. Below is my pipeline.yml file. Any help is much appreciated. resources: - name: workspace-repo1 …
Raghavendra
  • 521
  • 5
  • 11
0
votes
1 answer

concourse pipeline - throwing error for sub folders "not a valid repository name"

I have repository which has two frontend application and one server folder. i need to create pipeline for two frontend(angular) and one server(nodejs) folder. if I create a pipeline for main folder(concourse-pipeline) its working fine. but when I…
0
votes
1 answer

In Concourse, is it possible AT ALL to select a git resource branch interactively in web UI or fly CLI?

F.e. normally you use "develop", but today you want to use "patchXYZ"... Without changing the pipeline, is there a way to prompt the user for the branch name? If not, what is the best practice with the Concourse for this flow?