Skip to content

Commit

Permalink
Fix a few typos on otel agent in values.yaml (#1490)
Browse files Browse the repository at this point in the history
Co-authored-by: krlv <[email protected]>
  • Loading branch information
songy23 and krlv authored Oct 8, 2024
1 parent 1049d7e commit a17cc4b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
6 changes: 5 additions & 1 deletion charts/datadog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Datadog changelog

## 3.73.1
## 3.73.3

* Fix a few typos on OTel Agent configs.

## 3.73.2

* Add `admissionregistration.k8s.io/v1/validatingwebhookconfigurations` RBACs to the Cluster Agent.

Expand Down
2 changes: 1 addition & 1 deletion charts/datadog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: datadog
version: 3.73.2
version: 3.73.3
appVersion: "7"
description: Datadog Agent
keywords:
Expand Down
12 changes: 6 additions & 6 deletions charts/datadog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog

![Version: 3.73.2](https://img.shields.io/badge/Version-3.73.2-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
![Version: 3.73.3](https://img.shields.io/badge/Version-3.73.3-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)

[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).

Expand Down Expand Up @@ -471,12 +471,12 @@ helm install <RELEASE_NAME> \
| agents.containers.initContainers.resources | object | `{}` | Resource requests and limits for the init containers |
| agents.containers.initContainers.securityContext | object | `{}` | Allows you to overwrite the default container SecurityContext for the init containers. |
| agents.containers.initContainers.volumeMounts | list | `[]` | Specify additional volumes to mount for the init containers |
| agents.containers.otelAgent.env | list | `[]` | Additional environment variables for the trace-agent container |
| agents.containers.otelAgent.envDict | object | `{}` | Set environment variables specific to trace-agent defined in a dict |
| agents.containers.otelAgent.envFrom | list | `[]` | Set environment variables specific to trace-agent from configMaps and/or secrets |
| agents.containers.otelAgent.env | list | `[]` | Additional environment variables for the otel-agent container |
| agents.containers.otelAgent.envDict | object | `{}` | Set environment variables specific to otel-agent defined in a dict |
| agents.containers.otelAgent.envFrom | list | `[]` | Set environment variables specific to otel-agent from configMaps and/or secrets |
| 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 trace-agent container |
| agents.containers.otelAgent.securityContext | object | `{}` | Allows you to overwrite the default container SecurityContext for the trace-agent container. |
| agents.containers.otelAgent.resources | object | `{}` | Resource requests and limits for the otel-agent container |
| agents.containers.otelAgent.securityContext | object | `{}` | Allows you to overwrite the default container SecurityContext for the otel-agent container. |
| agents.containers.processAgent.env | list | `[]` | Additional environment variables for the process-agent container |
| agents.containers.processAgent.envDict | object | `{}` | Set environment variables specific to process-agent defined in a dict |
| agents.containers.processAgent.envFrom | list | `[]` | Set environment variables specific to process-agent from configMaps and/or secrets |
Expand Down
10 changes: 5 additions & 5 deletions charts/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1709,21 +1709,21 @@ agents:
ports: []

otelAgent:
# agents.containers.otelAgent.env -- Additional environment variables for the trace-agent container
# agents.containers.otelAgent.env -- Additional environment variables for the otel-agent container
env: []

# agents.containers.otelAgent.envFrom -- Set environment variables specific to trace-agent from configMaps and/or secrets
# agents.containers.otelAgent.envFrom -- Set environment variables specific to otel-agent from configMaps and/or secrets
envFrom: []
# - configMapRef:
# name: <CONFIGMAP_NAME>
# - secretRef:
# name: <SECRET_NAME>

# agents.containers.otelAgent.envDict -- Set environment variables specific to trace-agent defined in a dict
# agents.containers.otelAgent.envDict -- Set environment variables specific to otel-agent defined in a dict
envDict: {}
# <ENV_VAR_NAME>: <ENV_VAR_VALUE>

# agents.containers.otelAgent.resources -- Resource requests and limits for the trace-agent container
# agents.containers.otelAgent.resources -- Resource requests and limits for the otel-agent container
resources: {}
# requests:
# cpu: 100m
Expand All @@ -1732,7 +1732,7 @@ agents:
# cpu: 100m
# memory: 200Mi

# agents.containers.otelAgent.securityContext -- Allows you to overwrite the default container SecurityContext for the trace-agent container.
# agents.containers.otelAgent.securityContext -- Allows you to overwrite the default container SecurityContext for the otel-agent container.
securityContext: {}

# agents.containers.otelAgent.ports -- Allows to specify extra ports (hostPorts for instance) for this container
Expand Down

0 comments on commit a17cc4b

Please sign in to comment.