146 lines
5.9 KiB
YAML
146 lines
5.9 KiB
YAML
|
{{- if .Values.node.enabled }}
|
||
|
apiVersion: apps/v1
|
||
|
kind: DaemonSet
|
||
|
metadata:
|
||
|
name: {{ include "falcon-sensor.fullname" . }}
|
||
|
labels:
|
||
|
app: "{{ include "falcon-sensor.name" . }}"
|
||
|
app.kubernetes.io/name: {{ include "falcon-sensor.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
app.kubernetes.io/component: "kernel_sensor"
|
||
|
crowdstrike.com/provider: crowdstrike
|
||
|
helm.sh/chart: {{ include "falcon-sensor.chart" . }}
|
||
|
{{- if .Values.node.daemonset.labels }}
|
||
|
{{- range $key, $value := .Values.node.daemonset.labels }}
|
||
|
{{ $key }}: {{ $value | quote }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.node.daemonset.annotations }}
|
||
|
annotations:
|
||
|
{{- range $key, $value := .Values.node.daemonset.annotations }}
|
||
|
{{ $key }}: {{ $value | quote }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: {{ include "falcon-sensor.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/component: "kernel_sensor"
|
||
|
crowdstrike.com/provider: crowdstrike
|
||
|
updateStrategy:
|
||
|
type: {{ .Values.node.daemonset.updateStrategy }}
|
||
|
{{- if and (eq .Values.node.daemonset.updateStrategy "RollingUpdate") (ne (int .Values.node.daemonset.maxUnavailable) 1) }}
|
||
|
rollingUpdate:
|
||
|
maxUnavailable: {{ .Values.node.daemonset.maxUnavailable }}
|
||
|
{{- end }}
|
||
|
template:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
{{ .Values.node.daemonset.podAnnotationKey }}: disabled
|
||
|
{{- range $key, $value := .Values.node.podAnnotations }}
|
||
|
{{ $key }}: {{ $value | quote }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
app: "{{ include "falcon-sensor.name" . }}"
|
||
|
app.kubernetes.io/name: {{ include "falcon-sensor.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
app.kubernetes.io/component: "kernel_sensor"
|
||
|
crowdstrike.com/provider: crowdstrike
|
||
|
helm.sh/chart: {{ include "falcon-sensor.chart" . }}
|
||
|
{{- if .Values.node.daemonset.labels }}
|
||
|
{{- range $key, $value := .Values.node.daemonset.labels }}
|
||
|
{{ $key }}: {{ $value | quote }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{- if and (.Values.node.image.pullSecrets) (.Values.node.image.registryConfigJSON) }}
|
||
|
{{- fail "node.image.pullSecrets and node.image.registryConfigJSON cannot be used together." }}
|
||
|
{{- else -}}
|
||
|
{{- if or (.Values.node.image.pullSecrets) (.Values.node.image.registryConfigJSON) }}
|
||
|
imagePullSecrets:
|
||
|
{{- if .Values.node.image.pullSecrets }}
|
||
|
- name: {{ .Values.node.image.pullSecrets }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.node.image.registryConfigJSON }}
|
||
|
- name: {{ include "falcon-sensor.fullname" . }}-pull-secret
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.node.daemonset.tolerations }}
|
||
|
tolerations:
|
||
|
{{- with .Values.node.daemonset.tolerations }}
|
||
|
{{- toYaml . | nindent 6 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
nodeSelector:
|
||
|
kubernetes.io/os: linux
|
||
|
{{- if .Values.node.daemonset.nodeAffinity }}
|
||
|
affinity:
|
||
|
nodeAffinity:
|
||
|
{{- with .Values.node.daemonset.nodeAffinity }}
|
||
|
{{- toYaml . | nindent 10 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
initContainers:
|
||
|
# This init container creates empty falconstore file so that when
|
||
|
# it's mounted into the sensor-node-container, k8s would just use it
|
||
|
# rather than creating a directory. Mounting falconstore file as
|
||
|
# a file volume ensures that AID is preserved across container
|
||
|
# restarts.
|
||
|
- name: init-falconstore
|
||
|
image: "{{ include "falcon-sensor.image" . }}"
|
||
|
imagePullPolicy: "{{ .Values.node.image.pullPolicy }}"
|
||
|
command: ["/bin/bash"]
|
||
|
args: [-c, 'if [ -d "/opt/CrowdStrike/falconstore" ] ; then echo "Re-creating /opt/CrowdStrike/falconstore as it is a directory instead of a file"; rm -rf /opt/CrowdStrike/falconstore; fi; mkdir -p /opt/CrowdStrike && touch /opt/CrowdStrike/falconstore']
|
||
|
volumeMounts:
|
||
|
- name: falconstore-dir
|
||
|
mountPath: /opt
|
||
|
securityContext:
|
||
|
runAsUser: 0
|
||
|
privileged: true
|
||
|
readOnlyRootFilesystem: false
|
||
|
allowPrivilegeEscalation: true
|
||
|
containers:
|
||
|
- name: falcon-node-sensor
|
||
|
image: "{{ include "falcon-sensor.image" . }}"
|
||
|
imagePullPolicy: "{{ .Values.node.image.pullPolicy }}"
|
||
|
# Various pod security context settings. Bear in mind that many of these have an impact
|
||
|
# on the Falcon Sensor working correctly.
|
||
|
#
|
||
|
# - User that the container will execute as. Typically necessary to run as root (0).
|
||
|
# - Runs the Falcon Sensor containers as privileged containers. This is required when
|
||
|
# running the Falcon Linux Sensor on Kubernetes nodes to properly run in the node's
|
||
|
# kernel and to actually protect the node.
|
||
|
securityContext:
|
||
|
runAsUser: 0
|
||
|
privileged: true
|
||
|
readOnlyRootFilesystem: false
|
||
|
allowPrivilegeEscalation: true
|
||
|
envFrom:
|
||
|
- configMapRef:
|
||
|
name: {{ include "falcon-sensor.fullname" . }}-config
|
||
|
volumeMounts:
|
||
|
- name: falconstore
|
||
|
mountPath: /opt/CrowdStrike/falconstore
|
||
|
volumes:
|
||
|
- name: falconstore-dir
|
||
|
hostPath:
|
||
|
path: /opt
|
||
|
type: DirectoryOrCreate
|
||
|
- name: falconstore
|
||
|
hostPath:
|
||
|
path: /opt/CrowdStrike/falconstore
|
||
|
serviceAccountName: {{ .Values.serviceAccount.name }}
|
||
|
terminationGracePeriodSeconds: {{ .Values.node.terminationGracePeriod }}
|
||
|
{{- if .Values.node.daemonset.priorityClassName }}
|
||
|
priorityClassName: {{ .Values.node.daemonset.priorityClassName }}
|
||
|
{{- end }}
|
||
|
hostNetwork: true
|
||
|
hostPID: true
|
||
|
hostIPC: true
|
||
|
{{- end }}
|