Skip to content
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
1 change: 1 addition & 0 deletions charts/datadog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ helm install <RELEASE_NAME> \
| agents.containers.otelAgent.ports | list | `[]` | Allows to specify extra ports (hostPorts for instance) for this container |
| agents.containers.otelAgent.resources | object | `{}` | Resource requests and limits for the otel-agent container |
| agents.containers.otelAgent.securityContext | object | `{"readOnlyRootFilesystem":true}` | Allows you to overwrite the default container SecurityContext for the otel-agent container. |
| agents.containers.otelAgent.syncDelay | string | `"30s"` | How long otel-agent waits for the core agent to be ready on startup. Increase this value if the core agent takes longer to initialize (e.g. agent >= 7.81.1). |
| agents.containers.otelAgent.volumeMounts | list | `[]` | Specify additional volumes to mount in the otel-agent container |
| agents.containers.privateActionRunner.env | list | `[]` | Additional environment variables for the private-action-runner container |
| agents.containers.privateActionRunner.envDict | object | `{}` | Set environment variables specific to private-action-runner defined in a dict |
Expand Down
4 changes: 2 additions & 2 deletions charts/datadog/templates/_container-otel-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
command:
- "otel-agent"
- "--core-config={{ template "datadog.confPath" . }}/datadog.yaml"
- "--sync-delay=30s"
- "--sync-delay={{ .Values.agents.containers.otelAgent.syncDelay | default "30s" }}"
Comment thread
gb8may marked this conversation as resolved.
args:
{{- if .Values.datadog.otelCollector.configMap.items }}
{{- range .Values.datadog.otelCollector.configMap.items }}
Expand All @@ -35,7 +35,7 @@
- "-config={{ template "datadog.otelconfPath" . }}/otel-config.yaml"
{{- end }}
- "--core-config={{ template "datadog.confPath" . }}/datadog.yaml"
- "--sync-delay=30s"
- "--sync-delay={{ .Values.agents.containers.otelAgent.syncDelay | default "30s" }}"
{{- if .Values.datadog.otelCollector.featureGates }}
- "--feature-gates={{ .Values.datadog.otelCollector.featureGates }}"
{{- end }}
Expand Down
4 changes: 4 additions & 0 deletions charts/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2445,6 +2445,10 @@ agents:
# agents.containers.otelAgent.ports -- Allows to specify extra ports (hostPorts for instance) for this container
ports: []

# agents.containers.otelAgent.syncDelay -- How long otel-agent waits for the core agent to be ready on startup.
# Increase this value if the core agent takes longer to initialize (e.g. agent >= 7.81.1).
syncDelay: 30s
Comment thread
gb8may marked this conversation as resolved.

# agents.containers.otelAgent.volumeMounts -- Specify additional volumes to mount in the otel-agent container
volumeMounts: []
# - name: <VOLUME_NAME>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ spec:
allowlistPaths:
- Datadog/datadog-csi-driver/datadog-datadog-csi-driver-daemonset-exemption-v1.1.0.yaml
- Datadog/datadog-csi-driver/datadog-datadog-csi-driver-daemonset-exemption-v1.1.1.yaml