Skip to content

Commit

Permalink
Update collector to 0.38.0 (#510)
Browse files Browse the repository at this point in the history
* Update collector to 0.38.0

* update cert-manager version
  • Loading branch information
VineethReddy02 authored Nov 8, 2021
1 parent 3bc2c6b commit d22c804
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes by Version
==================

0.38.0
-------------------
* Bumped OpenTelemetry Collector to v0.38.0
* Initial support for auto-instrumentation at the moment supported only for Java ([#464](https://github.com/open-telemetry/opentelemetry-operator/pull/464), [@pavolloffay](https://github.com/pavolloffay))

0.37.1
-------------------
* Bumped OpenTelemetry Collector to v0.37.1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ endif
KUBE_VERSION ?= 1.21
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml

CERTMANAGER_VERSION ?= 1.6.0
CERTMANAGER_VERSION ?= 1.6.1

ensure-generate-is-noop: VERSION=$(OPERATOR_VERSION)
ensure-generate-is-noop: USER=opentelemetry
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ The OpenTelemetry Operator *might* work on versions outside of the given range,

| OpenTelemetry Operator | Kubernetes | Cert-Manager |
|------------------------|----------------------|----------------------|
| v0.38.0 | v1.20 to v1.22 | 1.6.1 |
| v0.37.1 | v1.20 to v1.22 | v1.4.0 to v1.6.1 |
| v0.37.0 | v1.20 to v1.22 | v1.4.0 to v1.5.4 |
| v0.36.0 | v1.20 to v1.22 | v1.4.0 to v1.5.4 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
repository: github.com/open-telemetry/opentelemetry-operator
support: OpenTelemetry Community
name: opentelemetry-operator.v0.37.1
name: opentelemetry-operator.v0.38.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -215,7 +215,7 @@ spec:
- args:
- --metrics-addr=127.0.0.1:8080
- --enable-leader-election
image: quay.io/opentelemetry/opentelemetry-operator:v0.37.1
image: quay.io/opentelemetry/opentelemetry-operator:v0.38.0
name: manager
ports:
- containerPort: 9443
Expand Down Expand Up @@ -307,7 +307,7 @@ spec:
maturity: alpha
provider:
name: OpenTelemetry Community
version: 0.37.1
version: 0.38.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
1 change: 0 additions & 1 deletion docs/otelcol_cr_spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ spec:
// +optional Args is the set of arguments to pass to the OpenTelemetry Collector binary
args:
metrics-level: detailed
log-level: debug

// +optional Replicas is the number of pod instances for the underlying OpenTelemetry Collector
replicas: 1
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/instrumentation-java/00-install-collector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spec:
mode: sidecar
args:
metrics-level: detailed
log-level: debug
config: |
receivers:
otlp:
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/smoke-pod-annotations/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ spec:
exporters: [logging]
args:
metrics-level: detailed
log-level: debug
1 change: 0 additions & 1 deletion tests/e2e/smoke-sidecar/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ spec:
mode: sidecar
args:
metrics-level: detailed
log-level: debug
config: |
receivers:
jaeger:
Expand Down
3 changes: 1 addition & 2 deletions tests/e2e/smoke-simplest/00-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ spec:
processors: []
exporters: [logging]
args:
metrics-level: detailed
log-level: debug
metrics-level: detailed
4 changes: 2 additions & 2 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# 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.37.1
opentelemetry-collector=0.38.0

# Represents the current release of the OpenTelemetry Operator.
operator=0.37.1
operator=0.38.0

# Represents the current release of the Target Allocator.
targetallocator=0.1.0
Expand Down

0 comments on commit d22c804

Please sign in to comment.