There are a number of pods running in the "spectacle" namespace. Identify and delete the pods which have CRITICAL vulnerabilities.
Solution
kubectl -n spectacle get pods -o yaml | grep -E "image"
trivy image --severity CRITICAL nginx:1.16
Run the above command for all the images found in step 1. If the images have CRITICAL vulnerabilities, delete the pod associated with that image.
kubectl -n spectacle delete pod <PODNAME>
Do the above procedure as many times as required to delete all pods with CRITICAL vulnerabilities.