Kubernetes Validation Admission Controller to verify Cosign Image signatures.
This webhook watches for pod creation in deployments and verifies the first container image it finds with an existing RSA public key (if present).
helm -n cosignwebhook upgrade -i cosignwebhook oci://ghcr.io/eumel8/charts/cosignwebhook --versi
on 3.0.0 --create-namespace
this installation has some advantages:
- automatic generation of TLS key pair
- automatic setup of ServiceMonitor and Grafana dashboards
If you use your own image, you'll have to sign it first. Don't forget to change the cosign.scwebhook.key
value to your
public key, used to sign the image.
As cluster admin, create a namespace and install the admission controller:
kubectl create namespace cosignwebhook
kubectl -n cosignwebhook apply -f manifests/rbac.yaml
kubectl -n cosignwebhook apply -f manifests/manifest.yaml
The manifest contains a self-signed example ca, TLS certificate, and key. This is only to see how it looks like, you should generate your own certificate, see below:
Run the generate-certs script in the hack
folder to generate the TLS key pair and the CA certificate for the webhook:
generate-certs.sh --service cosignwebhook --webhook cosignwebhook --namespace cosignwebhook --secret cosignwebhook
To use the webhook, you need to first sign your images with cosign, and then use one of the following validation possibilities:
Add your Cosign public key as env var in container spec of the first container:
env:
- name: COSIGNPUBKEY
value: |
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEGOrnlJ1lFxAFTY2LF1vCuVHNZr9H
QryRDinn+JhPrDYR2wqCP+BUkeWja+RWrRdmskA0AffxBzaQrN/SwZI6fA==
-----END PUBLIC KEY-----
Instead of hardcoding the public key in the deployment, you can also use a secret reference. The key and the secret may be named freely, as long as the secret contains a valid public key.
apiVersion: v1
kind: Secret
data:
COSIGNPUBKEY: LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFS1BhWUhnZEVEQ3ltcGx5emlIdkJ5UjNxRkhZdgppaWxlMCtFMEtzVzFqWkhJa1p4UWN3aGsySjNqSm5VdTdmcjcrd05DeENkVEdYQmhBSTJveE1LbWx3PT0KLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t
metadata:
name: cosignwebhook
type: Opaque
env:
- name: COSIGNPUBKEY
valueFrom:
secretKeyRef:
name: cosignwebhook
key: COSIGNPUBKEY
Create a default secret for all your images in a namespace, which the webhook will always search for, when validating images in this namespace:
apiVersion: v1
kind: Secret
data:
COSIGNPUBKEY: LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFS1BhWUhnZEVEQ3ltcGx5emlIdkJ5UjNxRkhZdgppaWxlMCtFMEtzVzFqWkhJa1p4UWN3aGsySjNqSm5VdTdmcjcrd05DeENkVEdYQmhBSTJveE1LbWx3PT0KLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0t
metadata:
name: cosignwebhook
type: Opaque
The name of the secret must be cosignwebhook
and the key COSIGNPUBKEY
. The value of COSIGNPUBKEY
must match the
public key used to sign the image you're deploying.
To test the webhook, you may run the following command(s):
# unit tests
make test-unit
# E2E tests
make e2e-prep
make test-e2e
The E2E tests require a running kubernetes cluster. Currently, the namespace and webhook are deployed via helper make targets. To run the tests the following is required:
- docker
- cosign (v2)
To run the E2E tests, the following steps are required (in order):
- create a k3d local cluster for the tests and a local iamge registry (
make e2e-cluster
) - signing keys are generated (
make e2e-keys
) - a new
cosignwebhook
image is build and signed with a temp key (make e2e-images
) - the image is pushed to a local registry & deployed to the test cluster (
make e2e-deploy
)
To do all of the above, simply run make e2e-prep
. Each step should also be able to be executed individually. To clean
up the E2E setup, run make e2e-cleanup
. This will delete everything created by the E2E preparation.
- Support private images
- Support multiple container/keys
- Support COSING_REPOSITORY
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o cosignwebhook
- Bruno Bressi [email protected]
- Frank Kloeker [email protected]
Life is for sharing. If you have an issue with the code or want to improve it, feel free to open an issue or an pull request.
The Operator is inspired by @pipo02mix, a good place to learn fundamental things about Admission Controllert