Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.69.0 #1448

Merged
merged 3 commits into from
Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
Changes by Version
==================
0.69.0
------------------
### 🚩 Deprecations 🚩
* `target allocator`: Replace deprecated `gorilla/mux` dependency with `gin` ([#1383](https://github.com/open-telemetry/opentelemetry-operator/pull/1383), [@matej-g](https://github.com/matej-g))
### 💡 Enhancements 💡
* `operator`: CRD defs for Apache HTTPD Autoinstrumentation ([#1305](https://github.com/open-telemetry/opentelemetry-operator/pull/1305), [@chrlic](https://github.com/chrlic))
* `operator`: Inject otelcol sidecar into any namespace ([#1395](https://github.com/open-telemetry/opentelemetry-operator/pull/1395), [@pavolloffay](https://github.com/pavolloffay))
* `target allocator`: register pprof endpoints for allocator ([#1408](https://github.com/open-telemetry/opentelemetry-operator/pull/1408), [@seankhliao](https://github.com/seankhliao))
* `target allocator`: Addtl server unit tests ([#1357](https://github.com/open-telemetry/opentelemetry-operator/pull/1357), [@kristinapathak](https://github.com/kristinapathak))
### 🧰 Bug fixes 🧰
* `operator`: Fix daemonset-features E2E test for OpenShift ([#1354](https://github.com/open-telemetry/opentelemetry-operator/pull/1354), [@iblancasa](https://github.com/iblancasa))
* `operator`: Fix E2E autoscale test for OpenShift ([#1365](https://github.com/open-telemetry/opentelemetry-operator/pull/1365), [@iblancasa](https://github.com/iblancasa))
* `target allocator`: Fix Target Allocator tests ([#1403](https://github.com/open-telemetry/opentelemetry-operator/pull/1403), [@jaronoff97](https://github.com/jaronoff97))
#### OpenTelemetry Collector and Contrib
* [OpenTelemetry Collector - v0.69.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.69.0)
* [OpenTelemetry Contrib - v0.69.0](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.69.0)

0.68.0
------------------
### 🚩 Deprecations 🚩
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ The OpenTelemetry Operator *might* work on versions outside of the given range,

| OpenTelemetry Operator | Kubernetes | Cert-Manager |
|------------------------|----------------------|---------------------|
| v0.69.0 | v1.19 to v1.25 | v1 |
| v0.68.0 | v1.19 to v1.25 | v1 |
| v0.67.0 | v1.19 to v1.25 | v1 |
| v0.66.0 | v1.19 to v1.25 | v1 |
Expand All @@ -431,7 +432,6 @@ The OpenTelemetry Operator *might* work on versions outside of the given range,
| v0.49.0 | v1.19 to v1.23 | v1alpha2 |
| v0.48.0 | v1.19 to v1.23 | v1alpha2 |
| v0.47.0 | v1.19 to v1.23 | v1alpha2 |
| v0.46.0 | v1.19 to v1.23 | v1alpha2 |



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: github.com/open-telemetry/opentelemetry-operator
support: OpenTelemetry Community
name: opentelemetry-operator.v0.68.0
name: opentelemetry-operator.v0.69.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -307,7 +307,7 @@ spec:
- --enable-leader-election
- --zap-log-level=info
- --zap-time-encoding=rfc3339nano
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.68.0
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.69.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -414,7 +414,7 @@ spec:
maturity: alpha
provider:
name: OpenTelemetry Community
version: 0.68.0
version: 0.69.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
6 changes: 3 additions & 3 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# by default with the OpenTelemetry Operator. This would usually be the latest
# stable OpenTelemetry version. When you update this file, make sure to update the
# the docs as well.
opentelemetry-collector=0.68.0
opentelemetry-collector=0.69.0

# Represents the current release of the OpenTelemetry Operator.
operator=0.68.0
operator=0.69.0

# Represents the current release of the Target Allocator.
targetallocator=0.68.0
targetallocator=0.69.0

# Represents the current release of Java instrumentation.
# Should match autoinstrumentation/java/version.txt
Expand Down