mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
add podannotations to sonarr (#68)
* add podannotations to sonarr * add newline at end to resolve CI issue
This commit is contained in:
parent
dd686320ac
commit
fde5379871
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
appVersion: amd64-2.0.0.5321-ls62
|
appVersion: amd64-2.0.0.5321-ls62
|
||||||
description: Sonarr is a television show downloading client
|
description: Sonarr is a television show downloading client
|
||||||
name: sonarr
|
name: sonarr
|
||||||
version: 2.0.6
|
version: 2.0.7
|
||||||
keywords:
|
keywords:
|
||||||
- sonarr
|
- sonarr
|
||||||
- usenet
|
- usenet
|
||||||
|
@ -72,6 +72,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
|||||||
| `nodeSelector` | Node labels for pod assignment | `{}` |
|
| `nodeSelector` | Node labels for pod assignment | `{}` |
|
||||||
| `tolerations` | Toleration labels for pod assignment | `[]` |
|
| `tolerations` | Toleration labels for pod assignment | `[]` |
|
||||||
| `affinity` | Affinity settings for pod assignment | `{}` |
|
| `affinity` | Affinity settings for pod assignment | `{}` |
|
||||||
|
| `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,
|
||||||
|
|
||||||
|
@ -20,6 +20,12 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ include "sonarr.name" . }}
|
app.kubernetes.io/name: {{ include "sonarr.name" . }}
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
{{- if .Values.podAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- range $key, $value := .Values.podAnnotations }}
|
||||||
|
{{ $key }}: {{ $value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
|
@ -127,3 +127,5 @@ nodeSelector: {}
|
|||||||
tolerations: []
|
tolerations: []
|
||||||
|
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
podAnnotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user