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
|
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: 3.0.0
|
version: 3.0.1
|
||||||
keywords:
|
keywords:
|
||||||
- radarr
|
- radarr
|
||||||
- usenet
|
- usenet
|
||||||
|
@ -79,6 +79,7 @@ The following tables lists the configurable parameters of the Sentry chart and t
|
|||||||
| `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 | `{}` |
|
| `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,
|
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
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "radarr.fullname" . }}
|
name: {{ include "radarr.fullname" . }}
|
||||||
|
{{- if .Values.deploymentAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- range $key, $value := .Values.deploymentAnnotations }}
|
||||||
|
{{ $key }}: {{ $value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ include "radarr.name" . }}
|
app.kubernetes.io/name: {{ include "radarr.name" . }}
|
||||||
helm.sh/chart: {{ include "radarr.chart" . }}
|
helm.sh/chart: {{ include "radarr.chart" . }}
|
||||||
|
@ -140,3 +140,5 @@ tolerations: []
|
|||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
|
deploymentAnnotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user