mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
add podannotations to radarr (#69)
This commit is contained in:
parent
fde5379871
commit
0902903bae
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
appVersion: amd64-v0.2.0.1344-ls17
|
appVersion: amd64-v0.2.0.1344-ls17
|
||||||
description: Radarr is a movie downloading client
|
description: Radarr is a movie downloading client
|
||||||
name: radarr
|
name: radarr
|
||||||
version: 2.0.7
|
version: 2.0.8
|
||||||
keywords:
|
keywords:
|
||||||
- radarr
|
- radarr
|
||||||
- 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 "radarr.name" . }}
|
app.kubernetes.io/name: {{ include "radarr.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