Skip to content

Commit 478a580

Browse files
authored
Merge pull request #429 from logzio/easy-connect-1.0.7
1.0.7
2 parents d02002f + f9d4cdd commit 478a580

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

charts/easy-connect/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: easy-connect
33
description: Easily add otel auto instrumentation and log types to your Kubernetes applications
44
type: application
5-
version: 1.0.6
5+
version: 1.0.7
66

77
maintainers:
88
- name: yotamloe

charts/easy-connect/README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ serviceAccount
4949
| --- | --- | --- |
5050
| `kubernetesInstrumentor.serviceAccount` | Service account name of the instrumentor deployment | `"kubernetes-instrumentor"` |
5151
| `kubernetesInstrumentor.image.repository` | Repository of the instrumentor image | `"logzio/instrumentor"` |
52-
| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.10"` |
52+
| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.11"` |
5353
| `kubernetesInstrumentor.instrumentationDetectorImage.repository` | Repository of the instrumentation detector image | `"logzio/instrumentation-detector"` |
54-
| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.10"` |
54+
| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.11"` |
5555
| `kubernetesInstrumentor.javaAgentImage.repository` | Repository of the Java agent image | `"logzio/otel-agent-java"` |
56-
| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.10"` |
56+
| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.11"` |
5757
| `kubernetesInstrumentor.dotnetAgentImage.repository` | Repository of the .Net agent image | `"logzio/otel-agent-dotnet"` |
58-
| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.10"` |
58+
| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.11"` |
5959
| `kubernetesInstrumentor.nodejsAgentImage.repository` | Repository of the Node.js agent image | `"logzio/otel-agent-nodejs"` |
60-
| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.10"` |
60+
| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.11"` |
6161
| `kubernetesInstrumentor.pythonAgentImage.repository` | Repository of the Python agent image | `"logzio/otel-agent-python"` |
62-
| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.10"` |
62+
| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.11"` |
6363
| `kubernetesInstrumentor.deleteDetectionPods` | Delete detection pods after detection | `true` |
6464
| `kubernetesInstrumentor.ports.metricsPort` | Metrics port for the instrumentor | `8080` |
6565
| `kubernetesInstrumentor.ports.healthProbePort` | Health probe port for the instrumentor | `8081` |
@@ -108,6 +108,11 @@ you can find alternative to `dockerhub` images in `public.ecr.aws/logzio/` with
108108

109109
Change log
110110
-------------
111+
* 1.0.7
112+
- Update `instrumentor` and agents images `v1.0.10` -> `v1.0.11`
113+
- Update python instrumentation:
114+
- update base image: `python:3.10-alpine` -> `python:3.11-alpine` (https://github.com/open-telemetry/opentelemetry-operator/issues/1515)
115+
- Create dotnet agent version with instrumentation `v0.5.0` (tag: `logzio/otel-agent-dotnet:v1.0.11-0.5.0`)
111116
* 1.0.6
112117
- Improve `nodejs` instrumentation:
113118
- Use `BatchSpanProcessor`

charts/easy-connect/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ kubernetesInstrumentor:
44
serviceAccount: "kubernetes-instrumentor"
55
image:
66
repository: "logzio/instrumentor"
7-
tag: "v1.0.10"
7+
tag: "v1.0.11"
88
instrumentationDetectorImage:
99
repository: "logzio/instrumentation-detector"
10-
tag: "v1.0.10"
10+
tag: "v1.0.11"
1111
javaAgentImage:
1212
repository: "logzio/otel-agent-java"
13-
tag: "v1.0.10"
13+
tag: "v1.0.11"
1414
dotnetAgentImage:
1515
repository: "logzio/otel-agent-dotnet"
16-
tag: "v1.0.10"
16+
tag: "v1.0.11"
1717
nodejsAgentImage:
1818
repository: "logzio/otel-agent-nodejs"
19-
tag: "v1.0.10"
19+
tag: "v1.0.11"
2020
pythonAgentImage:
2121
repository: "logzio/otel-agent-python"
22-
tag: "v1.0.10"
22+
tag: "v1.0.11"
2323
deleteDetectionPods: true
2424
ports:
2525
metricsPort: 8080

0 commit comments

Comments
 (0)