You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2
+
change_type: deprecation
3
+
4
+
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action)
5
+
component: operator
6
+
7
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8
+
note: "Deprecated `label` flag and introduced `labels-filter` flag to align the label filtering with the attribute filtering flag name. The `label` flag will be removed when #3236 issue is resolved."
9
+
10
+
# One or more tracking issues related to the change
11
+
issues: [3218]
12
+
13
+
# (Optional) One or more lines of additional information to render under the primary note.
14
+
# These lines will be padded with 2 spaces and then inserted directly into the document.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+41
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,47 @@
2
2
3
3
<!-- next version -->
4
4
5
+
## 0.108.0
6
+
7
+
### 💡 Enhancements 💡
8
+
9
+
-`auto-instrumentation`: set OTEL_EXPORTER_OTLP_PROTOCOL instead of signal specific env vars in python instrumentation (#3165)
10
+
-`collector`: Allow autoscaler targetCPUUtilization and TargetMemoryUtilization to be greater than 99 (#3258)
11
+
-`auto-instrumentation`: Not ignore the `instrumentation.opentelemetry.io/container-names` annotation when the multi-instrumentation is enabled (#3090)
12
+
-`operator`: Support for Kubernetes `1.31` version. (#3247)
13
+
-`target allocator`: introduces the global field in the TA config to allow for setting scrape protocols (#3160)
14
+
15
+
### 🧰 Bug fixes 🧰
16
+
17
+
-`auto-instrumentation`: Fix file copy for NGINX auto-instrumentation for non-root workloads. (#2726)
18
+
-`target allocator`: Retrying failed namespace informer creation in promOperator CRD watcher, then exit if creation issue cannot be resolved (#3216)
19
+
-`target allocator`: Rollback #3187 (#3242)
20
+
This Rollsback 3187 which breaks TargetAllocator config for clusters with custom domains.
21
+
-`auto-instrumentation`: Fixes a bug that was preventing auto instrumentation from getting correct images. (#3014)
22
+
This PR removes the restriction on the operator to only upgrade manually applied CRDs. This meant
23
+
that resources applied by helm were not upgraded at all. The solution was to remove the restriction
24
+
we had on querying the label app.kubernetes.io/managed-by=opentelemetry-operator, thereby upgrading
25
+
ALL CRDs in the cluster.
26
+
27
+
-`collector`: Fixes a bug that was preventing upgrade patches from reliably applying. (#3074)
28
+
A bug was discovered in the process of testing the PR that was failing to remove the environment
29
+
variables introduced in the 0.104.0 upgrade. The fix was to take a deepcopy of the object and update that.
30
+
31
+
-`collector`: Don't unnecessarily take ownership of PersistentVolumes and PersistentVolumeClaims (#3042)
32
+
-`awsxray-receiver`: Switched the protocol of awsxray-receiver to UDP from TCP (#3261)
Copy file name to clipboardexpand all lines: RELEASE.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -42,11 +42,11 @@ In order to have more people comfortable with the release process, and in order
42
42
43
43
The operator should be released within a week after the [OpenTelemetry collector release](https://github.com/open-telemetry/opentelemetry-collector/blob/main/docs/release.md#release-schedule).
0 commit comments