Skip to content
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 helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sql-exporter
description: Database-agnostic SQL exporter for Prometheus
type: application
version: 0.11.1
version: 0.12.0
appVersion: 0.17.1
keywords:
- exporter
Expand Down
1 change: 1 addition & 0 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ as an example.
| ingress.tls.crt | string | `""` | Ingress tls.crt, required if you don't have secret name. |
| ingress.tls.key | string | `""` | Ingress tls.key, required if you don't have secret name. |
| extraContainers | object | `{}` | Arbitrary sidecar containers list |
| initContainers | object | `{}` | Arbitrary sidecar containers list for 1.29+ kubernetes |
| 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 |
| livenessProbe.initialDelaySeconds | int | `5` | |
Expand Down
4 changes: 4 additions & 0 deletions helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ spec:
- name: {{ $v.name }}
{{- toYaml $v.volume | nindent 10 }}
{{- end }}
{{- if .Values.initContainers }}
initContainers:
{{ toYaml .Values.initContainers | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down
4 changes: 4 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ extraContainers: {}
# args:
# resources:
# requests:{}

# -- Arbitrary sidecar containers list for 1.29+ kubernetes
initContainers: {}

serviceAccount:
# -- 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
Expand Down
Loading