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