You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if an Amazon EKS Cluster contains both worker nodes and Fargate nodes/pods, the only way to achieve full coverage of the cluster using the falcon-sensor is to inject the Container Sensor as a sidecar to all pods.
Instead, we would like to be able to deploy both the node sensor and the container sensor as part of the same helm installation. This can be achieved by limiting the container sensor to those Fargate pods by adding a toleration to the falcon-sensor-injector Deployment spec. For example:
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/os
operator: In
values:
- linux
- key: eks.amazonaws.com/compute-type
operator: In
values:
- fargate
The text was updated successfully, but these errors were encountered:
Just to confirm. You want the node sensor to only work on EKS nodes, and the sidecar to only deploy to pods on Fargate nodes whereas today the sidecar sensor will enforce on every pod across an entire cluster. Am I understanding the ask correctly?
Just to confirm. You want the node sensor to only work on EKS nodes, and the sidecar to only deploy to pods on Fargate nodes whereas today the sidecar sensor will enforce on every pod across an entire cluster. Am I understanding the ask correctly?
Currently, if an Amazon EKS Cluster contains both worker nodes and Fargate nodes/pods, the only way to achieve full coverage of the cluster using the falcon-sensor is to inject the Container Sensor as a sidecar to all pods.
Instead, we would like to be able to deploy both the node sensor and the container sensor as part of the same helm installation. This can be achieved by limiting the container sensor to those Fargate pods by adding a toleration to the falcon-sensor-injector Deployment spec. For example:
The text was updated successfully, but these errors were encountered: