Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CP-26389: More release notes for 1.0.1 #174

Merged
merged 2 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion charts/cloudzero-agent/docs/releases/1.0.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [Release 1.0.1](https://github.com/Cloudzero/cloudzero-charts/compare/1.0.0...1.0.1) (2025-03-02)

This release fixes two issues relating to template rendering and TLS certificate generation, as well as adding documentation for Istio enabled clusters.
This release fixes two issues relating to template rendering and TLS certificate generation, as well as adding documentation for Istio enabled clusters. In addition, some other bug fixes around prometheus metrics, logging, and sqlite were added.

### Upgrade Steps
Upgrade using the following command:
Expand All @@ -11,6 +11,10 @@ helm upgrade --install <RELEASE_NAME> cloudzero/cloudzero-agent -n <NAMESPACE> -
### Bug Fixes
* **Webhook Resource Names Trimmed Appropriately:** Fixes an issue in which the name used by webhook resources adds a suffix after trimming, which can potentially allow resource names that violate Kubernetes naming rules.
* **Certificate Generation Runs For All Webhook Configuration Changes:** Fixes an issue in which the TLS certificate generation initialization Job does not run if a `ValidatingWebhookConfiguration` is created after initial installation.
* **Invalid Prometheus Metric Label Name:** Fixes an issue where supplying an invalid label name to a Prometheus metric causes a panic.
* **Utilization of Default Kubernetes Logger:** Removes the last utilization of the default Kubernetes logger, which causes logging levels defined in the configuration to not be respected.

### Improvements
* **Shorter TTL for `init-cert` Job:** The `init-cert` Job is now cleaned up after 5 seconds, so that repeated installations regenerate certificates as needed.
* **Improvements to SQLite Testing:** The SQLite connection string was edited for improved clarity, and a concurrency test was added.
* **Various Logging Changes:** Some logging messages were downgraded from `info` to `debug`.
2 changes: 1 addition & 1 deletion charts/cloudzero-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ insightsController:
# imagePullSecrets: []
image:
repository: ghcr.io/cloudzero/cloudzero-insights-controller/cloudzero-insights-controller
tag: 0.1.1
tag: 0.1.2
pullPolicy: Always
port: 8443
read_timeout: 10s
Expand Down