Opened at 2024-06-18T15:28:54Z
Last modified at 2024-08-26T16:10:14Z
#4098 new task
CircleCI is Broken
Reported by: | meejah | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | undecided |
Component: | unknown | Version: | n/a |
Keywords: | Cc: | ||
Launchpad Bug: |
Description
It looks like all CircleCI builds are broken as of a couple weeks ago due to failure to check out the code (it's using ssh so perhaps a key expired or was revoked?)
I don't see anything obvious in the config after a quick look
Change History (16)
comment:1 Changed at 2024-08-20T17:48:29Z by hacklschorsch
comment:2 Changed at 2024-08-20T17:57:36Z by hacklschorsch
comment:3 Changed at 2024-08-20T18:13:39Z by hacklschorsch
Maybe the error is spurious? This run, 7 days ago, did not show the 'ssh' error:
comment:4 Changed at 2024-08-20T21:28:15Z by sajith
This appears to be the problem:
Warning: checkout key has zero length Writing SSH key for checkout to "/tmp/nobody/.ssh/id_rsa" Fetching into existing repository Fetching from remote repository Warning: Permanently added the ECDSA host key for IP address '140.82.113.3' to the list of known hosts. Load key "/tmp/nobody/.ssh/id_rsa": invalid format git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.
I am able to run a job with ssh. I did that, and it indeed is true that /tmp/nobody/.ssh/id_rsa (which is the checkout key) is empty. Why?
According to https://circleci.com/docs/configuration-reference/#checkout, "the checkout command automatically adds the required authenticity keys for interacting with GitHub? and Bitbucket over SSH". Also, under CircleCI -> Project settings -> SSH keys, it says that "no checkout key is currently configured! We won't be able to check out your project for testing."
So that seems to be the problem. There's a button that says "add deploy key" but that does not work (Firefox 129.0, Debian). I am going to try the next button, which is under "user key" that says "authorize with GitHub?" (description: "A user key is a user-specific SSH key. GitHub? has the public key, and we store the private key. Possession of the private key gives the ability to act as that user, for purposes of 'git' access to projects.")
(Can CircleCI check out code over HTTPS? That should be helpful?)
comment:5 Changed at 2024-08-20T21:38:15Z by sajith
Update: "Authorize with GitHub?" did not add a checkout key.
comment:6 Changed at 2024-08-20T22:08:27Z by sajith
The docs on both CircleCI and GitHub are confusing and my head hurts from trying to figure them out, but my current reading is that we'll need to install a "CircleCI GitHub App" in the tahoe-lafs GitHub organization.
https://circleci.com/docs/github-apps-integration/
It seems that tahoe-lafs was originally configured with an old-fashioned "GitHub OAuth app". That is what the URL https://app.circleci.com/pipelines/github/tahoe-lafs/<blah-blah-blah> suggests. If we were using the "CircleCI GitHub App", that would have been https://app.circleci.com/tahoe-lafs/circleci/<blah-blah-blah>. With that, CircleCI should be able to generate checkout keys, and presumably share the public part of those keys with GitHub.
I could complain about the useless error message from CircleCI, but that would produce nothing useful...
I have not been keeping up, but it is possible that either GitHub or CircleCI stopped working with the old-fashioned OAuth app. I do not have admin permissions on tahoe-lafs GitHub project, so I can't install the "CircleCI GitHub App" there.
comment:7 follow-up: ↓ 9 Changed at 2024-08-21T13:04:48Z by hacklschorsch
I didn't find anything regarding HTTPS for checkout, but I stumbled over https://batsov.com/articles/2022/09/20/resetting-circleci-checkout-ssh-keys/ saying:
There are two simple ways to regenerate the missing key:
- Go to CircleCI’s console and disable building the project in question (basically press “Stop building”). Once you re-enable the project the SSH key will be regenerated and added to GitHub?.
- Alternatively you can go to your project settings in CircleCI’s console, delete the read checkout SSH key there and re-add it. That’s under “Project settings -> SSH keys” and should be the first key you see there.
I think that option 2) is the better one, simply because it takes a bit less time, but both get the job done.
Maybe the second option works w/o admin access to GitHub Tahoe-LAFS?
comment:8 Changed at 2024-08-21T13:11:36Z by hacklschorsch
https://circleci.com/changelog/changes-to-code-checkout-for-orgs-that-integrate-with-github-app/ sounds like since Mar 25, 2024, using CircleCI’s GitHub App integration results in cloning with HTTPS by default (because it supposedly is "a more secure method" (?)).
comment:9 in reply to: ↑ 7 Changed at 2024-08-22T01:24:54Z by sajith
Replying to hacklschorsch:
I didn't find anything regarding HTTPS for checkout, but I stumbled over https://batsov.com/articles/2022/09/20/resetting-circleci-checkout-ssh-keys/ saying:
The error message Bozhidar Batsov describes does not have the "checkout key has zero length" message, so perhaps they were solving a different thing?
In any case, in app.circleci.com, under tahoe-lafs project settings -> ssh keys, there are three things:
- Deploy key (repo-specific SSH key, for GitHub access)
- User key (user-specific SSH key, for GitHub access)
- Additional ssh keys
Under "Additional SSH Keys", there's a fingerprint of "SHA256:v1Kg79rxSj0qyLEb27BeBQqPQ8B2qxTwy2K2kqOeJE4" (configured to use with the hostname github.com), which I guess is that of an ssh key someone (exarkun maybe?) added. That seems to be the only thing I am able to delete.
But "Additional SSH Keys" are about "keys to the build VMs that you need to deploy to your machines", not checkouts. I don't know what one would deploy to github.com from CircleCI. Will I break something (I don't know what that something would be) if I delete that key?
comment:10 Changed at 2024-08-22T09:04:59Z by hacklschorsch
I don't know either, sorry. Hearing from Bozhidar Batsov that deleting and recreating the same key solved anything doesn't give me the best feeling about CircleCI in the first place, but I thought it might be worth a try.
So am I understanding correctly - if someone with access to GitHub Tahoe-LAFS would create a read-only deploy key you could add it to CircleCI?
I don't have the required permissions on either service.
comment:11 Changed at 2024-08-22T13:02:26Z by sajith
I can add an "Additional SSH Key" to CircleCI. If we do that, I think we will also need to add an add_ssh_key step before each checkout step in our .circleci/config.yml. And then the someone who gives me the key will have to add the key to GitHub repository settings also (at https://github.com/tahoe-lafs/tahoe-lafs/settings/keys/new presumably.)
https://circleci.com/docs/add-ssh-key/#add-ssh-keys-to-a-job
We have ten checkout steps, so this is making me uncomfortable. :-)
It sounds like it might be much easier for someone with GitHub org admin right to install that darned "CircleCI GitHub App" before we go through the more involved steps?
I am going to try asking in CircleCI forums.
comment:12 Changed at 2024-08-22T13:20:38Z by sajith
Many forum posts came up when searching for git@github.com: Permission denied (publickey) in https://discuss.circleci.com/. One of them (https://discuss.circleci.com/t/git-github-com-permission-denied-publickey-on-repo-that-previously-worked/37763) lead to:
It seems that resetting the whole thing might do something:
- Clicking the "Stop building" button on CircleCI (I can't do this, since I do not have admin access to CircleCI tahoe-lafs project)
- Removing CircleCI webhooks from GitHub (I can't do this)
- Removing deploy keys from GitHub (I can't do this)
- And then add the project back to CircleCI (I don't think I can do this)
Basically a GitHub org/repo admin will need to step in.
Also worth mentioning that I see both these error messages:
Warning: checkout key has zero length Writing SSH key for checkout to "/tmp/nobody/.ssh/id_rsa" Fetching into existing repository Fetching from remote repository Warning: Permanently added the ECDSA host key for IP address '140.82.112.3' to the list of known hosts. Load key "/tmp/nobody/.ssh/id_rsa": invalid format git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.
and
Writing SSH key for checkout to "/tmp/nobody/.ssh/id_rsa" Writing SSH public key for checkout to "/tmp/nobody/.ssh/id_rsa.pub" Fetching into existing repository Fetching from remote repository git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.
comment:13 Changed at 2024-08-22T14:12:08Z by sajith
comment:14 Changed at 2024-08-22T16:55:58Z by sajith
Also submitted a support request. I hope either the post or the request gets a response, and I hope I won't be scolded for the multi-prong approach. ;-)
-------- Forwarded Message -------- From: CircleCI To: Sajith Subject: [Request Received] "fatal: Could not read from remote repository." Date: 08/22/2024 11:49:11 AM ##- Please type your reply above this line -## Hello, Thank you for contacting CircleCI Support. Your ticket reference ID is: 153696 For fastest time to resolution, please visit the CircleCI Support Center, where all of our most commonly asked questions have been answered by our skilled Support Engineers. You can also find helpful posts created by CircleCI users on our Discuss Forum. Our team of Support Engineers answer every ticket, with priority to customers on dedicated support plans. If your team would benefit from guaranteed response times in 1 business day or less, consider upgrading your Support Plan from your current level of Free to one of our paid plans. A great place to start would be our Starter Support plan. You can easily upgrade directly from your plan settings page in the CircleCI app. While we are not able to guarantee response times for Free plans, someone from our team will review this ticket and respond promptly. Thank you for reaching out, and happy building, The CircleCI Team This email is a service from CircleCI.
(I'm omitting actual email addresses.)
comment:15 Changed at 2024-08-22T18:33:00Z by sajith
I received a response from CircleCI support. Basically a GitHub? org admin will need to step in.
-------- Forwarded Message -------- From: Martin (CircleCI) Subject: [CircleCI] Re: "fatal: Could not read from remote repository." Date: 08/22/2024 12:13:14 PM ##- Please type your reply above this line -## Your request (153696) has been updated. To add additional comments, reply to this email. Martin (CircleCI) Aug 22, 2024, 12:13 CDT Hello , Thank you for reaching out to CircleCI Support. Based on the information provided, it seems like there might be an issue with the SSH keys or permissions since this behavior is happening on the checkout step. One possible reason could be that the checkout SSH key got removed. This can happen when changes are made to the developer accounts or organization settings on GitHub. Resetting webhooks, checkout keys, and deploy keys associated with the project can help ensure you're working with a known good setup going forward. You can follow the steps in this Support Center article <https://support.circleci.com/hc/en-us/articles/360021666393-How-to-manually-stop-building-by-removing-your-deploy-key-and-webhook-from-GitHub> to do so. Another possibility is that there might be expired tokens in the environment variables. CircleCI handles the auth for you when it creates the key and adds it to GitHub, so most of the time, git-related auth in the environment variables aren't necessary. If there are expired tokens, it could prevent CircleCI from checking out the code. Lastly, have any project admin please ensure that CircleCI is enabled in their GitHub organization's third-party app restrictions in their Organization Settings <https://support.circleci.com/hc/en-us/articles/360056873811-Your-access-to-a-project-from-CircleCI-was-revoked-by-GitHub>. You can read more about these restrictions in GitHub's Documentation <https://help.github.com/articles/about-oauth-app-access-restrictions/>. Please pass this information on to the project admin on GitHub so they can check these settings. If the issue persists, please let us know. Thank you, Martin Support Engineer @ CircleCI
In the meanwhile check-outs have resumed working. I don't know if this happened because of something CircleCI did, or some random buttons I clicked on CircleCI, or someone else acting quietly.
comment:16 Changed at 2024-08-26T16:10:14Z by meejah
I do have org-admin on "tahoe-lafs" however the github account that has that permission is "meejah" and I am not authorizing it for use with CircleCI because they ask for way too many permissions (write access to all public, private and org repositories).
I also have a "meejahcircleci" GitHub? account, but it does not have org-admin. I tried following the either of the steps above, but they all start with "log in to your CircleCI account" so I do not believe they will succeed.
Example of defective CI run: https://app.circleci.com/pipelines/github/tahoe-lafs/tahoe-lafs/4958/workflows/d16324ae-293d-45c8-ba97-6ac39ef4cfc4/jobs/86344