Skip to content

Commit 9512787

Browse files
committed
Clarify instructions to configure secrets management
1 parent a9c7c83 commit 9512787

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

charts/observability-pipelines-worker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.12.2
4+
5+
- Add clarifying note to values.yaml configuration for custom secrets management
6+
37
## 2.12.1
48

59
- Add support for custom secrets management via datadog.bootstrap in values.yaml

charts/observability-pipelines-worker/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: observability-pipelines-worker
3-
version: "2.12.1"
3+
version: "2.12.2"
44
description: Observability Pipelines Worker
55
type: application
66
keywords:

charts/observability-pipelines-worker/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Observability Pipelines Worker
22

3-
![Version: 2.12.1](https://img.shields.io/badge/Version-2.12.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.12.0](https://img.shields.io/badge/AppVersion-2.12.0-informational?style=flat-square)
3+
![Version: 2.12.2](https://img.shields.io/badge/Version-2.12.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.12.0](https://img.shields.io/badge/AppVersion-2.12.0-informational?style=flat-square)
44

55
## How to use Datadog Helm repository
66

@@ -92,8 +92,8 @@ The command removes all the Kubernetes components associated with the chart and
9292
| datadog.apiKey | string | `nil` | Specify your Datadog API key. |
9393
| datadog.apiKeyExistingSecret | string | `""` | Specify a preexisting Secret that has your API key instead of creating a new one. The value must be stored under the `api-key`. |
9494
| datadog.bootstrap | object | `{"config":{},"secretFileContents":{}}` | Provide a bootstrap file that conforms to the options provided in this documentation: https://docs.datadoghq.com/observability_pipelines/configuration/install_the_worker/advanced_worker_configurations/#bootstrap-options |
95-
| datadog.bootstrap.config | object | `{}` | The bootstrap file contents |
96-
| datadog.bootstrap.secretFileContents | object | `{}` | Additional helper for the "secrets" portion of the bootstrap file. Use if your backend_type is of type 'file'. Helm chart will copy the provided secrets into a new file, and correctly setup the bootstrap to point to the secrets file. eg: { "SOURCE_DATADOG_AGENT_ADDRESS" : " 0.0.0.0:8282" } |
95+
| datadog.bootstrap.config | object | `{}` | The bootstrap file contents. Use only if `secretFileContents` is not provided. |
96+
| datadog.bootstrap.secretFileContents | object | `{}` | Additional helper for the "secrets" portion of the bootstrap file. Use if your backend_type is of type 'file'. Helm chart will copy the provided secrets into a new file, and correctly setup the bootstrap to point to the secrets file in `bootstrap.config`. eg: { "SOURCE_DATADOG_AGENT_ADDRESS" : " 0.0.0.0:8282" } |
9797
| datadog.dataDir | string | `"/var/lib/observability-pipelines-worker"` | The data directory for OPW to store runtime data in. |
9898
| datadog.pipelineId | string | `nil` | Specify your Datadog Observability Pipelines pipeline ID |
9999
| datadog.site | string | `"datadoghq.com"` | The [site](https://docs.datadoghq.com/getting_started/site/) of the Datadog intake to send data to. |

charts/observability-pipelines-worker/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ datadog:
4141
# datadog.bootstrap -- Provide a bootstrap file that conforms to the options provided in this documentation:
4242
# https://docs.datadoghq.com/observability_pipelines/configuration/install_the_worker/advanced_worker_configurations/#bootstrap-options
4343
bootstrap:
44-
# datadog.bootstrap.config -- The bootstrap file contents
44+
# datadog.bootstrap.config -- The bootstrap file contents. Use only if `secretFileContents` is not provided.
4545
config: {}
4646
# datadog.bootstrap.secretFileContents -- Additional helper for the "secrets" portion of the bootstrap file.
4747
# Use if your backend_type is of type 'file'. Helm chart will copy the provided secrets into a new file,
48-
# and correctly setup the bootstrap to point to the secrets file.
48+
# and correctly setup the bootstrap to point to the secrets file in `bootstrap.config`.
4949
# eg: { "SOURCE_DATADOG_AGENT_ADDRESS" : " 0.0.0.0:8282" }
5050
secretFileContents: {}
5151

0 commit comments

Comments
 (0)