Skip to content

add setting for dv_enabled #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/s1-agent/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ certificates:
value: "{{ .Values.configuration.env.agent.fips_enabled }}"
- name: S1_AGENT_ENABLED
value: "{{ .Values.configuration.env.agent.enabled }}"
- name: S1_DV_ENABLED
value: "{{ .Values.configuration.env.agent.dv_enabled }}"
- name: S1_POD_NAME
valueFrom:
fieldRef:
Expand Down
1 change: 1 addition & 0 deletions charts/s1-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ configuration:
helper_healthcheck_interval: 5 # time to wait between each try. (seconds)
fips_enabled: # to enable/disable FIPS mode, set to 'true'/'false'
ebpf_enabled: # to disable EBPF mode, set to 'false' (Unsupported in EKS Fargate)
dv_enabled: # to disable Deep-Visibility, set to 'false'
helper:
log_level: "" # info, error, warning, debug, trace (defaults to 'info')
log_size: "" # helper log file size in MBs. (defaults to 10)
Expand Down