Try It Out
In this example we will deploy Kubernetes Event Exporter on a Kubernetes cluster using the Minimus Kubernetes Event Exporter Advanced FIPS Helm chart. The exporter will capture and forward Kubernetes events for better observability and alerting.
Step 1: Start Cluster
If you have a cluster to work with, skip this step. Otherwise, start a Minikube cluster. Deployment instructions
Step 2: Create Namespace
Create a namespace:
kubectl create ns kubernetes-event-exporter-advanced-fips
Step 3: Deploy the Helm Chart
Deploy the Minimus Helm chart:
helm install my-kubernetes-event-exporter-advanced-fips oci://helm.mini.dev/kubernetes-event-exporter-advanced-fips \
--version 3.6.3 \
-n kubernetes-event-exporter-advanced-fips \
--wait
If you want to override the chart's defaults, go to the Values tab, save a copy locally with your changes. Deploy the chart with your overrides using -f values.yaml:
helm install my-kubernetes-event-exporter-advanced-fips oci://helm.mini.dev/kubernetes-event-exporter-advanced-fips \
--version 3.6.3 \
-f values.yaml \
-n kubernetes-event-exporter-advanced-fips \
--wait
Step 4: Verify Kubernetes Event Exporter Advanced FIPS is Running
Confirm the chart deployed successfully and Kubernetes Event Exporter started:
kubectl get pods -n kubernetes-event-exporter-advanced-fips
You should see output similar to:
NAME READY STATUS RESTARTS AGE
my-kubernetes-event-exporter-advanced-fips-xxxxxxxxx-xxxxx 1/1 Running 0 2m
Step 5: Test Event Export
Verify that Kubernetes Event Exporter is capturing and forwarding cluster events by checking the pod logs:
kubectl logs -n kubernetes-event-exporter-advanced-fips \
-l app.kubernetes.io/name=kubernetes-event-exporter \
--tail=20
You should see log output showing events being processed. The default configuration routes all events to stdout. You can customize the event routing by overriding kubernetes-event-exporter.config in your values file.
Step 6: Clean Up
Uninstall the chart and delete the namespace to remove all resources:
helm uninstall my-kubernetes-event-exporter-advanced-fips -n kubernetes-event-exporter-advanced-fips
kubectl delete namespace kubernetes-event-exporter-advanced-fips
Terms & Info
Trademark
This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.
Disclaimer
Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.