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
[PROF-15238] Seccomp toggle for Host Profiler (#2755)
add new host profiler setting to toggle off seccomp initcontainer and enablement on host profiler
align the seccomp enabled test on the disabled; explicitly check for volume
seccomp should be unconfined if not enabled
chore: update charts
- bump version for datadog to 3.231.0 (minor-version)
- update changelog for datadog with version 3.231.0
- update readme for datadog
chore: update charts
- update readme for datadog
chore: update charts
- update readme for datadog
chore: update charts
- update readme for datadog
chore: update charts
- update readme for datadog
Co-authored-by: dd-octo-sts[bot] <200755185+dd-octo-sts[bot]@users.noreply.github.com>
Co-authored-by: theo.demagalhaes <theo.demagalhaes@datadoghq.com>
> The Datadog Operator is now enabled by default since version [3.157.0](https://github.com/DataDog/helm-charts/blob/main/charts/datadog/CHANGELOG.md#31570) to collect chart metadata for display in [Fleet Automation](https://docs.datadoghq.com/agent/fleet_automation/). We are aware of issues affecting some environments and are actively working on fixes. We apologize for the inconvenience and appreciate your patience while we address these issues.
@@ -852,6 +852,8 @@ helm install <RELEASE_NAME> \
852
852
| datadog.hostProfiler.enabled | bool | `false` | Enable the Host Profiler. This feature is experimental and subject to change. |
853
853
| datadog.hostProfiler.image | string | `""` | Image the Host Profiler. This parameter is experimental and will be removed once official image is available. |
854
854
| datadog.hostProfiler.imagePullPolicy | string | `""` | Pull policy for the Host Profiler image. Defaults to agents.image.pullPolicy when unset. |
855
+
| datadog.hostProfiler.seccomp | object | `{"enabled":true}` | Seccomp profile configuration for the Host Profiler |
856
+
| datadog.hostProfiler.seccomp.enabled | bool | `true` | Apply the localhost seccomp profile to the host-profiler container and run the init container that installs it on the node. Disable to run the host-profiler container Unconfined (no init container, no profile installed on the node). |
Copy file name to clipboardExpand all lines: charts/datadog/values.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -811,6 +811,10 @@ datadog:
811
811
image: ""
812
812
# datadog.hostProfiler.imagePullPolicy -- Pull policy for the Host Profiler image. Defaults to agents.image.pullPolicy when unset.
813
813
imagePullPolicy: ""
814
+
# datadog.hostProfiler.seccomp -- Seccomp profile configuration for the Host Profiler
815
+
seccomp:
816
+
# datadog.hostProfiler.seccomp.enabled -- Apply the localhost seccomp profile to the host-profiler container and run the init container that installs it on the node. Disable to run the host-profiler container Unconfined (no init container, no profile installed on the node).
817
+
enabled: true
814
818
# datadog.hostProfiler.seccompRoot -- Specify the seccomp profile root directory
815
819
seccompRoot: /var/lib/kubelet/seccomp
816
820
# datadog.hostProfiler.apparmor -- Specify an AppArmor profile for the host-profiler container (e.g. "localhost/datadog-host-profiler").
0 commit comments