Skip to content

Commit e716263

Browse files
Bump up helm chart to 0.6.0 (burningalchemist#562)
1 parent cb883e0 commit e716263

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: sql-exporter
33
description: Database-agnostic SQL exporter for Prometheus
44
type: application
5-
version: 0.5.1
6-
appVersion: 0.14.4
5+
version: 0.6.0
6+
appVersion: 0.15.0
77
keywords:
88
- exporter
99
- servicemonitor

helm/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sql-exporter
22

3-
![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)
3+
![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)
44

55
Database-agnostic SQL exporter for Prometheus
66

@@ -40,7 +40,7 @@ helm install sql_exporter/sql-exporter
4040
| service.labels | object | `{}` | Service labels |
4141
| service.annotations | object | `{}` | Service annotations |
4242
| extraContainers | object | `{}` | Arbitrary sidecar containers list |
43-
| 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 |
43+
| 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. |
4444
| serviceAccount.annotations | object | `{}` | Annotations to add to the Service Account |
4545
| resources | object | `{}` | Resource limits and requests for the application controller pods |
4646
| podLabels | object | `{}` | Pod labels |
@@ -64,6 +64,7 @@ helm install sql_exporter/sql-exporter
6464
|-----|------|---------|-------------|
6565
| config.global.scrape_timeout | string | `"10s"` | Scrape timeout |
6666
| config.global.scrape_timeout_offset | string | `"500ms"` | Scrape timeout offset. Must be strictly positive. |
67+
| config.global.scrape_error_drop_interval | string | `"0s"` | Interval between dropping scrape_errors_total metric: by default the metric is persistent. |
6768
| config.global.min_interval | string | `"0s"` | Minimum interval between collector runs. |
6869
| config.global.max_connections | int | `3` | Number of open connections. |
6970
| config.global.max_idle_connections | int | `3` | Number of idle connections. |

helm/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ config:
113113
scrape_timeout: 10s
114114
# -- Scrape timeout offset. Must be strictly positive.
115115
scrape_timeout_offset: 500ms
116+
# -- Interval between dropping scrape_errors_total metric: by default the metric is persistent.
117+
scrape_error_drop_interval: 0s
116118
# -- Minimum interval between collector runs.
117119
min_interval: 0s
118120
# -- Number of open connections.

0 commit comments

Comments
 (0)