Skip to content

Commit b013984

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 284de6b + 822a24f commit b013984

File tree

168 files changed

+5441
-1901
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+5441
-1901
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: bug_fix
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, 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: "Fixed handling of protocol in exposed ports."
9+
10+
# One or more tracking issues related to the change
11+
issues: [2619]
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.
15+
# Use pipe (|) for multiline entries.
16+
subtext: |
17+
Make distinction not only on the port number, but also on protocol. This fix allows to have multiple exposed
18+
ServicePorts with the same port number, but different protocols.
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: bug_fix
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, 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: "Fixed handling of exposed port protocol in syslog, tcplog and udplog receivers."
9+
10+
# One or more tracking issues related to the change
11+
issues: [767,2619]
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.
15+
# Use pipe (|) for multiline entries.
16+
subtext: |
17+
Please note that the operator currently exposes just one port (tcp or udp) of syslog receiver due to the current
18+
receiver implementation (patches are welcome).

.chloggen/add_shared_process_namespace_cap.yaml .chloggen/fix_2589-watch-single-namespace.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2-
change_type: enhancement
2+
change_type: bug_fix
33

44
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action)
55
component: operator
66

77
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8-
note: Add SharedProcessNamespace capabilities to the OpenTelemetryCollector CRD
8+
note: "Fixing WATCH_NAMESPACE for a single namespace value"
99

1010
# One or more tracking issues related to the change
11-
issues: [2472]
11+
issues: [2589]
1212

1313
# (Optional) One or more lines of additional information to render under the primary note.
1414
# These lines will be padded with 2 spaces and then inserted directly into the document.

.chloggen/fix_filterstrategy-default.yaml .chloggen/per-node-allocation-strategy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ change_type: enhancement
55
component: target allocator
66

77
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8-
note: Set the default filter strategy in the CRD
8+
note: Add new "per node" allocation strategy to target allocator. This strategy will allocate targets to nodes on which given target resides. It should only be used conjunction with the daemonset mode.
99

1010
# One or more tracking issues related to the change
11-
issues: [2477]
11+
issues: [1828]
1212

1313
# (Optional) One or more lines of additional information to render under the primary note.
1414
# These lines will be padded with 2 spaces and then inserted directly into the document.

.github/dependabot.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: gomod
44
directory: /
55
schedule:
6-
interval: daily
6+
interval: weekly
77
# Create a group of dependencies to be updated together in one pull request
88
groups:
99
golang-org-x:
@@ -29,7 +29,7 @@ updates:
2929
- package-ecosystem: github-actions
3030
directory: /
3131
schedule:
32-
interval: daily
32+
interval: weekly
3333
groups:
3434
gha-docker:
3535
patterns:
@@ -38,14 +38,14 @@ updates:
3838
- package-ecosystem: docker
3939
directory: /
4040
schedule:
41-
interval: daily
41+
interval: weekly
4242

4343
- package-ecosystem: docker
4444
directory: /cmd/otel-allocator
4545
schedule:
46-
interval: daily
46+
interval: weekly
4747

4848
- package-ecosystem: docker
4949
directory: /cmd/operator-opamp-bridge
5050
schedule:
51-
interval: daily
51+
interval: weekly

.github/workflows/continuous-integration.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
with:
2424
go-version: "~1.21.1"
2525

26+
- name: Cache tools
27+
uses: actions/cache@v4
28+
with:
29+
path: bin
30+
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
31+
32+
- name: Install tools
33+
run: make install-tools
34+
2635
- name: "basic checks"
2736
run: make ci
2837

@@ -38,6 +47,15 @@ jobs:
3847
with:
3948
go-version: "~1.21.1"
4049

50+
- name: Cache tools
51+
uses: actions/cache@v4
52+
with:
53+
path: bin
54+
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
55+
56+
- name: Install tools
57+
run: make install-tools
58+
4159
- uses: actions/cache@v4
4260
with:
4361
path: |
@@ -58,6 +76,11 @@ jobs:
5876
- name: Check out code into the Go module directory
5977
uses: actions/checkout@v4
6078

79+
- name: Set up Go
80+
uses: actions/setup-go@v5
81+
with:
82+
go-version: "~1.21.1"
83+
6184
- name: Initialize CodeQL
6285
uses: github/codeql-action/init@v3
6386
with:

