The IAST Helm chart deployment is the fastest, most consistent way to put interactive application security testing into Kubernetes. It runs security scans inside the application runtime without slowing development. With Helm, the installation is reproducible, version-controlled, and easy to roll back.
Start by adding the chart repository:
helm repo add iast https://example.com/iast/charts
helm repo update
Then set required values. These include authentication tokens, target namespaces, and resource limits. Keep secrets in Kubernetes Secrets, not in plain values files.
helm install iast-agent iast/iast-agent \
--namespace security \
--set token=$IAST_API_TOKEN \
--set resourceLimits.cpu=500m
The chart deploys agents that integrate with your services. They capture runtime data, detect vulnerabilities, and stream findings to your dashboard. No static scans. No manual triggers. This is continuous testing inside the live environment.