-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1454 from GoogleContainerTools/remove-kms-singing
remove kms singing of builds, keyless only
- Loading branch information
Showing
5 changed files
with
11 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,16 +64,18 @@ Any other tags are considered deprecated and are no longer updated | |
All distroless images are signed by [cosign](https://github.com/sigstore/cosign). | ||
We recommend verifying any distroless image you use before building your image. | ||
|
||
#### Keyless (recommended) | ||
Distroless images are signed with cosign in keyless mode. You can verify the keyless signature of any distroless image with: | ||
#### Keyless | ||
Distroless images are signed with cosign in keyless mode, this is the only supported mechanism starting November 2023. You can verify the keyless signature of any distroless image with: | ||
|
||
``` | ||
cosign verify $IMAGE_NAME --certificate-oidc-issuer https://accounts.google.com --certificate-identity [email protected] | ||
``` | ||
|
||
#### Key (no tlog, deprecated, EOL Sept 2023) | ||
#### Key (DEPRECATED) | ||
Verifying using the distroless keys is deprecated in favor of keyless. These signing events are not uploaded to the transparency log. You can use the [distroless public key](cosign.pub) to verify any distroless image with: | ||
|
||
Images built after November 2023 will not be verifyable with `cosign.pub`, use keyless signature verification | ||
|
||
``` | ||
cat cosign.pub | ||
-----BEGIN PUBLIC KEY----- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters