Skip to content

Commit

Permalink
chore: remove gocel from helm files
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed Oct 31, 2023
1 parent f949b0f commit e09ed22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 53 deletions.
28 changes: 1 addition & 27 deletions deploy/helm/tracee/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ spec:
- name: tracee-policies
readOnly: true
mountPath: /tracee/policies
{{- if .Values.signatures.config }}
- name: tracee-signatures
mountPath: /tracee/signatures/signatures.yaml
subPath: signatures.yaml
readOnly: true
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down Expand Up @@ -124,24 +118,4 @@ spec:
name: tracee-config
- name: tracee-policies
configMap:
name: tracee-policies
{{- if .Values.signatures.config }}
- name: tracee-signatures
configMap:
name: tracee-signatures
items:
- key: signatures.yaml
path: signatures.yaml
{{- end }}
{{- if .Values.signatures.config }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: tracee-signatures
labels:
{{- include "tracee.labels" . | nindent 4 }}
data:
signatures.yaml: |-
{{- toYaml .Values.signatures.config | nindent 4 }}
{{- end }}
name: tracee-policies
26 changes: 0 additions & 26 deletions deploy/helm/tracee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,29 +81,3 @@ config:
output:
- json
- option:parse-arguments

signatures:
# config defines Common Expression Language (CEL) signatures that are loaded
# by Tracee-Rules from the --rules-dir directory. If the config object is not
# empty, the configuration file is automatically mounted at
# /tracee/signatures/signatures.yaml.
config: {}
# config:
# kind: SignaturesConfig
# apiVersion: tracee.aquasecurity.github.io/v1alpha1
# signatures:
# - metadata:
# id: "CEL-2"
# version: "0.1.0"
# name: "Anti-Debugging"
# tags:
# - "linux"
# - "containers"
# properties:
# Severity: 3
# "MITRE ATT&CK": "Defense Evasion: Execution Guardrails"
# eventSelectors:
# - source: tracee
# name: ptrace
# expression: |-
# input.eventName == 'ptrace' && input.stringArg('request') == 'PTRACE_TRACEME'

0 comments on commit e09ed22

Please sign in to comment.