This Helm chart deploys the Trend Micro Deep Security Agent as a DaemonSet on Red Hat OpenShift clusters. The agent runs on every node and provides real-time anti-malware protection for both host file systems and running containers.
The Deep Security Agent connects to your Deep Security Manager (DSM) and:
- Scans host file systems and containers for malware in real time
- Reports protection status back to the DSM
- Uses Trend Micro's Smart Protection Network for up-to-date threat intelligence
- Helps meet continuous compliance requirements
helm repo add ds-agent https://trendmicro.github.io/dsao/
helm repo updatehelm install ds-agent ds-agent/ds-agent \
--namespace openshift \
--set dsmUrl=<your-dsm-url>Replace <your-dsm-url> with the URL of your Deep Security Manager (for example, https://dsm.example.com:4119).
# Upgrade after a values change
helm upgrade ds-agent charts/dsao --namespace openshift --set dsmUrl=<url>
# Uninstall
helm uninstall ds-agent --namespace openshift