Skip to content

Commit

Permalink
Fixing 404 links, 1-6-25 (#1991)
Browse files Browse the repository at this point in the history
## Type of change
<!-- Please be sure to add the appropriate label to your PR. -->
This PR fixes some links that the checker has found to be 404ing. It
adds a few links to the ignore file as well.

### What should this PR do?
<!-- Does this PR resolve an issue? Please include a reference to it.
-->
resolves #1990

### Why are we making this change?
<!-- What larger problem does this PR address? -->
404s are bad!

### What are the acceptance criteria? 
<!-- What should be happening for this PR to be accepted? Please list
criteria. -->
<!-- Do any stakeholders need to be tagged in this review? If so, please
add them. -->
Just want to note I'm still feeling out the link checker. I'm bad at
regexp but it would probably be cleaner to add the `0.0.0.0` urls there
once I'm able to figure that out.

### How should this PR be tested?
<!-- What should your reviewer do to test this PR? Please list steps.
-->

Signed-off-by: Mark Drake <[email protected]>
  • Loading branch information
SharpRake authored Jan 6, 2025
1 parent c412600 commit 9e78fc4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The following example shows the **SBOM** tab for the `postgres` Image.

You can use the drop-down menu above the table to select which version and architecture of the image you want to view. You can also use the search box to find specific packages in the SBOM or use the button to the right of the search box to download the SBOM to your machine.

Check out our guide on [using the Chainguard Images Directory](/chainguard/chainguard-images/images-directory/) for more details.
Check out our guide on [using the Chainguard Images Directory](/chainguard/chainguard-images/how-to-use/images-directory/) for more details.

## License Information and Source Code references

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The latest Signed Tree hashes of Rekor are published on Google Cloud Storage. Th

## Rekor usage

Rekor provides a restful API based server for validation and a transparency log for storage, accessible via a command-line interface (CLI) application: `rekor-cli`. You can install `rekor-cli` with Go, which we will discuss in the lab section below. Alternatively, you can navigate to the [Rekor release page](https://github.com/sigstore/rekor/releases) to grab the most recent release, or you can build the [Rekor CLI manually](https://docs.sigstore.dev/rekor/installation#build-rekor-cli-manually).
Rekor provides a restful API based server for validation and a transparency log for storage, accessible via a command-line interface (CLI) application: `rekor-cli`. You can install `rekor-cli` with Go, which we will discuss in the lab section below. Alternatively, you can navigate to the [Rekor release page](https://github.com/sigstore/rekor/releases) to grab the most recent release, or you can build the [Rekor CLI manually](https://docs.sigstore.dev/logging/installation/#build-rekor-cli-manually).

Through the CLI, you can make and verify entries, query the transparency log to prove the inclusion of an artifact, verify the integrity of the transparency log, or retrieve entries by either public key or artifact.

Expand Down
5 changes: 4 additions & 1 deletion tools/chainlink/ignore.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"urls": [],
"urls": [
"http://0.0.0.0:8080/Chainguard%20Customer",
"http://0.0.0.0:8080/version"
],
"regexps": [
"^#",
"^/$",
Expand Down

0 comments on commit 9e78fc4

Please sign in to comment.