Skip to content

Commit

Permalink
feat(docs): add tip about expired ghcr.io creds (#778)
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Morey <[email protected]>
Co-authored-by: Kent Rancourt <[email protected]>
  • Loading branch information
morey-tech and krancour authored Sep 19, 2023
1 parent 6e869d4 commit 56cf0fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/docs/20-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,26 @@ The Kargo dashboard will be accessible at

The Admin password is `admin`.

:::tip
```
Error: INSTALLATION FAILED: failed to authorize: failed to fetch oauth token: unexpected status: 403 Forbidden
```

If you recieve this error, it's likely because `docker` is configured to
authenticate with `ghcr.io` using an expired token.

You can confirm this by running:
```
docker pull ghcr.io/akuity/kargo:v0.1.0-rc.21
```
```
Error response from daemon: Head "https://ghcr.io/v2/akuity/kargo/manifests/v0.1.0-rc.21": denied: denied
```

To solve this problem, either remove the invalid credentials for `ghcr.io` by
running `docker logout ghcr.io` or re-authenticate by running `docker login ghcr.io`
:::

## Trying It Out

### Create a GitOps Repository
Expand Down

0 comments on commit 56cf0fe

Please sign in to comment.