Skip to content

Commit

Permalink
Bump up helm chart to 0.6.0 (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
burningalchemist authored Jul 9, 2024
1 parent cb883e0 commit e716263
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: sql-exporter
description: Database-agnostic SQL exporter for Prometheus
type: application
version: 0.5.1
appVersion: 0.14.4
version: 0.6.0
appVersion: 0.15.0
keywords:
- exporter
- servicemonitor
Expand Down
5 changes: 3 additions & 2 deletions helm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sql-exporter

![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.14.3](https://img.shields.io/badge/AppVersion-0.14.3-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.15.0](https://img.shields.io/badge/AppVersion-0.15.0-informational?style=flat-square)

Database-agnostic SQL exporter for Prometheus

Expand Down Expand Up @@ -40,7 +40,7 @@ helm install sql_exporter/sql-exporter
| service.labels | object | `{}` | Service labels |
| service.annotations | object | `{}` | Service annotations |
| extraContainers | object | `{}` | Arbitrary sidecar containers list |
| serviceAccount.create | bool | `true` | Specifies whether a Service Account should be created, defaults to "sql-exporter" unless overriden. Check values.yaml for all the available parameters |
| serviceAccount.create | bool | `true` | Specifies whether a Service Account should be created, creates "sql-exporter" service account if true, unless overriden. Otherwise, set to `default` if false, and custom service account name is not provided. Check all the available parameters. |
| serviceAccount.annotations | object | `{}` | Annotations to add to the Service Account |
| resources | object | `{}` | Resource limits and requests for the application controller pods |
| podLabels | object | `{}` | Pod labels |
Expand All @@ -64,6 +64,7 @@ helm install sql_exporter/sql-exporter
|-----|------|---------|-------------|
| config.global.scrape_timeout | string | `"10s"` | Scrape timeout |
| config.global.scrape_timeout_offset | string | `"500ms"` | Scrape timeout offset. Must be strictly positive. |
| config.global.scrape_error_drop_interval | string | `"0s"` | Interval between dropping scrape_errors_total metric: by default the metric is persistent. |
| config.global.min_interval | string | `"0s"` | Minimum interval between collector runs. |
| config.global.max_connections | int | `3` | Number of open connections. |
| config.global.max_idle_connections | int | `3` | Number of idle connections. |
Expand Down
2 changes: 2 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ config:
scrape_timeout: 10s
# -- Scrape timeout offset. Must be strictly positive.
scrape_timeout_offset: 500ms
# -- Interval between dropping scrape_errors_total metric: by default the metric is persistent.
scrape_error_drop_interval: 0s
# -- Minimum interval between collector runs.
min_interval: 0s
# -- Number of open connections.
Expand Down

0 comments on commit e716263

Please sign in to comment.