Move emby to ix-dev (#1043)

* move emby to ix-dev

* update lock

* indent lists
This commit is contained in:
Stavros Kois
2023-03-24 23:21:30 +02:00
committed by GitHub
parent 9066d7c8f4
commit 44d2241a0d
22 changed files with 42 additions and 58 deletions

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../library/common/2207.0.0
version: 2207.0.0
digest: sha256:f17f3d458ca0210a52e39da0dce35034e900b36f2040d4b19bed46a7aae91506
generated: "2022-07-28T22:31:02.894743529+05:00"

View File

@@ -1,16 +0,0 @@
apiVersion: v2
appVersion: 4.7.11.0
dependencies:
- name: common
repository: file://../../../library/common/2207.0.0
version: 2207.0.0
description: Emby Server
home: https://emby.media/
icon: https://images-na.ssl-images-amazon.com/images/I/41NwssJC1iL.png
keywords:
- emby
- media
name: emby
sources:
- https://hub.docker.com/r/emby/embyserver
version: 1.0.16

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../library/common/2207.0.0
version: 2207.0.0
digest: sha256:47115d9b91afe42c8537dcf0fd8224f2f7d1c775f9ff860efa68a6b57d17d1c0
generated: "2021-12-06T21:24:36.674776+05:00"

View File

@@ -1,21 +0,0 @@
{{- $serviceName := (include "common.names.fullname" .) -}}
apiVersion: v1
kind: Pod
metadata:
name: "{{ .Release.Name }}-emby-test"
labels:
app: {{ .Release.Name }}
release: {{ .Release.Name }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: test-curl
image: alpine/curl
imagePullPolicy: "IfNotPresent"
command:
- /bin/sh
- -ec
- |
curl --connect-timeout 5 --max-time 10 --retry 5 --retry-delay 15 --retry-max-time 90 --retry-all-errors -ksf http://{{ $serviceName }}-tcp:32496/emby/System/Ping
restartPolicy: Never

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../common/2207.0.0
version: 2207.0.0
digest: sha256:a301ba0f99ec1e08a60a7f0a0320aa02d225993572f2f056f09520f06df88b37
generated: "2023-03-21T15:08:12.743996333Z"

View File

@@ -0,0 +1,23 @@
name: emby
description: Emby Server
annotations:
title: Emby Server
type: application
version: 1.0.17
apiVersion: v2
appVersion: '4.7.11.0'
kubeVersion: '>=1.16.0-0'
maintainers:
- name: truenas
url: https://www.truenas.com/
dependencies:
- name: common
repository: file://../../../common/2207.0.0
version: 2207.0.0
home: https://emby.media/
icon: https://images-na.ssl-images-amazon.com/images/I/41NwssJC1iL.png
sources:
- https://hub.docker.com/r/emby/embyserver
keywords:
- emby
- media

Binary file not shown.

View File

@@ -12,8 +12,4 @@ extraAppVolumeMounts:
readOnly: true
gpuConfiguration: {}
hostNetwork: false
image:
pullPolicy: IfNotPresent
repository: emby/embyserver
tag: 4.7.11.0
updateStrategy: Recreate

View File

@@ -48,21 +48,29 @@ spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
httpGet:
path: /emby/System/Ping
port: 8096
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 5
periodSeconds: 15
successThreshold: 2
livenessProbe:
httpGet:
path: /emby/System/Ping
port: 8096
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 5
periodSeconds: 15
successThreshold: 1
startupProbe:
httpGet:
path: /emby/System/Ping
port: 8096
initialDelaySeconds: 5
failureThreshold: 40
periodSeconds: 15
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 2
failureThreshold: 60
successThreshold: 1
volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }}
{{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- name: extrappvolume-{{ $index }}