mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
added deployment annotations and bumped chart (#146)
Signed-off-by: Ryan Holt <ryan@ryanholt.net>
This commit is contained in:
parent
faef189636
commit
e73b9697e3
@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: amd64-v0.2.0.1344-ls17
|
||||
description: Radarr is a movie downloading client
|
||||
name: radarr
|
||||
version: 3.0.0
|
||||
version: 3.0.1
|
||||
keywords:
|
||||
- radarr
|
||||
- usenet
|
||||
|
@ -79,6 +79,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
||||
| `tolerations` | Toleration labels for pod assignment | `[]` |
|
||||
| `affinity` | Affinity settings for pod assignment | `{}` |
|
||||
| `podAnnotations` | Key-value pairs to add as pod annotations | `{}` |
|
||||
| `deploymentAnnotations` | Key-value pairs to add as deployment annotations | `{}` |
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
|
@ -2,6 +2,12 @@ apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ include "radarr.fullname" . }}
|
||||
{{- if .Values.deploymentAnnotations }}
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.deploymentAnnotations }}
|
||||
{{ $key }}: {{ $value | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
labels:
|
||||
app.kubernetes.io/name: {{ include "radarr.name" . }}
|
||||
helm.sh/chart: {{ include "radarr.chart" . }}
|
||||
|
@ -140,3 +140,5 @@ tolerations: []
|
||||
affinity: {}
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
deploymentAnnotations: {}
|
||||
|
Loading…
Reference in New Issue
Block a user