Kubernetes Validation Admission Controller to verify Cosign Image signatures.
This webhook watches for pod creation in deployments and verifies all 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.
- Public key as environment variable
- Public key as secret reference
- Public key as default secret for namespace
Additionally, if the signature of the image you're trying to validate is not in the same repository as the image,
you need to add the COSIGN_REPOSITORY
environment variable to the environment of the container:
# in the container spec of the workload
env:
- name: COSIGN_REPOSITORY
value: myregistry.io/signatures
This option is similar to the COSIGN_REPOSITORY
environment variable used with cosign verify
and cosign sign
command line tool and is used to specify the repository where the signature of the image is located, if it's not in the
same repository as the image.
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: cosign_secret # Can be choosen freely
type: Opaque
env:
- name: COSIGNPUBKEY
valueFrom:
secretKeyRef:
name: cosign_secret # Must be equal to metadata.name of the secrect
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 only run the tests, the following is required:
- docker
- cosign (v2)
To run the whole 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. If you've already created the cluster and the keys, and
you're actively testing new code, you may run make e2e-images e2e-deploy test-e2e
to test your changes.
In case you're running the tests on Apple devices, you may need to use deactivate the k3s dns fix (already implemented in the makefile). If your containers in the cluster don't start by skipping the fix, you may set K3S_FIX_DNS
back to 1
in the e2e-cluster
target.
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