mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-03-13 04:26:06 +00:00
adding pod annotations to comcast chart (#76)
Signed-off-by: Jeff Billimek <jeff@billimek.com>
This commit is contained in:
parent
f8d654a7d7
commit
1ed56e9f26
@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: comcast
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
appVersion: 1.0.0
|
||||
description: periodic comcast data usage checks and save the results to InfluxDB
|
||||
keywords:
|
||||
|
@ -55,6 +55,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
||||
| `config.influxdb.ssl` | InfluxDB connection using SSL | `false` |
|
||||
| `config.comcast.username` | Comcast website login usernma | `someuser` |
|
||||
| `config.comcast.password` | Comcast website login password | `somepassword` |
|
||||
| `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,
|
||||
|
||||
|
@ -7,6 +7,12 @@ metadata:
|
||||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
{{- if .Values.podAnnotations }}
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.podAnnotations }}
|
||||
{{ $key }}: {{ $value | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
|
@ -34,3 +34,5 @@ config:
|
||||
# username/password are mandatory and must be populated
|
||||
username: someuser
|
||||
password: somepassword
|
||||
|
||||
podAnnotations: {}
|
||||
|
Loading…
Reference in New Issue
Block a user