mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 15:59:09 +00:00
[ombi] add deployment annotations (#173)
* [ombi] add deployment annotations * Fix lint issue
This commit is contained in:
parent
352f2d37ec
commit
cedcd11bfe
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: 3.0.4958-ls73
|
appVersion: 3.0.5020-ls5
|
||||||
description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
|
description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
|
||||||
name: ombi
|
name: ombi
|
||||||
version: 2.0.3
|
version: 2.1.0
|
||||||
keywords:
|
keywords:
|
||||||
- ombi
|
- ombi
|
||||||
- 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 "ombi.fullname" . }}
|
name: {{ include "ombi.fullname" . }}
|
||||||
|
{{- if .Values.deploymentAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- range $key, $value := .Values.deploymentAnnotations }}
|
||||||
|
{{ $key }}: {{ $value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ include "ombi.name" . }}
|
app.kubernetes.io/name: {{ include "ombi.name" . }}
|
||||||
helm.sh/chart: {{ include "ombi.chart" . }}
|
helm.sh/chart: {{ include "ombi.chart" . }}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/ombi
|
repository: linuxserver/ombi
|
||||||
tag: 3.0.4958-ls73
|
tag: 3.0.5020-ls5
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||||
@ -104,3 +104,5 @@ tolerations: []
|
|||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
|
deploymentAnnotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user