Skip to content

Commit

Permalink
Release logzio-monitoring v6.0.7 chart (#524)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ralongit authored Aug 12, 2024
1 parent 2962551 commit 5a1f13d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/logzio-monitoring-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
sudo ./aws/install --update
- name: Set up eksctl
run: |
Expand All @@ -59,7 +59,8 @@ jobs:
NUMBER_OF_NODES: 3
AWS_REGION: us-west-1
run: |
eksctl create cluster --name ${{ env.ENV_ID }}-${{ matrix.environment }} --region ${{ env.AWS_REGION }} --nodes {{ env.NUMBER_OF_NODES }}
eksctl create cluster --name ${{ env.ENV_ID }}-${{ matrix.environment }} --region ${{ env.AWS_REGION }} --nodes ${{ env.NUMBER_OF_NODES }} --with-oidc
aws eks --region ${{ env.AWS_REGION }} update-kubeconfig --name ${{ env.ENV_ID }}-${{ matrix.environment }}
- name: Label Nodes
run: |
Expand Down
5 changes: 5 additions & 0 deletions charts/logzio-k8s-events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ kubectl get nodes -o json | jq ".items[]|{name:.metadata.name, taints:.spec.tain


## Change log
- **0.0.6**:
- Upgrade `logzio-k8s-events` to v0.0.3
- Upgrade GoLang version to `v1.22.3`
- Upgrade docker image to `alpine:3.20`
- Upgrade GoLang docker image to `golang:1.22.3-alpine3.20`
- **0.0.5**:
- Remove the duplicate label `app.kubernetes.io/managed-by` @philwelz
- **0.0.4**:
Expand Down
8 changes: 4 additions & 4 deletions charts/logzio-monitoring/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: logzio-monitoring
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.
type: application
version: 6.0.6
version: 6.0.7



Expand All @@ -18,19 +18,19 @@ dependencies:
repository: "https://logzio.github.io/logzio-helm/"
condition: metricsOrTraces.enabled
- name: logzio-trivy
version: "0.3.2"
version: "0.3.3"
repository: "https://logzio.github.io/logzio-helm/"
condition: securityReport.enabled
- name: opencost
version: "1.3.0"
repository: "https://opencost.github.io/opencost-helm-chart"
condition: finops.enabled
- name: logzio-k8s-events
version: "0.0.5"
version: "0.0.6"
repository: "https://logzio.github.io/logzio-helm/"
condition: deployEvents.enabled
- name: logzio-logs-collector
version: "1.0.5"
version: "1.0.6"
repository: "https://logzio.github.io/logzio-helm/"
condition: logs.enabled
maintainers:
Expand Down
22 changes: 22 additions & 0 deletions charts/logzio-monitoring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,22 @@ There are two possible approaches to the upgrade you can choose from:
## Changelog
- **6.0.7**:
- Upgrade `logzio-logs-collector` chart to `v1.0.6`
- Added `varlogcontainers` volume and volume mounts
- Added new `container` operator instead of complex operator sequence
- Remove default resources `limits`
- Add default resources `requests`
- Upgrade `logzio-k8s-events` chart to `v0.0.6`
- Upgrade `logzio-k8s-events` to `v0.0.3`
- Upgrade GoLang version to `v1.22.3`
- Upgrade docker image to `alpine:3.20`
- Upgrade GoLang docker image to `golang:1.22.3-alpine3.20`
- Upgrade `logzio-trivy` chart to `0.3.3`
- Upgrade to image `logzio/trivy-to-logzio:0.3.3`.
- Upgrade python version to 3.12.5.
- Re-build image to include the latest version of git(CVE-2024-32002).
- Bump Trivy-Operator chart version to `0.24.0`.
- **6.0.6**:
- Upgrade `logzio-k8s-telemetry` chart to `v4.2.7`
- Fix `cluster-admin` cluster role binding creation condition
Expand Down Expand Up @@ -254,6 +270,12 @@ There are two possible approaches to the upgrade you can choose from:
- **6.0.0**:
- **Breaking changes**:
- Make `logzio-logs-collector` default subchart for logging instead of `logzio-fluentd`
<details>
<summary markdown="span"> Expand to check old versions </summary>
- **5.3.6**:
- Upgrade `logzio-k8s-telemetry` version to `4.2.3`:
- Disable Kubernetes objects receiver by default.
Expand Down

0 comments on commit 5a1f13d

Please sign in to comment.