Provides a Gardener extension for managing kube-apiserver audit logs for a shoot cluster.
The extension spins up a fluentbit-based audit sink in the seed's shoot namespace prior to starting the shoot's API server. Therefore, it is required to run this extension with the reconcile lifecycle policy BeforeKubeAPIServer
. Also the deletion has to happen BeforeKubeAPIServer
as otherwise the managed resources of this extension block the shoot deletion flow.
This sink has the ability to buffer audit logs to a persistent volume and send them to the supported backends.
A custom audit policy can be natively configured by Gardener in the shoot spec's API server configuration under .spec.kubernetes.kubeAPIServer.auditConfig.auditPolicy.configMapRef.name
.
- Log (just logs to the container, only for devel-purposes)
- Cluster Forwarding (forwards audit logs into a pod in the shoot cluster, should not be used for production purposes)
- Splunk
This extension can be developed in the gardener-local devel environment.
- Start up the local devel environment
- The extension's docker image can be pushed into Kind using
make push-to-gardener-local
- Install the extension
kubectl apply -k example/
- Parametrize the
example/shoot.yaml
and apply withkubectl -f example/shoot.yaml