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

V0.0.29 release #49

Merged
merged 2 commits into from
Mar 7, 2024
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
2 changes: 1 addition & 1 deletion stable/cloudzero-cloudwatch-metrics/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: cloudzero-cloudwatch-metrics
description: A Helm chart to deploy cloudzero-cloudwatch-metrics project

version: 0.0.28
version: 0.0.29
appVersion: "0.0.23"

home: https://cloudzero.github.io/cloudzero-k8s-charts/
Expand Down
6 changes: 5 additions & 1 deletion stable/cloudzero-cloudwatch-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ helm upgrade --install cloudzero-cloudwatch-metrics \
--set clusterName=<Your Cluster>
```

> Note: these are helm3 commands that creates a namespace for this deployment or you can use an existing namespace.
> Note: these are helm3 commands that creates a namespace for this deployment; you can also use an existing namespace.

### Sampling Frequency

By default, the agent queries and pushes metrics every `120` seconds. This is a granular enough sampling rate to get usable metrics while keeping costs low. The potential downside is that very short lived pods will not be sampled if they are launched and terminated between sampling times. If sampling short-lived pods is desirable, the agent can be configured to record samples at shorter intervals by updating the `metricsCollectionInterval` value to one of the allowed values. **Please be aware that an increased sampling rate will cause an increase in cost, as well as increased load on the kube API**.

## Configuration

Expand Down
2 changes: 2 additions & 0 deletions stable/cloudzero-cloudwatch-metrics/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ tolerations:
# Allow CloudZero agent to run on all nodes in case of a taint
- effect: NoSchedule
operator: Exists
- effect: NoExecute
operator: Exists

affinity: {}

Expand Down
Loading