mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
[tautulli] add deployment annotations (#175)
This commit is contained in:
parent
3bf3e6d66b
commit
1220c61773
@ -1,8 +1,8 @@
|
||||
apiVersion: v1
|
||||
appVersion: v2.1.42-ls34
|
||||
appVersion: v2.1.44-ls34
|
||||
description: A Python based monitoring and tracking tool for Plex Media Server.
|
||||
name: tautulli
|
||||
version: 2.0.2
|
||||
version: 2.1.0
|
||||
keywords:
|
||||
- tautulli
|
||||
- plex
|
||||
|
@ -69,6 +69,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 "tautulli.fullname" . }}
|
||||
{{- if .Values.deploymentAnnotations }}
|
||||
annotations:
|
||||
{{- range $key, $value := .Values.deploymentAnnotations }}
|
||||
{{ $key }}: {{ $value | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
labels:
|
||||
app.kubernetes.io/name: {{ include "tautulli.name" . }}
|
||||
helm.sh/chart: {{ include "tautulli.chart" . }}
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
image:
|
||||
repository: linuxserver/tautulli
|
||||
tag: v2.1.42-ls34
|
||||
tag: v2.1.44-ls34
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||
@ -103,3 +103,5 @@ tolerations: []
|
||||
affinity: {}
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
deploymentAnnotations: {}
|
||||
|
Loading…
Reference in New Issue
Block a user