diff --git a/apps/k8s01/sbom-operator/release.yaml b/apps/k8s01/sbom-operator/release.yaml
index df8310c4247e5ae0da90ebe9c73eacac4c67996b..1aa9d5585f470d18c4bdf0512795aef0676357f7 100644
--- a/apps/k8s01/sbom-operator/release.yaml
+++ b/apps/k8s01/sbom-operator/release.yaml
@@ -40,6 +40,34 @@ spec:
                 spec:
                   securityContext:
                     fsGroup: 1001
+                  containers:
+                    - name: cleanup
+                      image: quay.io/fedora/fedora:38
+                      command:
+                        - bash
+                        - -c
+                        - while true; do find /tmp -type f -mmin +15 -exec rm -f {} + ; sleep 300; done
+                      resources:
+                        requests:
+                          cpu: 10m
+                          memory: 64Mi
+                        limits:
+                          cpu: 100m
+                          memory: 128Mi
+                      securityContext:
+                          allowPrivilegeEscalation: false
+                          capabilities:
+                            drop:
+                            - ALL
+                          privileged: false
+                          readOnlyRootFilesystem: true
+                          runAsNonRoot: true
+                          runAsUser: 1001
+                          seccompProfile:
+                            type: RuntimeDefault
+                      volumeMounts:
+                        - name: tmp
+                          mountPath: /tmp
                   volumes:
                     - name: tmp
                       emptyDir: null
@@ -66,4 +94,4 @@ data:
       limits:
         cpu: "1"
         memory: "2Gi"
-    podSecurityPolicy:
+    podSecurityPolicy:
\ No newline at end of file