Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/en/cosign/system_config/registry_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* Digital Ocean Container Registry
* Sonatype Nexus Container Registry
* Alibaba Cloud Container Registry
* Quay.io and Project Quay Container Registry

We aim for wide registry support. To sign images in registries which do not yet fully support OCI media types, one may need to use `COSIGN_DOCKER_MEDIA_TYPES` to fall back to legacy equivalents. For example:

Expand All @@ -32,8 +33,8 @@
Please help test and file bugs if you see issues!
Instructions can be found in the [tracking issue](https://github.com/sigstore/cosign/issues/40).

## Rekor support

Check failure on line 36 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Headings should be surrounded by blank lines

content/en/cosign/system_config/registry_support.md:36 MD022/blanks-around-headings/blanks-around-headers Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: "## Rekor support"] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md022.md
_Note: this is an experimental feature_

Check failure on line 37 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Emphasis used instead of a heading

content/en/cosign/system_config/registry_support.md:37 MD036/no-emphasis-as-heading/no-emphasis-as-header Emphasis used instead of a heading [Context: "Note: this is an experimental ..."] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md036.md

To publish signed artifacts to a Rekor transparency log and verify their existence in the log
set the `COSIGN_EXPERIMENTAL=1` environment variable.
Expand All @@ -50,7 +51,7 @@

Cosign signatures are stored as separate objects in the OCI registry, with only a weak
reference back to the object they "sign".
This means this relationship is opaque to the registry, and signatures *will not* be deleted

Check failure on line 54 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Emphasis style should be consistent

content/en/cosign/system_config/registry_support.md:54:72 MD049/emphasis-style Emphasis style should be consistent [Expected: underscore; Actual: asterisk] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md049.md

Check failure on line 54 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Emphasis style should be consistent

content/en/cosign/system_config/registry_support.md:54:81 MD049/emphasis-style Emphasis style should be consistent [Expected: underscore; Actual: asterisk] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md049.md
or garbage-collected when the image is deleted.
Similarly, they **can** easily be copied from one environment to another, but this is not
automatic.
Expand All @@ -66,8 +67,8 @@

This will replace the repo in the provided image:

```

Check failure on line 70 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Fenced code blocks should have a language specified

content/en/cosign/system_config/registry_support.md:70 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md040.md
export COSIGN_REPOSITORY=gcr.io/my-new-repo
gcr.io/user-vmtest2/demo -> gcr.io/my-new-repo/demo:sha256-DIGEST.sig
```

Check failure on line 73 in content/en/cosign/system_config/registry_support.md

View workflow job for this annotation

GitHub Actions / markdownlint

Fenced code blocks should be surrounded by blank lines

content/en/cosign/system_config/registry_support.md:73 MD031/blanks-around-fences Fenced code blocks should be surrounded by blank lines [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md031.md
So the signature for `gcr.io/user-vmtest2/demo` will be stored in `gcr.io/my-new-repo/demo:sha256-DIGEST.sig`.
Loading