Update README.md
This commit is contained in:
parent
8c0ab6996f
commit
576a0a27dd
1 changed files with 10 additions and 4 deletions
14
README.md
14
README.md
|
|
@ -2,11 +2,17 @@
|
||||||
|
|
||||||
Call Theory public keys for verification of signed containers from our container registery.
|
Call Theory public keys for verification of signed containers from our container registery.
|
||||||
|
|
||||||
|
## Call Theory SSH Public Key
|
||||||
|
|
||||||
|
- [calltheory.pub](calltheory.pub)
|
||||||
|
|
||||||
|
> Add to your `authorized_keys` file for the
|
||||||
|
|
||||||
## Verifying Calltheory container images
|
## Verifying Calltheory container images
|
||||||
|
|
||||||
All images published to `cr.calltheory.com/orbital/*` are signed with Cosign.
|
All images published to `cr.calltheory.com/orbital/*` are signed with Cosign.
|
||||||
|
|
||||||
## Install cosign
|
### Install cosign
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -sSL -o /usr/local/bin/cosign \
|
curl -sSL -o /usr/local/bin/cosign \
|
||||||
|
|
@ -14,19 +20,19 @@ curl -sSL -o /usr/local/bin/cosign \
|
||||||
chmod +x /usr/local/bin/cosign
|
chmod +x /usr/local/bin/cosign
|
||||||
```
|
```
|
||||||
|
|
||||||
## Get the public key
|
### Get the public key
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -O https://git.calltheory.com/calltheory/public-keys/raw/branch/main/keys/cosign.pub
|
curl -O https://git.calltheory.com/calltheory/public-keys/raw/branch/main/keys/cosign.pub
|
||||||
```
|
```
|
||||||
|
|
||||||
## Verify an image
|
### Verify an image
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cosign verify --key cosign.pub cr.calltheory.com/orbital/smoketest@sha256:abc123...
|
cosign verify --key cosign.pub cr.calltheory.com/orbital/smoketest@sha256:abc123...
|
||||||
```
|
```
|
||||||
|
|
||||||
## Verify in Kubernetes
|
### Verify in Kubernetes
|
||||||
|
|
||||||
For automated verification, install *Sigstore Policy Controller* or
|
For automated verification, install *Sigstore Policy Controller* or
|
||||||
similar admission controller and configure it to trust this key for
|
similar admission controller and configure it to trust this key for
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue