mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
adding pod annotations to uptimerobot chart (#79)
Signed-off-by: Jeff Billimek <jeff@billimek.com>
This commit is contained in:
parent
efd1200716
commit
897ba1e981
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: uptimerobot
|
name: uptimerobot
|
||||||
version: 1.1.10
|
version: 1.1.11
|
||||||
appVersion: 1.1.0
|
appVersion: 1.1.0
|
||||||
description: A tool to get statistics from Uptime Robot and log it into InfluxDB
|
description: A tool to get statistics from Uptime Robot and log it into InfluxDB
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -53,6 +53,8 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
|||||||
| `config.influxdb.username` | InfluxDB username | `` |
|
| `config.influxdb.username` | InfluxDB username | `` |
|
||||||
| `config.influxdb.password` | InfluxDB password | `` |
|
| `config.influxdb.password` | InfluxDB password | `` |
|
||||||
| `config.uptimerobot.apikey` | uptimerobot API key (REQUIRED) | `someapikey` |
|
| `config.uptimerobot.apikey` | uptimerobot API key (REQUIRED) | `someapikey` |
|
||||||
|
| `podAnnotations` | Key-value pairs to add as pod annotations | `{}` |
|
||||||
|
|
||||||
|
|
||||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||||
|
|
||||||
|
@ -7,6 +7,12 @@ metadata:
|
|||||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
||||||
release: {{ .Release.Name }}
|
release: {{ .Release.Name }}
|
||||||
heritage: {{ .Release.Service }}
|
heritage: {{ .Release.Service }}
|
||||||
|
{{- if .Values.podAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- range $key, $value := .Values.podAnnotations }}
|
||||||
|
{{ $key }}: {{ $value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
|
@ -34,3 +34,5 @@ config:
|
|||||||
apikey: someapikey
|
apikey: someapikey
|
||||||
# logs_limit: 100
|
# logs_limit: 100
|
||||||
# response_times_limit: 100
|
# response_times_limit: 100
|
||||||
|
|
||||||
|
podAnnotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user