I'm using IBM Cloud Code Engine to build the source code from a private git repo. I have tried many times, and the buildrun always failed. Following are the steps I have done.
Add my public key (/root/.ssh/id_rsa.pub) to my private repo as a deploy key
Use IBM Cloud Code Engine CLI to create repo access credential
ibmcloud ce repo create --name ibmgithub --key-path /root/.ssh/id_rsa --host github.ibm.com
Use IBM Cloud Code Engine CLI to create a build and then submit a build run
ibmcloud ce build create --name minion --image us.icr.io/mynamespace/myimg --rs ce-default-icr-us-south --git-repo-secret ibmgithub --source https://github.ibm.com/myaccount/myrepo --strategy dockerfile --size medium
The build run always fails
#:~/synthetics-private-minion# ibmcloud ce bd get -n minion
Getting build 'minion'
OK
Name: minion
ID: 0abc63a0-07d5-42c5-b70a-227e52310276
Project Name: private location
Project ID: 25491342-e9e8-4ac7-90ff-b9994cda9242
Age: 6m24s
Created: 2021-03-31T04:11:41-05:00
Status: Succeeded
Reason: all validations succeeded
Image: us.icr.io/mynamespace/myimg
Registry Secret: ce-default-icr-us-south
Build Strategy: kaniko-medium
Timeout: 10m0s
Source: https://github.ibm.com/myaccount/myrepo
Commit: main
Dockerfile: Dockerfile
Repo Secret: ibmgithub
Build Runs:
Name Status Age
minion-run-sj5fl "step-git-source-source-cm7pc" exited with code 1 (image: "icr.io/obs/codeengine/tekton-pipeline/git-init-4874978a9786b6625dd8b6ef2a21aa70@sha256:47b8008fa1910fa36c8284871eb9d8e7fbab8bc3a1db4cdd97c61d88727cc58f"); for logs run: kubectl -n 7pztl5cw3ad logs minion-run-sj5fl-nbzft-pod-rx9x9 -c step-git-source-source-cm7pc 5m42s
Never used
.Can anyone shed some light on it ? Thanks.
Since you're using an ssh key, make sure the URL to your git repo starts with git@
instead of https://
. So it should be git@github.ibm.com/myaccount/myrepo in your case.
For further issues with failing builds, you can check the related troubleshooting buildruns section in the Code Engine docs.