I have a concourse server that is stuck on the preparing build stage: screencap of hangup
This issue only started happening after I specified a paths list in my git-resource source config:
1 # Dockerfile source
2 - name: test-git
3 type: git
4 source:
5 uri: ((git-uri))
6 branch: main
7 paths:
8 - Dockerfile
Dockerfile was in the top directory. I also tried moving Dockerfile to another folder:
docker-file. Then I tried using a glob: docker-file/*
and docker-file/**
, but neither worked.
ref: https://github.com/concourse/git-resource
Wondering if there are any suggestions on causes
test-git
input unrestricted by paths - job is starting fine.Dockerfile
- Concourse is now awaiting changes only to that path, and it doesn't take into account the original Dockerfile
. Hence the hangup.Dockerfile
- the job should start again.I agree that this behavior, combined with message "latest version of resource not found" is perplexing.