Kubernetes
In Kubernetes, the ThreatStryker sensors are deployed as a daemonset in the Kubernetes cluster, using a helm chart.
Quick Installation of ThreatStryker Sensors
Install and start the latest release of the deepfence sensor. Replace x.x.x.x
with the IP address of the Management Console and 73f6f3d0-9931-4b31-8967-fd6adf475f80
with the API key.
info
clusterName
is the name / identifier of the cluster. It should be different for different kubernetes clusters. Example: prod-cluster-1, test-cluster.
info
Image tags quay.io/deepfenceio/deepfence_agent:2.4.1-multiarch
and quay.io/deepfenceio/deepfence_cluster_agent:2.4.1-multiarch
are supported in amd64 and arm64/v8 architectures.
Identify container runtime
If container runtime is unknown, please follow these instructions.
Deploy deepfence-agent helm chart
helm repo add deepfence https://deepfence-helm-charts.s3.amazonaws.com/enterprise
helm repo update
# helm show readme deepfence/deepfence-agent --version 2.4.1 | less
# helm show values deepfence/deepfence-agent --version 2.4.1 | less
helm install deepfence-agent deepfence/deepfence-agent \
--set imagePullSecret.username=<deepfence_username> \
--set imagePullSecret.password=<deepfence_password> \
--set managementConsoleUrl=x.x.x.x \
--set deepfenceKey=73f6f3d0-9931-4b31-8967-fd6adf475f80 \
--set global.imageTag=2.4.1 \
--set clusterName="prod-cluster" \
--set mountContainerRuntimeSocket.containerdSock=true \
--set mountContainerRuntimeSocket.dockerSock=false \
--set mountContainerRuntimeSocket.crioSock=false \
--set mountContainerRuntimeSocket.podmanSock=false \
--set mountContainerRuntimeSocket.containerdSockPath="/run/containerd/containerd.sock" \
--set trafficAnalysis.disabled=false \
--set procAnalysis.disabled=false \
--set fileAnalysis.disabled=false \
--set logLevel="info" \
--namespace deepfence \
--create-namespace \
--version 2.4.1
Fine-tune the Helm deployment
helm repo add deepfence https://deepfence-helm-charts.s3.amazonaws.com/enterprise
helm repo update
helm show values deepfence/deepfence-agent --version 2.4.1 > deepfence_agent_values.yaml
# Make the changes in this file and save
vim deepfence_agent_values.yaml
helm install -f deepfence_agent_values.yaml deepfence-agent deepfence/deepfence-agent \
--namespace deepfence \
--create-namespace \
--version 2.4.1
Delete the ThreatStryker Sensor
helm delete deepfence-agent -n deepfence
Identify container runtime
- To get container runtime in the k8s cluster, run the following command
kubectl get nodes -o=custom-columns=NAME:.metadata.name,Runtime:.status.nodeInfo.containerRuntimeVersion
- To get container runtime socket path in the k8s cluster, run the following commands and search for
--container-runtime-endpoint
orcontainerd
kubectl apply -f https://deepfence-public.s3.amazonaws.com/kubernetes/deepfence-cluster-config-job.yaml
kubectl wait --for=condition=complete --timeout=30s job/deepfence-cluster-config
kubectl logs $(kubectl get pod -l job-name=deepfence-cluster-config -o jsonpath="{.items[0].metadata.name}")
kubectl delete -f https://deepfence-public.s3.amazonaws.com/kubernetes/deepfence-cluster-config-job.yaml