Skip to content

Commit e1f1401

Browse files
authored
[Release] logzio-monitoring version 7.3.0
2 parents 99f53d6 + e3b351e commit e1f1401

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

charts/logzio-monitoring/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changes by Version
22

33
<!-- next version -->
4+
## 7.3.0
5+
- Upgrade `logzio-apm-collector` chart to `1.2.3`
6+
- Add support for auto resource detection with `distribution` and `resourceDetection.enabled` flags.
7+
- Upgrade `logzio-logs-collector` chart to `2.0.2`
8+
- Add support for auto resource detection with `distribution` and `resourceDetection.enabled` flags.
9+
- Upgrade `logzio-k8s-telemetry` chart to `5.2.0`
10+
- Expose collector metrics port by default
11+
- Add `podDisruptionBudget` (Contributed by @jod972)
12+
- Add `topologySpreadConstraints` (Contributed by @jod972)
13+
- Add support for auto resource detection with `distribution` and `resourceDetection.enabled` flags.
14+
- Update Operator await job to dynamically determine the webhook path based on the release namespace and chart name.
15+
416
## 7.2.0
517
- Upgrade `logzio-k8s-telemetry` chart to `5.1.0`
618
- Respect metric filters in `prometheus/kubelet` scrape endpoint

charts/logzio-monitoring/Chart.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: logzio-monitoring
33
description: logzio-monitoring allows you to ship logs, metrics, traces and security reports from your Kubernetes cluster using the OpenTelemetry collector for metrics and traces, Fluentd for logs, and Trivy for security reports.
44
type: application
5-
version: 7.2.0
5+
version: 7.3.0
66

77

88

@@ -14,7 +14,7 @@ dependencies:
1414
repository: "https://logzio.github.io/logzio-helm/"
1515
condition: logs.enabled
1616
- name: logzio-k8s-telemetry
17-
version: "5.1.0"
17+
version: "5.2.0"
1818
repository: "https://logzio.github.io/logzio-helm/"
1919
condition: logzio-k8s-telemetry.metrics.enabled
2020
- name: logzio-trivy
@@ -30,11 +30,11 @@ dependencies:
3030
repository: "https://logzio.github.io/logzio-helm/"
3131
condition: deployEvents.enabled
3232
- name: logzio-logs-collector
33-
version: "2.0.1"
33+
version: "2.0.2"
3434
repository: "https://logzio.github.io/logzio-helm/"
3535
condition: logs.enabled
3636
- name: logzio-apm-collector
37-
version: "1.2.1"
37+
version: "1.2.3"
3838
repository: "https://logzio.github.io/logzio-helm/"
3939
condition: logzio-apm-collector.enabled
4040
- name: opentelemetry-operator

charts/logzio-monitoring/templates/operator/webhook-ready-check-job.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
done
3636
}
3737
38-
until curl -k https://logzio-monitoring-otel-operator-webhook.monitoring.svc:443/mutate-opentelemetry-io-v1alpha1-instrumentation; do
38+
until curl -k https://{{ .Chart.Name }}-otel-operator-webhook.{{ .Release.Namespace }}.svc:443/mutate-opentelemetry-io-v1alpha1-instrumentation; do
3939
if [ $SECONDS -ge $max_wait ]; then
4040
echo "Opentelemetry Operator webhook readiness timeout exceeded, instrumentation resource was not applied."
4141
exit 1

0 commit comments

Comments
 (0)