Skip to content

Commit 5a1f13d

Browse files
authored
Release logzio-monitoring v6.0.7 chart (#524)
* Release `logzio-monitoring` v6.0.7 chart - Upgrade `logzio-logs-collector` chart to `v1.0.6` - Upgrade `logzio-k8s-events` chart to `v0.0.6` - Upgrade `logzio-trivy` chart to `0.3.3` * Add --update flag to tests workflow aws cli installation * Fix nodes env var for tests * Add OIDC * Update README.md
1 parent 2962551 commit 5a1f13d

File tree

4 files changed

+34
-6
lines changed

4 files changed

+34
-6
lines changed

.github/workflows/logzio-monitoring-test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
4242
unzip awscliv2.zip
43-
sudo ./aws/install
43+
sudo ./aws/install --update
4444
4545
- name: Set up eksctl
4646
run: |
@@ -59,7 +59,8 @@ jobs:
5959
NUMBER_OF_NODES: 3
6060
AWS_REGION: us-west-1
6161
run: |
62-
eksctl create cluster --name ${{ env.ENV_ID }}-${{ matrix.environment }} --region ${{ env.AWS_REGION }} --nodes {{ env.NUMBER_OF_NODES }}
62+
eksctl create cluster --name ${{ env.ENV_ID }}-${{ matrix.environment }} --region ${{ env.AWS_REGION }} --nodes ${{ env.NUMBER_OF_NODES }} --with-oidc
63+
6364
aws eks --region ${{ env.AWS_REGION }} update-kubeconfig --name ${{ env.ENV_ID }}-${{ matrix.environment }}
6465
- name: Label Nodes
6566
run: |

charts/logzio-k8s-events/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@ kubectl get nodes -o json | jq ".items[]|{name:.metadata.name, taints:.spec.tain
9898

9999

100100
## Change log
101+
- **0.0.6**:
102+
- Upgrade `logzio-k8s-events` to v0.0.3
103+
- Upgrade GoLang version to `v1.22.3`
104+
- Upgrade docker image to `alpine:3.20`
105+
- Upgrade GoLang docker image to `golang:1.22.3-alpine3.20`
101106
- **0.0.5**:
102107
- Remove the duplicate label `app.kubernetes.io/managed-by` @philwelz
103108
- **0.0.4**:

charts/logzio-monitoring/Chart.yaml

Lines changed: 4 additions & 4 deletions
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: 6.0.6
5+
version: 6.0.7
66

77

88

@@ -18,19 +18,19 @@ dependencies:
1818
repository: "https://logzio.github.io/logzio-helm/"
1919
condition: metricsOrTraces.enabled
2020
- name: logzio-trivy
21-
version: "0.3.2"
21+
version: "0.3.3"
2222
repository: "https://logzio.github.io/logzio-helm/"
2323
condition: securityReport.enabled
2424
- name: opencost
2525
version: "1.3.0"
2626
repository: "https://opencost.github.io/opencost-helm-chart"
2727
condition: finops.enabled
2828
- name: logzio-k8s-events
29-
version: "0.0.5"
29+
version: "0.0.6"
3030
repository: "https://logzio.github.io/logzio-helm/"
3131
condition: deployEvents.enabled
3232
- name: logzio-logs-collector
33-
version: "1.0.5"
33+
version: "1.0.6"
3434
repository: "https://logzio.github.io/logzio-helm/"
3535
condition: logs.enabled
3636
maintainers:

charts/logzio-monitoring/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,22 @@ There are two possible approaches to the upgrade you can choose from:
224224
225225
226226
## Changelog
227+
- **6.0.7**:
228+
- Upgrade `logzio-logs-collector` chart to `v1.0.6`
229+
- Added `varlogcontainers` volume and volume mounts
230+
- Added new `container` operator instead of complex operator sequence
231+
- Remove default resources `limits`
232+
- Add default resources `requests`
233+
- Upgrade `logzio-k8s-events` chart to `v0.0.6`
234+
- Upgrade `logzio-k8s-events` to `v0.0.3`
235+
- Upgrade GoLang version to `v1.22.3`
236+
- Upgrade docker image to `alpine:3.20`
237+
- Upgrade GoLang docker image to `golang:1.22.3-alpine3.20`
238+
- Upgrade `logzio-trivy` chart to `0.3.3`
239+
- Upgrade to image `logzio/trivy-to-logzio:0.3.3`.
240+
- Upgrade python version to 3.12.5.
241+
- Re-build image to include the latest version of git(CVE-2024-32002).
242+
- Bump Trivy-Operator chart version to `0.24.0`.
227243
- **6.0.6**:
228244
- Upgrade `logzio-k8s-telemetry` chart to `v4.2.7`
229245
- Fix `cluster-admin` cluster role binding creation condition
@@ -254,6 +270,12 @@ There are two possible approaches to the upgrade you can choose from:
254270
- **6.0.0**:
255271
- **Breaking changes**:
256272
- Make `logzio-logs-collector` default subchart for logging instead of `logzio-fluentd`
273+
274+
275+
<details>
276+
<summary markdown="span"> Expand to check old versions </summary>
277+
278+
257279
- **5.3.6**:
258280
- Upgrade `logzio-k8s-telemetry` version to `4.2.3`:
259281
- Disable Kubernetes objects receiver by default.

0 commit comments

Comments
 (0)