Prechádzať zdrojové kódy

Move emby to ix-dev (#1043)

* move emby to ix-dev

* update lock

* indent lists
Stavros Kois 2 rokov pred
rodič
commit
44d2241a0d

+ 0 - 6
charts/emby/1.0.16/Chart.lock

@@ -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"

+ 0 - 16
charts/emby/1.0.16/Chart.yaml

@@ -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

BIN
charts/emby/1.0.16/charts/common-2207.0.0.tgz


+ 0 - 6
charts/emby/1.0.16/requirements.lock

@@ -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"

+ 0 - 21
charts/emby/1.0.16/templates/tests/deployment-check.yaml

@@ -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

+ 0 - 0
charts/emby/1.0.16/.helmignore → library/ix-dev/charts/emby/.helmignore


+ 6 - 0
library/ix-dev/charts/emby/Chart.lock

@@ -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"

+ 23 - 0
library/ix-dev/charts/emby/Chart.yaml

@@ -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

+ 0 - 0
charts/emby/1.0.16/README.md → library/ix-dev/charts/emby/README.md


+ 0 - 0
charts/emby/1.0.16/app-readme.md → library/ix-dev/charts/emby/app-readme.md


BIN
library/ix-dev/charts/emby/charts/common-2207.0.0.tgz


+ 0 - 4
charts/emby/1.0.16/test_values.yaml → library/ix-dev/charts/emby/ci/test-values.yaml

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

+ 0 - 0
charts/emby/item.yaml → library/ix-dev/charts/emby/item.yaml


+ 0 - 0
charts/emby/1.0.16/questions.yaml → library/ix-dev/charts/emby/questions.yaml


+ 0 - 0
charts/emby/1.0.16/templates/NOTES.txt → library/ix-dev/charts/emby/templates/NOTES.txt


+ 13 - 5
charts/emby/1.0.16/templates/deployment.yaml → library/ix-dev/charts/emby/templates/deployment.yaml

@@ -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 }}

+ 0 - 0
charts/emby/1.0.16/templates/portal.tpl → library/ix-dev/charts/emby/templates/portal.tpl


+ 0 - 0
charts/emby/1.0.16/templates/service-tcp.yaml → library/ix-dev/charts/emby/templates/service-tcp.yaml


+ 0 - 0
charts/emby/1.0.16/templates/service-udp.yaml → library/ix-dev/charts/emby/templates/service-udp.yaml


+ 0 - 0
charts/emby/upgrade_info.json → library/ix-dev/charts/emby/upgrade_info.json


+ 0 - 0
charts/emby/upgrade_strategy → library/ix-dev/charts/emby/upgrade_strategy


+ 0 - 0
charts/emby/1.0.16/ix_values.yaml → library/ix-dev/charts/emby/values.yaml