.github/workflows/e2e.yaml

+8-6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- e2e-autoscale
3131
- e2e-pdb
3232
- e2e-opampbridge
33+
- e2e-targetallocator
3334
- e2e-prometheuscr
3435
- e2e-multi-instrumentation
3536
include:
@@ -47,13 +48,14 @@ jobs:
4748
with:
4849
go-version: "~1.21.3"
4950

50-
- name: Setup kind
51-
env:
52-
KIND_VERSION: "0.20.0"
53-
run: go install sigs.k8s.io/kind@v${KIND_VERSION}
51+
- name: Cache tools
52+
uses: actions/cache@v4
53+
with:
54+
path: bin
55+
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
5456

55-
- name: "install kuttl"
56-
run: ./hack/install-kuttl.sh
57+
- name: Install tools
58+
run: make install-tools
5759

5860
- name: "run tests"
5961
env:

.github/workflows/scorecard.yaml

+9-8
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,22 @@ jobs:
2727
with:
2828
go-version: "~1.21.1"
2929

30-
- name: Setup kind
31-
env:
32-
KIND_VERSION: "0.20.0"
33-
run: go install sigs.k8s.io/kind@v${KIND_VERSION}
34-
3530
- name: Check out code into the Go module directory
3631
uses: actions/checkout@v4
3732

38-
- name: "install kuttl and kind"
39-
run: ./hack/install-kuttl.sh
33+
- name: Cache tools
34+
uses: actions/cache@v4
35+
with:
36+
path: bin
37+
key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('Makefile') }}
38+
39+
- name: Install tools
40+
run: make install-tools
4041

4142
- name: "start kind"
4243
env:
4344
KUBE_VERSION: ${{ matrix.kube-version }}
44-
run: kind create cluster --config kind-$KUBE_VERSION.yaml
45+
run: make start-kind
4546

4647
- name: "wait until cluster is ready"
4748
run: kubectl wait --timeout=5m --for=condition=available deployment/coredns -n kube-system

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@ Changes by Version
22
==================
33
<!-- next version -->
44

5+
## 0.93.0
6+
7+
### 🛑 Breaking changes 🛑
8+
9+
This version brings stable semantic convention for network and HTTP. It includes new metrics and attributes names.
10+
- `target allocator`: Use standard K8s label selectors for Prometheus CRs in target allocator config (#1907)
11+
This is a breaking change only for users of standalone target allocator. Operator users are unaffected.
12+
The operator is still compatible with previous target allocator versions, and will be for the next 3 releases.
13+
- `target allocator`: Use recommended interfaces(resource selector) by the prometheus-operator for watching CRs. (#2309)
14+
The target allocator now requires get/list/watch permissions for namespaces. Update your RBAC permissions for the attached role, if necessary.
15+
16+
### 💡 Enhancements 💡
17+
18+
- `operator`: Add SharedProcessNamespace capabilities to the OpenTelemetryCollector CRD (#2472)
19+
- `opamp bridge`: Added env variable parsing to opamp bridge config loading (#2577)
20+
- `target allocator`: Set the default filter strategy in the CRD (#2477)
21+
- `operator, target allocator`: Adding a feature flag to disable default prometheus annotations (#2554)
22+
23+
### 🧰 Bug fixes 🧰
24+
25+
- `operator`: Fix annotations required by the OpenShift Operator Hub (#2557)
26+
27+
### Components
28+
29+
* [OpenTelemetry Collector - v0.92.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.93.0)
30+
* [OpenTelemetry Contrib - v0.92.0](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.93.0)
31+
* [Java auto-instrumentation - 1.32.0](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.0)
32+
* [.NET auto-instrumentation - 1.2.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/1.2.0)
33+
* [Node.JS - 0.46.0](https://github.com/open-telemetry/opentelemetry-js-contrib/releases/tag/auto-instrumentations-node-0.46.0)
34+
* [Python - 0.43b0](https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/0.43b0)
35+
* [Go - v0.10.0-alpha](https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.10.0-alpha)
36+
* [ApacheHTTPD - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)
37+
* [Nginx - 1.0.4](https://github.com/open-telemetry/opentelemetry-cpp-contrib/releases/tag/webserver%2Fv1.0.4)]
38+
539
## 0.92.1
640

741
### 💡 Enhancements 💡

0 commit comments

Comments
 (0)