Uninstalling Security Containers
For container nodes
To remove a Security Container from a cluster follow the steps below:
Warning
This entry will remove all instances of Security Container on the designated cluster.
Go to your Kubernetes environment.
Use the below entry:
For Kubernetes
kubectl delete daemonset bitdefender-security-container -n bitdefender-security-container kubectl delete configmap bitdefender-security-container-config -n bitdefender-security-container
For Helm
helm uninstall bitdefender-security-container
For Linux hosts
To remove a Security Container from a Linux host follow the steps below:
Display running containers on the current server:
docker ps
Get the ID for the Security Container you want to remove.
Stop the container:
docker stop <container id>
Remove the container:
docker rm <container id>
Show images:
docker images
Get the ID of the Security Container image you wish to remove.
Remove the image:
docker rmi <image id>
Remove the Security Container mapped folder:
rm /mnt/data/<container hardware ID>
Note
In some cases you might need to remove all unused images. Use the below entry:
docker system prune -a