Skip to content

Commit b2970a1

Browse files
authored
Release v0.144.0 (#4655)
1 parent d852dca commit b2970a1

9 files changed

Lines changed: 98 additions & 119 deletions

.chloggen/fix-collector-pdb-selector-labels.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/fix_nginx-init-container-from-scratch.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.chloggen/olm_config.yaml

Lines changed: 0 additions & 43 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,61 @@
22

33
<!-- next version -->
44

5+
## 0.144.0
6+
7+
### 💡 Enhancements 💡
8+
9+
- `operator`: change operator args in bundle to env variables (#4612)
10+
The default configuration in the OLM bundle has been changed from command-line arguments to environment variables,
11+
making it easily overwritable when deployed using OLM's Subscription config. Command-line flags continue to work.
12+
All Config struct fields now support environment variable configuration.
13+
14+
Configuration set via the Subscription's config section will persist and be reapplied after operator upgrades.
15+
16+
Example of overriding configuration via OLM Subscription:
17+
18+
```yaml
19+
apiVersion: operators.coreos.com/v1alpha1
20+
kind: Subscription
21+
metadata:
22+
name: opentelemetry-operator
23+
spec:
24+
channel: stable
25+
name: opentelemetry-operator
26+
source: operatorhubio-catalog
27+
sourceNamespace: olm
28+
config:
29+
env:
30+
- name: FEATURE_GATES
31+
value: "operator.networkpolicy,operand.networkpolicy"
32+
- name: ENABLE_GO_AUTO_INSTRUMENTATION
33+
value: "true"
34+
- name: METRICS_SECURE
35+
value: "false"
36+
```
37+
38+
39+
### 🧰 Bug fixes 🧰
40+
41+
- `collector`: Fix PodDisruptionBudget using all labels instead of selector labels, preventing PDB breakage during rollouts (#4623)
42+
Use stable selector labels instead of all CR labels to prevent PDB breakage when mutable labels change during rollouts.
43+
- `auto-instrumentation`: Fix NGINX and Apache instrumentation init container creation to avoid copying init-container-incompatible fields. (#3729)
44+
The NGINX and Apache instrumentation init containers are now created from scratch instead of
45+
cloning the main container, preventing probes, lifecycle hooks, and resize policies from being
46+
applied to init containers.
47+
48+
### Components
49+
50+
* [OpenTelemetry Collector - v0.144.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.144.0)
51+
* [OpenTelemetry Contrib - v0.144.0](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.144.0)
52+
* [Java auto-instrumentation - v1.33.6](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.33.6)
53+
* [.NET auto-instrumentation - v1.2.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.2.0)
54+
* [Node.JS - v0.69.0](https://github.com/open-telemetry/opentelemetry-js/releases/tag/experimental%2Fv0.69.0)
55+
* [Python - v0.60b1](https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/v0.60b1)
56+
* [Go - v0.23.0](https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.23.0)
57+
* [ApacheHTTPD - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)
58+
* [Nginx - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)
59+
560
## 0.143.0
661

762
### 🧰 Bug fixes 🧰

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ The operator should be released within a week after the [OpenTelemetry collector
4848

4949
| Version | Release manager |
5050
|----------|-----------------|
51-
| v0.144.0 | @swiatekm |
5251
| v0.145.0 | @iblancasa |
5352
| v0.146.0 | @jaronoff97 |
5453
| v0.147.0 | @yuriolisa |
5554
| v0.148.0 | @TylerHelmuth |
5655
| v0.149.0 | @frzifus |
5756
| v0.150.0 | @pavolloffay |
57+
| v0.151.0 | @swiatekm |

bundle/community/manifests/opentelemetry-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ metadata:
9999
categories: Logging & Tracing,Monitoring
100100
certified: "false"
101101
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102-
createdAt: "2026-01-15T17:19:15Z"
102+
createdAt: "2026-01-26T15:18:00Z"
103103
description: Provides the OpenTelemetry components, including the Collector
104104
operators.operatorframework.io/builder: operator-sdk-v1.29.0
105105
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
106106
repository: github.com/open-telemetry/opentelemetry-operator
107107
support: OpenTelemetry Community
108-
name: opentelemetry-operator.v0.143.0
108+
name: opentelemetry-operator.v0.144.0
109109
namespace: placeholder
110110
spec:
111111
apiservicedefinitions: {}
@@ -545,7 +545,7 @@ spec:
545545
value: "true"
546546
- name: ENABLE_NGINX_AUTO_INSTRUMENTATION
547547
value: "true"
548-
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.143.0
548+
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.144.0
549549
livenessProbe:
550550
httpGet:
551551
path: /healthz
@@ -630,7 +630,7 @@ spec:
630630
minKubeVersion: 1.25.0
631631
provider:
632632
name: OpenTelemetry Community
633-
version: 0.143.0
633+
version: 0.144.0
634634
webhookdefinitions:
635635
- admissionReviewVersions:
636636
- v1alpha1

bundle/openshift/manifests/opentelemetry-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ metadata:
9999
categories: Logging & Tracing,Monitoring
100100
certified: "false"
101101
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102-
createdAt: "2026-01-15T17:19:43Z"
102+
createdAt: "2026-01-26T15:18:01Z"
103103
description: Provides the OpenTelemetry components, including the Collector
104104
operators.operatorframework.io/builder: operator-sdk-v1.29.0
105105
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
106106
repository: github.com/open-telemetry/opentelemetry-operator
107107
support: OpenTelemetry Community
108-
name: opentelemetry-operator.v0.143.0
108+
name: opentelemetry-operator.v0.144.0
109109
namespace: placeholder
110110
spec:
111111
apiservicedefinitions: {}
@@ -559,7 +559,7 @@ spec:
559559
value: "true"
560560
- name: FEATURE_GATES
561561
value: operator.networkpolicy,operand.networkpolicy
562-
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.143.0
562+
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.144.0
563563
livenessProbe:
564564
httpGet:
565565
path: /healthz
@@ -651,7 +651,7 @@ spec:
651651
minKubeVersion: 1.25.0
652652
provider:
653653
name: OpenTelemetry Community
654-
version: 0.143.0
654+
version: 0.144.0
655655
webhookdefinitions:
656656
- admissionReviewVersions:
657657
- v1alpha1

docs/compatibility.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -44,35 +44,35 @@ Generally speaking, these are backwards compatible, but specific features requir
4444

4545
The OpenTelemetry Operator _might_ work on versions outside of the given range, but when opening new issues, please make sure to test your scenario on a supported version.
4646

47-
| OpenTelemetry Operator | Kubernetes | Cert-Manager | Prometheus-Operator |
48-
|------------------------|----------------|--------------|---------------------|
49-
| v0.143.0 | v1.25 to v1.35 | v1 | v0.81.0 |
50-
| v0.142.0 | v1.25 to v1.35 | v1 | v0.81.0 |
51-
| v0.141.0 | v1.25 to v1.34 | v1 | v0.81.0 |
52-
| v0.140.0 | v1.25 to v1.33 | v1 | v0.81.0 |
53-
| v0.139.0 | v1.25 to v1.33 | v1 | v0.81.0 |
54-
| v0.138.0 | v1.25 to v1.33 | v1 | v0.81.0 |
55-
| v0.137.0 | v1.25 to v1.33 | v1 | v0.81.0 |
56-
| v0.136.0 | v1.25 to v1.33 | v1 | v0.81.0 |
57-
| v0.135.0 | v1.25 to v1.33 | v1 | v0.81.0 |
58-
| v0.134.0 | v1.25 to v1.33 | v1 | v0.81.0 |
59-
| v0.133.0 - N/A | N/A | N/A | N/A |
60-
| v0.132.0 | v1.25 to v1.33 | v1 | v0.81.0 |
61-
| v0.131.0 | v1.25 to v1.33 | v1 | v0.81.0 |
62-
| v0.129.1 | v1.23 to v1.33 | v1 | v0.81.0 |
63-
| v0.127.0 | v1.23 to v1.32 | v1 | v0.81.0 |
64-
| v0.126.0 | v1.23 to v1.32 | v1 | v0.80.1 |
65-
| v0.125.0 | v1.23 to v1.32 | v1 | v0.80.1 |
66-
| v0.124.0 | v1.23 to v1.32 | v1 | v0.80.1 |
67-
| v0.123.0 | v1.23 to v1.32 | v1 | v0.80.1 |
68-
| v0.122.0 | v1.23 to v1.32 | v1 | v0.80.1 |
69-
| v0.121.0 | v1.23 to v1.32 | v1 | v0.78.2 |
70-
| v0.120.0 | v1.23 to v1.32 | v1 | v0.76.2 |
71-
| v0.119.0 | v1.23 to v1.32 | v1 | v0.76.2 |
72-
| v0.118.0 | v1.23 to v1.32 | v1 | v0.76.2 |
73-
| v0.117.0 | v1.23 to v1.32 | v1 | v0.76.2 |
74-
| v0.116.0 | v1.23 to v1.31 | v1 | v0.76.2 |
75-
| v0.115.0 | v1.23 to v1.31 | v1 | v0.76.0 |
47+
| OpenTelemetry Operator | Kubernetes | Cert-Manager | Prometheus-Operator |
48+
|------------------------|----------------|--------------|-----------------------|
49+
| v0.144.0 | v1.25 to v1.35 | v1 | v0.88.0 |
50+
| v0.143.0 | v1.25 to v1.35 | v1 | v0.87.1 |
51+
| v0.142.0 | v1.25 to v1.35 | v1 | v0.87.1 |
52+
| v0.141.0 | v1.25 to v1.34 | v1 | v0.81.0 |
53+
| v0.140.0 | v1.25 to v1.33 | v1 | v0.81.0 |
54+
| v0.139.0 | v1.25 to v1.33 | v1 | v0.81.0 |
55+
| v0.138.0 | v1.25 to v1.33 | v1 | v0.81.0 |
56+
| v0.137.0 | v1.25 to v1.33 | v1 | v0.81.0 |
57+
| v0.136.0 | v1.25 to v1.33 | v1 | v0.81.0 |
58+
| v0.135.0 | v1.25 to v1.33 | v1 | v0.81.0 |
59+
| v0.134.0 | v1.25 to v1.33 | v1 | v0.81.0 |
60+
| v0.133.0 - N/A | N/A | N/A | N/A |
61+
| v0.132.0 | v1.25 to v1.33 | v1 | v0.81.0 |
62+
| v0.131.0 | v1.25 to v1.33 | v1 | v0.81.0 |
63+
| v0.129.1 | v1.23 to v1.33 | v1 | v0.81.0 |
64+
| v0.127.0 | v1.23 to v1.32 | v1 | v0.81.0 |
65+
| v0.126.0 | v1.23 to v1.32 | v1 | v0.80.1 |
66+
| v0.125.0 | v1.23 to v1.32 | v1 | v0.80.1 |
67+
| v0.124.0 | v1.23 to v1.32 | v1 | v0.80.1 |
68+
| v0.123.0 | v1.23 to v1.32 | v1 | v0.80.1 |
69+
| v0.122.0 | v1.23 to v1.32 | v1 | v0.80.1 |
70+
| v0.121.0 | v1.23 to v1.32 | v1 | v0.78.2 |
71+
| v0.120.0 | v1.23 to v1.32 | v1 | v0.76.2 |
72+
| v0.119.0 | v1.23 to v1.32 | v1 | v0.76.2 |
73+
| v0.118.0 | v1.23 to v1.32 | v1 | v0.76.2 |
74+
| v0.117.0 | v1.23 to v1.32 | v1 | v0.76.2 |
75+
| v0.116.0 | v1.23 to v1.31 | v1 | v0.76.2 |
7676

7777
[kubernetes_releases]: https://kubernetes.io/releases/
7878
[openshift_support]: https://access.redhat.com/support/policy/updates/openshift

versions.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
opentelemetry-collector=0.144.0
66

77
# Represents the current release of the OpenTelemetry Operator.
8-
operator=0.143.0
8+
operator=0.144.0
99

1010
# Represents the current release of the Target Allocator.
11-
targetallocator=0.143.0
11+
targetallocator=0.144.0
1212

1313
# Represents the current release of the Operator OpAMP Bridge.
14-
operator-opamp-bridge=0.143.0
14+
operator-opamp-bridge=0.144.0
1515

1616
# Represents the current release of Java instrumentation.
1717
# This version should not be greater than 1.x.x.
1818
autoinstrumentation-java=1.33.6
1919

2020
# Represents the current release of NodeJS instrumentation.
2121
# Should match value in autoinstrumentation/nodejs/package.json
22-
autoinstrumentation-nodejs=0.67.3
22+
autoinstrumentation-nodejs=0.69.0
2323

2424
# Represents the current release of Python instrumentation.
2525
# Should match value in autoinstrumentation/python/requirements.txt
@@ -30,7 +30,7 @@ autoinstrumentation-python=0.60b1
3030
autoinstrumentation-dotnet=1.2.0
3131

3232
# Represents the current release of Go instrumentation.
33-
autoinstrumentation-go=v0.22.1
33+
autoinstrumentation-go=v0.23.0
3434

3535
# Represents the current release of PHP instrumentation.
3636
# Should match autoinstrumentation/php/version.txt

0 commit comments

Comments
 (0)