Skip to content

Commit 2ae190e

Browse files
Prepare release 0.100.0 (#2960)
* Prepare release 0.100.0 Signed-off-by: Vineeth Pothulapati <[email protected]> * update the chlog * update the chlog with #2877 merge --------- Signed-off-by: Vineeth Pothulapati <[email protected]>
1 parent 13bc62d commit 2ae190e

19 files changed

+58
-244
lines changed

.chloggen/2833-fix-detector-resourcedetectionprocessor.yaml

-16
This file was deleted.

.chloggen/2862-fix-clusterrolebinding-names.yaml

-16
This file was deleted.

.chloggen/add-collector-pool-healthy.yaml

-16
This file was deleted.

.chloggen/bug_2877.yaml

-20
This file was deleted.

.chloggen/cleanup-roles.yaml

-16
This file was deleted.

.chloggen/collector-readiness-support.yaml

-17
This file was deleted.

.chloggen/customized-log-encoder.yaml

-16
This file was deleted.

.chloggen/fix-collector-node-selector.yaml

-17
This file was deleted.

.chloggen/fix-labels-annotations-filter.yaml

-16
This file was deleted.

.chloggen/fix-ta-check-policy.yaml

-16
This file was deleted.

.chloggen/fix_load-initial-servicemonitors.yaml

-16
This file was deleted.

.chloggen/replace-create-rbac-permissions-by-checking-the-sa-permissions.yaml

-16
This file was deleted.

.chloggen/ta-add-https.yaml

-18
This file was deleted.

.chloggen/verify-prom-crd-resources.yaml

-16
This file was deleted.

CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
22

33
<!-- next version -->
44

5+
## 0.100.0
6+
7+
### 💡 Enhancements 💡
8+
9+
- `opamp`: Add healthy field at collector pool level in opamp bridge heartbeat (#2936)
10+
- `collector`: Add support for readinessProbe on OpenTelemetryCollector CRD. (#2943)
11+
Add support for readinessProbe on `OpenTelemetryCollector` and its default similar to the already supported livenessProbe.
12+
13+
- `operator`: Enabling new Logs Enconder Configuration parameters. (#268)
14+
- `operator`: Automatically enable RBAC creation if operator SA can create clusterroles and bindings. --create-rbac-permissions flag is noop and deprecated now. (#2588)
15+
- `target allocator`: Added option for creating an mTLS-configured HTTPS server to fetch scrape config with real secret values. (#1669)
16+
The change introduces an option to create an additional HTTPS server with mTLS configuration.
17+
This server is specifically utilized for obtaining the scrape configuration with actual secret values.
18+
19+
20+
### 🧰 Bug fixes 🧰
21+
22+
- `collector`: Create a Service Monitor for the monitoring service and another one for the collector service when the Prometheus exporter is used. (#2877)
23+
Create a Service Monitor for the collector Service when Prometheus exporter is used. A different Service Monitor is created for the monitoring service.
24+
This helps excluding the headless service (duplicating the metrics collection) and splits responsibilities between the two Service Monitors.
25+
Now, the operator.opentelemetry.io/collector-service-type label is used to differentiate the services.
26+
operator.opentelemetry.io/collector-monitoring-service and operator.opentelemetry.io/collector-headless-service are deprecated now.
27+
- `target-allocator`: Fixed non-expected warnings on TA webhook. (#2685)
28+
- `collector`: Ensure all Prometheus CRDs are installed (#2964)
29+
- `collector`: Cleanup ClusterRoles and ClusterRoleBindings created by the operator (#2938)
30+
The operator uses finalizer on the collector to run the cleanup
31+
- `collector`: Use the k8snode detector instead of kubernetes for the automatic RBAC creation for the resourcedetector (#2833)
32+
- `collector`: When two Collectors are created with the same name but different namespaces, the ClusterRoleBinding created by the first will be overriden by the second one. (#2862)
33+
- `collector`: Fix to reflect changes of OpenTelemetryCollector.spec.nodeSelector in the collector Pods (#2940)
34+
When updating `OpenTelemetryCollector.spec.nodeSelector` it was not removing previous selector from the final collector pod (Deployment/Daemonset/Statefulset).
35+
36+
- `collector`: Fix of Labels and Annotations filter (#2770)
37+
- `target allocator`: Fix target allocator readiness check (#2903)
38+
39+
### Components
40+
41+
* [OpenTelemetry Collector - v0.100.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.100.0)
42+
* [OpenTelemetry Contrib - v0.100.0](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.100.0)
43+
* [Java auto-instrumentation - v1.32.1](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.1)
44+
* [.NET auto-instrumentation - v1.2.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/{AUTO_INSTRUMENTATION_DOTNET_VERSION})
45+
* [Node.JS - v0.51.0](https://github.com/open-telemetry/opentelemetry-js/releases/tag/experimental%2Fv0.51.0)
46+
* [Python - v0.44b0](https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/v0.44b0)
47+
* [Go - v0.12.0-alpha](https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.12.0-alpha)
48+
* [ApacheHTTPD - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)
49+
* [Nginx - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)
50+
551
## 0.99.0
652

753
### 🛑 Breaking changes 🛑

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ The OpenTelemetry Operator _might_ work on versions outside of the given range,
730730

731731
| OpenTelemetry Operator | Kubernetes | Cert-Manager |
732732
|------------------------| -------------- | ------------ |
733+
| v0.100.0 | v1.23 to v1.29 | v1 |
733734
| v0.99.0 | v1.23 to v1.29 | v1 |
734735
| v0.98.0 | v1.23 to v1.29 | v1 |
735736
| v0.97.0 | v1.23 to v1.29 | v1 |
@@ -752,7 +753,6 @@ The OpenTelemetry Operator _might_ work on versions outside of the given range,
752753
| v0.80.0 | v1.19 to v1.27 | v1 |
753754
| v0.79.0 | v1.19 to v1.27 | v1 |
754755
| v0.78.0 | v1.19 to v1.27 | v1 |
755-
| v0.77.0 | v1.19 to v1.26 | v1 |
756756

757757
## Contributing and Developing
758758

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Steps to release a new version of the OpenTelemetry Operator:
44

5-
1. Create a `Prepare relese x.y.z` pull request with the following content:
5+
1. Create a `Prepare release x.y.z` pull request with the following content:
66
1. Set the version you're releasing as an environment variable for convenience: `export VERSION=0.n+1.0`
77
1. Update `versions.txt`
88
- Operator, target allocator and opamp-bridge should be `$VERSION`.
@@ -44,9 +44,9 @@ The operator should be released within a week after the [OpenTelemetry collector
4444

4545
| Version | Release manager |
4646
|----------|-----------------|
47-
| v0.100.0 | @TylerHelmuth |
4847
| v0.101.0 | @swiatekm-sumo |
4948
| v0.102.0 | @frzifus |
5049
| v0.103.0 | @jaronoff97 |
5150
| v0.104.0 | @pavolloffay |
5251
| v0.105.0 | @yuriolisa |
52+
| v0.106.0 | @TylerHelmuth |

bundle/manifests/opentelemetry-operator.clusterserviceversion.yaml

+4-4
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: "2024-05-03T15:21:44Z"
102+
createdAt: "2024-05-15T17:31:49Z"
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.99.0
108+
name: opentelemetry-operator.v0.100.0
109109
namespace: placeholder
110110
spec:
111111
apiservicedefinitions: {}
@@ -504,7 +504,7 @@ spec:
504504
valueFrom:
505505
fieldRef:
506506
fieldPath: spec.serviceAccountName
507-
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.99.0
507+
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.100.0
508508
livenessProbe:
509509
httpGet:
510510
path: /healthz
@@ -612,7 +612,7 @@ spec:
612612
minKubeVersion: 1.23.0
613613
provider:
614614
name: OpenTelemetry Community
615-
version: 0.99.0
615+
version: 0.100.0
616616
webhookdefinitions:
617617
- admissionReviewVersions:
618618
- v1alpha1

0 commit comments

Comments
 (0)