From f9d4cdd67beba9be62e6cbed6bf6ccecf69da76a Mon Sep 17 00:00:00 2001 From: Yotam loewenbach Date: Sun, 28 Jan 2024 17:14:10 +0700 Subject: [PATCH] 1.0.7 --- charts/easy-connect/Chart.yaml | 2 +- charts/easy-connect/README.md | 17 +++++++++++------ charts/easy-connect/values.yaml | 12 ++++++------ 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/charts/easy-connect/Chart.yaml b/charts/easy-connect/Chart.yaml index fce90e29..2c44ec8a 100644 --- a/charts/easy-connect/Chart.yaml +++ b/charts/easy-connect/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: easy-connect description: Easily add otel auto instrumentation and log types to your Kubernetes applications type: application -version: 1.0.6 +version: 1.0.7 maintainers: - name: yotamloe diff --git a/charts/easy-connect/README.md b/charts/easy-connect/README.md index e190cab6..2a489d42 100644 --- a/charts/easy-connect/README.md +++ b/charts/easy-connect/README.md @@ -49,17 +49,17 @@ serviceAccount | --- | --- | --- | | `kubernetesInstrumentor.serviceAccount` | Service account name of the instrumentor deployment | `"kubernetes-instrumentor"` | | `kubernetesInstrumentor.image.repository` | Repository of the instrumentor image | `"logzio/instrumentor"` | -| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.10"` | +| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.11"` | | `kubernetesInstrumentor.instrumentationDetectorImage.repository` | Repository of the instrumentation detector image | `"logzio/instrumentation-detector"` | -| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.10"` | +| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.11"` | | `kubernetesInstrumentor.javaAgentImage.repository` | Repository of the Java agent image | `"logzio/otel-agent-java"` | -| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.10"` | +| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.11"` | | `kubernetesInstrumentor.dotnetAgentImage.repository` | Repository of the .Net agent image | `"logzio/otel-agent-dotnet"` | -| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.10"` | +| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.11"` | | `kubernetesInstrumentor.nodejsAgentImage.repository` | Repository of the Node.js agent image | `"logzio/otel-agent-nodejs"` | -| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.10"` | +| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.11"` | | `kubernetesInstrumentor.pythonAgentImage.repository` | Repository of the Python agent image | `"logzio/otel-agent-python"` | -| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.10"` | +| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.11"` | | `kubernetesInstrumentor.deleteDetectionPods` | Delete detection pods after detection | `true` | | `kubernetesInstrumentor.ports.metricsPort` | Metrics port for the instrumentor | `8080` | | `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 Change log ------------- +* 1.0.7 + - Update `instrumentor` and agents images `v1.0.10` -> `v1.0.11` + - Update python instrumentation: + - update base image: `python:3.10-alpine` -> `python:3.11-alpine` (https://github.com/open-telemetry/opentelemetry-operator/issues/1515) + - Create dotnet agent version with instrumentation `v0.5.0` (tag: `logzio/otel-agent-dotnet:v1.0.11-0.5.0`) * 1.0.6 - Improve `nodejs` instrumentation: - Use `BatchSpanProcessor` diff --git a/charts/easy-connect/values.yaml b/charts/easy-connect/values.yaml index 837bdd72..3677cdef 100644 --- a/charts/easy-connect/values.yaml +++ b/charts/easy-connect/values.yaml @@ -4,22 +4,22 @@ kubernetesInstrumentor: serviceAccount: "kubernetes-instrumentor" image: repository: "logzio/instrumentor" - tag: "v1.0.10" + tag: "v1.0.11" instrumentationDetectorImage: repository: "logzio/instrumentation-detector" - tag: "v1.0.10" + tag: "v1.0.11" javaAgentImage: repository: "logzio/otel-agent-java" - tag: "v1.0.10" + tag: "v1.0.11" dotnetAgentImage: repository: "logzio/otel-agent-dotnet" - tag: "v1.0.10" + tag: "v1.0.11" nodejsAgentImage: repository: "logzio/otel-agent-nodejs" - tag: "v1.0.10" + tag: "v1.0.11" pythonAgentImage: repository: "logzio/otel-agent-python" - tag: "v1.0.10" + tag: "v1.0.11" deleteDetectionPods: true ports: metricsPort: 8080