For the complete documentation index, see llms.txt. This page is also available as Markdown.

Deploy Defender

This topic helps you install Prisma Cloud in your Kubernetes cluster quickly. There are many ways to install Prisma Cloud, but use this workflow to quickly deploy Defenders and verify how information is accessible from the Prisma Cloud Console. After completing this procedure, you can modify the installation to match your needs.

To better understand clusters, read our cluster context topic.

To deploy Prisma Cloud Defenders, you use the command-line utility called twistcli, which is bundled with the Prisma Cloud software. The process has the following steps to give you full control over the created objects.

  1. The twistcli utility generates YAML configuration files or Helm charts for the Defender.

  2. You create the required objects in your cluster with the kubectl create command.

You can inspect, customize, and manage the YAML configuration files or Helm charts before deploying the Prisma Cloud Console and Defender. You can place the files or charts under source control to track changes, to integrate them with Continuos Integration and Continuos Development (CI/CD) pipelines, and to enable effective collaboration.

Each Prisma Cloud Defender is deployed as a DaemonSet to ensure that a Prisma Cloud Defender instance runs on each worker node of your cluster.

Prerequisites

To deploy your Defenders smoothly, you must meet the following requirements.

  • You have a valid Prisma Cloud license key and access token.

  • You have a valid access key and secret key created for the admin user inside Prisma Cloud

  • You provisioned a Kubernetes cluster that meets the minimum system requirements and runs a supported Kubernetes version.

  • You set up a Linux or macOS system to control your cluster, and you can access the cluster using the kubectl command-line utility.

  • The nodes in your cluster can reach Prisma Cloud’s cloud registry at registry-auth.twistlock.com.

  • Your cluster uses any of the following runtimes. For more information about the runtimes that Prisma Cloud supports, see the system requirements.

    • Docker Engine

    • CRI-O

    • CRI-containerd

  • Install the Prisma Cloud command-line utility called twistcli, which is bundled with the Prisma Cloud software. You use twistcli to deploy the Defenders.

Required Permissions

  • You can create and delete namespaces in your cluster.

  • You can run the kubectl create command.

Required Firewall and Port Configuration

Open the following ports in your firewall.

Ports for the Prisma Cloud Defenders:

Install the Prisma Cloud Defender

To install the Prisma Cloud Defender, deploy the Defenders as DaemonSet custom resources. This approach ensures that a Defender instance runs on every node in the cluster. To deploy the Prisma Cloud Defender, use a macOS or Linux cluster controller with kubectl enabled and follow these steps:

  1. Use the twistcli command-line utility to generate the DaemonSet YAML configuration file for the Defender.

  2. Deploy the generated custom resource with kubectl.

This approach is called declarative object management. It allows you to work directly with the YAML configuration files. The benefit is that you get the full source code for the custom resources you create in your cluster, and you can use a version control tool to manage and track modifications. With YAML configuration files under version control, you can delete and reliably recreate DaemonSets in your environment.

If you don’t have kubectl access to your cluster, you can deploy Defender DaemonSets directly from the Console UI.

This procedure shows you how to deploy Defender DaemonSets using the twistcli command-line utility and declarative object management. You can also generate the installation commands using the Prisma Cloud Console UI under Manage > Defenders > Deploy > Defenders. Installation scripts are provided for Linux and MacOS workstations. Use the twistcli command-line utility to generate the Defender DaemonSet YAML configuration files from Windows workstations. Deploy the custom resources with kubectl following this procedure.

  1. Generate the DaemonSet custom resource for the Defender.

    1. Go to Compute > Manage > Defenders > Defenders: Deployed > Manual deploy.

    2. Select Orchestrator.

    3. Select Kubernetes from Step 2: Choose the orchestrator type.

    4. Copy the hostname from Step 3: The name that Defender will use to connect to this Console.

  2. Generate the defender.yaml file using the following twistcli command with the described parameters.

    • <PLATFORM> can be linux, osx, or windows.

    • <ADMIN_USER_ACCESS_KEY> is the access key of the Prisma Cloud user with the System Admin role.

    • <PRISMA_CLOUD_COMPUTE_CONSOLE_URL> specifies the address of the Prisma Cloud Compute Console.

    • <PRISMA_CLOUD_COMPUTE_HOSTNAME> specifies the address Defender uses to connect to Prisma Cloud Console. You can use the external IP address exposed by your load balancer or the DNS name that you manually set up.

    • Once you run the given command, after altering the fields for your environment, you will get a prompt requesting a password. The password is the secret key of the Prisma Cloud user with the System Admin role that you should have created as part of the prerequisite.

