This document will walk you through running a KinD cluster on your local machine and installing the auditlog-forwarder in it.
make kind-up
make server-upYou can now target the KinD cluster.
export KUBECONFIG=$(pwd)/dev/local/kind/kubeconfigThis setup will deploy both the auditlog-forwarder and the echo-server in the kube-system namespace.
The echo-server acts as a dummy backend that receives and logs the enriched audit events forwarded by the auditlog-forwarder.
Verify that events are successfully processed and sent to configured outputs.
k -n kube-system logs -l app.kubernetes.io/name=auditlog-forwarderTo tear down the local environment:
make kind-down