Commit 9cbed108 authored by Bill Bagdon's avatar Bill Bagdon Committed by Achilleas Pipinellis

ci_builds also has encrypted tokens

These need to be reset
parent 8c5f583a
...@@ -923,6 +923,29 @@ backup beforehand. ...@@ -923,6 +923,29 @@ backup beforehand.
UPDATE ci_runners SET token = null, token_encrypted = null; UPDATE ci_runners SET token = null, token_encrypted = null;
``` ```
#### Reset pending pipeline jobs
1. Enter the DB console:
For Omnibus GitLab packages:
```sh
sudo gitlab-rails dbconsole
```
For installations from source:
```sh
sudo -u git -H bundle exec rails dbconsole RAILS_ENV=production
```
1. Clear all the tokens for pending jobs:
```sql
-- Clear build tokens
UPDATE ci_builds SET token = null, token_encrypted = null;
```
A similar strategy can be employed for the remaining features - by removing the A similar strategy can be employed for the remaining features - by removing the
data that cannot be decrypted, GitLab can be brought back into working order, data that cannot be decrypted, GitLab can be brought back into working order,
and the lost data can be manually replaced. and the lost data can be manually replaced.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment