Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
guyarb committed Dec 19, 2024
1 parent d046469 commit e2d5fbe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/datadog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ helm install <RELEASE_NAME> \
| datadog.dd_url | string | `nil` | The host of the Datadog intake server to send Agent data to, only set this option if you need the Agent to send data to a custom URL |
| datadog.disableDefaultOsReleasePaths | bool | `false` | Set this to true to disable mounting datadog.osReleasePath in all containers |
| datadog.disablePasswdMount | bool | `false` | Set this to true to disable mounting /etc/passwd in all containers |
| datadog.discovery.enabled | bool | `false` | Enable Service Discovery |
| datadog.discovery.enabled | bool | `nil` | Enable Service Discovery |
| datadog.dockerSocketPath | string | `nil` | Path to the docker socket |
| datadog.dogstatsd.hostSocketPath | string | `"/var/run/datadog/"` | Host path to the DogStatsD socket |
| datadog.dogstatsd.nonLocalTraffic | bool | `true` | Enable this to make each node accept non-local statsd traffic (from outside of the pod) |
Expand Down
2 changes: 2 additions & 0 deletions charts/datadog/templates/system-probe-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ data:
conntrack_init_timeout: {{ $.Values.datadog.systemProbe.conntrackInitTimeout }}
service_monitoring_config:
enabled: {{ $.Values.datadog.serviceMonitoring.enabled }}
{{- if not (eq .Values.datadog.discovery.enabled nil) }}
discovery:
enabled: {{ $.Values.datadog.discovery.enabled }}
{{- end }}
runtime_security_config:
enabled: {{ $.Values.datadog.securityAgent.runtime.enabled }}
fim_enabled: {{ $.Values.datadog.securityAgent.runtime.fimEnabled }}
Expand Down
4 changes: 2 additions & 2 deletions charts/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -826,8 +826,8 @@ datadog:
enabled: false

discovery:
# datadog.discovery.enabled -- Enable Service Discovery
enabled: false
# datadog.discovery.enabled -- (bool) Enable Service Discovery
enabled: # false

Check failure on line 830 in charts/datadog/values.yaml

View workflow job for this annotation

GitHub Actions / lint-chart

830:14 [comments] too few spaces before comment

# Software Bill of Materials configuration
sbom:
Expand Down

0 comments on commit e2d5fbe

Please sign in to comment.