Итак, у меня есть git-репозиторий на Bitbucket, который мне нужно отслеживать как часть работы Concourse.Репо доступно, и у меня есть SSH-ключи в моей папке ~ / .ssh с правами доступа (600).Со своего компьютера я могу запустить команду «git clone git@bitbucket.org: /. Git» и успешно клонировать репо.Однако, когда я пытаюсь контролировать его как ресурс Concourse, он терпит неудачу.Что я делаю неправильно?Мне не хватает опции конфигурации?
Ниже приведен мой конвейер, и он довольно простой.
resources:
- name: dc
type: git
source:
branch: master
uri: git@bitbucket.org:<company>/<repo>.git
jobs:
- name: Build-docker
plan:
- get: dc
trigger: true
- task: build-image
config:
platform: linux
image_resource:
type: docker-image
source:
repository: ubuntu
run:
path: uname
args: ['r']
Что я вижу в графическом интерфейсе:
stderr:
Cloning into '/tmp/git-resource-repo-cache'...
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Что я вижу, когда запускаю git-clone локально:
git clone git@bitbucket.org:<company>/<repo>.git
Cloning into 'repo'...
Warning: Permanently added the RSA host key for IP address '18.205.93.1' to the list of known hosts.
remote: Counting objects: 50985, done.
remote: Compressing objects: 100% (26500/26500), done.
Receiving objects: 100% (50985/50985), 6.65 MiB | 11.19 MiB/s, done.
remote: Total 50985 (delta 39577), reused 31398 (delta 24283)
Resolving deltas: 100% (39577/39577), done.