Skip to main content

Deploy 3rd Party Security Scanners in AS

· One min read

This is the summary of a very long blog post,

In automation suite, we have whitelisted a namespace named security-system under uipath gatekeeper policies such that it's possible to deploy user workloads in the cluster. In this blog we have provided Qualys deployment as an example but the same process can be applicable for other workloads as well

Warning

We strongly recommend not to deploy any 3rd party software until it's deemed necessary or a blocker for production adoption

Qualys Deployment

  1. Check and create security-system namespace
  2.   securitySystemNamespace=$(kubectl get namespaces | grep "security-system")
    if [[ -z "${securitySystemNamespace}" ]]; then
    kubectl create namespace security-system
    fi
  3. Upload qualys image to your own repository or pull it from docker hub
  4. Update namespace: security-system to deploy qualys