Publish new changes in catalog

This commit is contained in:
sonicaj
2024-01-23 11:03:33 +00:00
parent aa080ee79a
commit b3d2a9e997
15 changed files with 16 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ description: Emby Server
annotations:
title: Emby Server
type: application
version: 1.0.29
version: 1.0.30
apiVersion: v2
appVersion: 4.7.14.0
kubeVersion: '>=1.16.0-0'

View File

@@ -1,6 +1,19 @@
{{ include "common.storage.hostPathValidate" .Values }}
{{ include "common.deployment.common_config" . | nindent 0 }}
spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "common.names.fullname" . }}-emby
labels:
app.kubernetes.io/name: {{ template "common.names.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
replicas: {{ (default 1 .Values.replicas) }}
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/name: {{ template "common.names.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
template: {{ include "common.deployment.pod.metadata" . | nindent 4 }}
spec:
{{- if .Values.hostNetwork }}