Note:

  • For provider managed clusters, Prisma Cloud automatically gets the cluster name from your cloud provider.

  • To override the cluster name used that your cloud provider has, use the --cluster option.

  • For self-managed clusters, such as those built with kops, manually specify a cluster name with the --cluster option.

  • When using the CRI-O or containerd runtimes, pass the --container-runtime crio or --container-runtime containerd flag to twistcli when you generate the YAML configuration file or the Helm chart.

  • When using an AWS Bottlerocket-based EKS cluster, pass the --container-runtime crio flag when creating the YAML file.

  • To use Defenders in GKE on ARM, you must prepare your workloads.

  • For Kubernetes defenders on RKE2, create the YAML file with the “SELinux Policy” option.

    1. Deploy the Defender DaemonSet custom resource.

    2. In Prisma Cloud Compute, go to Manage > Defenders > Defenders: Deployed > Manual deploy to see a list of deployed Defenders.

Install Prisma Cloud with Helm charts

Install Prisma Cloud on a CRI (non-Docker) cluster

Deploy Defenders as DaemonSets

Kubernetes lets you set up a cluster with the container runtime of your choice. Prisma Cloud supports Docker Engine, CRI-O, and cri-containerd.

When generating the YAML file or Helm chat to deploy the Defender DaemonSet, you can select the Container Runtime type on Prisma Cloud console from Manage > Defenders > Defenders: Deployed > Manual deploy.

Since Defenders need to have a view of other containers, this option is necessary to guide the communication.

If you use containerd on GKE, and you install Defender without selecting the CRI-O Container Runtime type, everything will appear to work properly, but you’ll have no images or container scan reports in Monitor > Vulnerability and Monitor > Compliance pages and you’ll have no runtime models in Monitor > Runtime. This happens because the Google Container Optimized Operating system (GCOOS) nodes have Docker Engine installed, but Kubernetes doesn’t use it. Defender thinks everything is OK because all of the integrations succeed, but the underlying runtime is actually different.

container runtime type ui

If you’re deploying Defender DaemonSets with twistcli, use the following flag with one of the container runtime types:

  • --container-runtime docker

  • --container-runtime crio

  • --container-runtime containerd

When generating YAML from Console or twistcli, there is a simple change to the yaml file as seen below.

In this abbreviated version DEFENDER_TYPE:daemonset will use the Docker interface.

To change the default containerd data directory from /var/lib/containerd to a custom directory (for example: /var/lib/kubelet/containerd), modify the volumeMounts and volumes sections. Here is an example:

To change the default containerd data directory from /var/lib/containerd to a custom directory (for example: /var/lib/kubelet/containerd), modify the volumeMounts and volumes sections. Here is an example:

In this abbreviated version DEFENDER_TYPE:cri will use the CRI.

Similar to the Defenders, to customize the containerd data directory, modify the paths in the volumeMounts and volumes sections accordingly.

Troubleshooting

Kubernetes CrashLoopBackOff Error

Error

To get the error logs, run the command: kubectl describe pod[name].

Reason

This is caused due to a temporary memory resource overload. When running WAAS Out-of-Band (OOB), the Defender automatically increases the cgroup memory limit to 4 GB (as OOB needs more memory). But since the Defenders' cgroup in K8s is hierarchically under the cgroup of the K8s pod with a limit of 512 MB, this results in an Out-Of-Memory error.

Out-of-Memory (OOM) Error in Kubernetes Defender Nodes

Issue

Users encounter out-of-memory (OOM) issues when running an inline container firewall on Defender nodes operating within Kubernetes (k8s), particularly when there are more than 10 protected workloads on the same node.

Reason

The hierarchical nature of cgroups in Kubernetes means that the memory limit set for the pod takes precedence over the memory limit set specifically for the Defender cgroup. Consequently, this hierarchy can lead to OOM errors, especially when multiple protected workloads are present on the same node.

Solution

When deploying inline firewall instances on a Defender node with more than 10 protected workloads, increase the memory allocation for the Defender pod to 4GB.

Increase the Defender Pod Limit

Increase the Pod limit to 4 GB when activating WAAS OOB on K8s cluster.

  1. For running Defenders

    1. Run kubectl edit ds twistlock-defender-ds -n twistlock and change the value under resources > limits > memory to 4096Mi in the Daemonset spec *.yaml file.

    2. Save the file to restart the Defenders with the increased memory limit.

  2. When deploying Defenders

    1. With YAML:

      1. Change the value of resources > limits > memory to 4096Mi.

      2. Deploy the *.yaml file.

    2. With HELM:

      1. Change the value of limit_memory to 4096Mi in "values.yaml" file.

    3. With script:

      1. Deploy the Defender using the install script.

      2. Run kubectl edit ds twistlock-defender-ds -n twistlock and change the value under resources > limits > memory to 4096Mi.

      3. Save the file to restart the Defenders with the increased memory limit.

Pod Security Policy

If Pod Security Policy is enabled in your cluster, you might get the following error when trying to create a Defender DaemonSet.

Kubernetes has deprecated Pod Security Policy. The following troubleshooting steps only apply to the deprecated PodSecurityPolicy custom resource.

If you get this error, then you must create a PodSecurityPolicy for the Defender and the necessary ClusterRole and ClusterRoleBinding for the twistlock namespace. You can use the following Pod Security Policy, ClusterRole and ClusterRoleBinding:

PodSecurityPolicy

ClusterRole

ClusterRoleBinding

Last updated

Was this helpful?