Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 4 additions & 0 deletions charts/observability-pipelines-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.21.2

* Fix `sgc_path` in bootstrap template: remove hardcoded path to `datadog-secret-backend` (renamed to `sgc` since 2.15.1) and defer to the worker's built-in default. Also skip emitting the auto-generated `secret:` block when `bootstrap.config` already defines one, preventing duplicate YAML key errors.

## 2.21.1

* Official image `2.21.1`
Expand Down
2 changes: 1 addition & 1 deletion charts/observability-pipelines-worker/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: observability-pipelines-worker
version: 2.21.1
version: 2.21.2
description: Observability Pipelines Worker
type: application
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ data:
{{- if .Values.datadog.bootstrap.config }}
{{- toYaml .Values.datadog.bootstrap.config | nindent 4 }}
{{- end }}
{{- if .Values.datadog.bootstrap.secretFileContents }}
{{- if and .Values.datadog.bootstrap.secretFileContents (not (hasKey (default dict .Values.datadog.bootstrap.config) "secret")) }}
secret:
sgc_path: /opt/datadog/observability-pipelines-worker/bin/datadog-secret-backend
backend_type: json
backend_config:
file_path: /etc/observability-pipelines-secrets/secrets.json
Expand Down
Loading