Available only for Intezer Protect enterprise licenses.
Intezer Protect License Key
A license key is used to deploy the sensor & associate it with your account. The sensor license key is available on the account details page.
DaemonSet Deployment
To deploy an Intezer Protect sensor on every node of your Kubernetes cluster, apply the following command:
kubectl apply -f https://protect.intezer.com/v2/install/daemonset.yaml?key=<SENSOR_LICENSE_KEY>
Replace the <SENSOR_LICENSE_KEY>
placeholder with your account license key
DaemonSet with Custom Configuration
To configure a proxy or other custom options to the Daemonset deployment
- Download the sensor manifest:
wget -O intezer-protect-daemonset.yaml https://protect.intezer.com/v2/install/daemonset.yaml?key=<SENSOR_LICENSE_KEY>
Replace the <SENSOR_LICENSE_KEY>
placeholder with your account license key
- Open the downloaded file with a text editor (e.g
vim intezer-protect-daemonset.yaml
) - To change the default sensor configuration edit the
sensor-cfg
ConfigMap
see Custom Configuration Options. - To change the Daemonset configuration, edit the protect-sensor DaemonSet spec
- After saving your changes, apply your custom manifest:
kubectl apply -f intezer-protect-daemonset.yaml