Skip to content

Commit

Permalink
fixup! [PRODUCTSA-1093] Update OPW chart for v2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
krlv committed Apr 5, 2024
1 parent cdf5a00 commit 7189714
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 35 deletions.
2 changes: 1 addition & 1 deletion charts/observability-pipelines-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## 2.0.0

* GA release of Observability Pipelines Worker v2
* Removed `datadog.remoteConfigurationEnabled` and `datadog.pipelineConfig` values
* Removed `datadog.remoteConfigurationEnabled` and `pipelineConfig` values

## 1.8.1

Expand Down
1 change: 0 additions & 1 deletion charts/observability-pipelines-worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ The command removes all the Kubernetes components associated with the chart and
| persistence.selector | object | `{}` | Specify the selectors for PersistentVolumeClaims. |
| persistence.size | string | `"10Gi"` | Specify the size of PersistentVolumeClaims. |
| persistence.storageClassName | string | `nil` | Specify the storageClassName for PersistentVolumeClaims. |
| pipelineConfig | object | `{}` | This section supports using Helm templates to populate dynamic values. See Observability Pipelines' [configuration documentation](https://docs.datadoghq.com/observability_pipelines/reference/) for all options. |
| podAnnotations | object | `{}` | Set annotations on Pods. |
| podDisruptionBudget.enabled | bool | `false` | If **true**, create a [PodDisruptionBudget](https://kubernetes.io/docs/tasks/run-application/configure-pdb/). |
| podDisruptionBudget.maxUnavailable | int | `nil` | Specify the number of Pods that can be unavailable after an eviction. |
Expand Down
2 changes: 0 additions & 2 deletions charts/observability-pipelines-worker/templates/_pod.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ containers:
ports:
{{- if .Values.containerPorts }}
{{ toYaml .Values.containerPorts | indent 6 }}
{{- else if .Values.pipelineConfig }}
{{- include "opw.containerPorts" . | indent 6 }}
{{- end }}
{{- if .Values.datadog.workerAPI.enabled }}
{{ include "opw.api.containerPort" . | indent 6 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ spec:
{{ toYaml .Values.podLabels | indent 8 }}
{{- end }}
annotations:
checksum/config: {{ tpl (toYaml .Values.pipelineConfig) . | sha256sum }}
{{- if .Values.podAnnotations }}
{{ tpl (toYaml .Values.podAnnotations) . | indent 8 }}
{{- end }}
Expand Down
30 changes: 0 additions & 30 deletions charts/observability-pipelines-worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,36 +252,6 @@ ingress:
# hosts:
# - chart-example.local

# pipelineConfig -- This section supports using Helm templates to populate dynamic values. See Observability Pipelines'
# [configuration documentation](https://docs.datadoghq.com/observability_pipelines/reference/) for all options.
pipelineConfig: {}
# sources:
# datadog_agents:
# type: datadog_agent
# address: 0.0.0.0:8282
# multiple_outputs: true
# store_api_key: false
# sinks:
# datadog_logs:
# type: datadog_logs
# inputs:
# - datadog_agents.logs
# compression: gzip
# default_api_key: ${DD_API_KEY}
# site: ${DD_SITE}
# datadog_metrics:
# type: datadog_metrics
# inputs:
# - datadog_agents.metrics
# default_api_key: ${DD_API_KEY}
# site: ${DD_SITE}
# datadog_traces:
# type: datadog_traces
# inputs:
# - datadog_agents.traces
# default_api_key: ${DD_API_KEY}
# site: ${DD_SITE}

# extraVolumes -- Specify additional Volumes to use.
extraVolumes: []

Expand Down

0 comments on commit 7189714

Please sign in to comment.