Bläddra i källkod

Update catalog information

sonicaj 2 år sedan
förälder
incheckning
56a05b9f75

+ 3 - 3
catalog.json

@@ -611,7 +611,7 @@
             "latest_version": "1.0.13",
             "latest_app_version": "2023-03-24",
             "latest_human_version": "2023-03-24_1.0.13",
-            "last_update": "2023-06-23 12:30:25",
+            "last_update": "2023-06-26 16:07:25",
             "name": "minio",
             "recommended": false,
             "title": "MinIO",
@@ -758,9 +758,9 @@
             "healthy_error": null,
             "home": "https://jellyfin.org/",
             "location": "/__w/charts/charts/community/jellyfin",
-            "latest_version": "1.0.6",
+            "latest_version": "1.0.7",
             "latest_app_version": "10.8.10",
-            "latest_human_version": "10.8.10_1.0.6",
+            "latest_human_version": "10.8.10_1.0.7",
             "last_update": "2023-06-12 13:44:39",
             "name": "jellyfin",
             "recommended": false,

+ 0 - 12
community/jellyfin/1.0.6/templates/_portal.tpl

@@ -1,12 +0,0 @@
-{{- define "jellyfin.portal" -}}
----
-apiVersion: v1
-kind: ConfigMap
-metadata:
-  name: portal
-data:
-  path: "/"
-  port: {{ .Values.jellyfinNetwork.webPort | quote }}
-  protocol: http
-  host: $node_ip
-{{- end -}}

+ 0 - 0
community/jellyfin/1.0.6/Chart.lock → community/jellyfin/1.0.7/Chart.lock


+ 1 - 1
community/jellyfin/1.0.6/Chart.yaml → community/jellyfin/1.0.7/Chart.yaml

@@ -3,7 +3,7 @@ description: Jellyfin is a Free Software Media System that puts you in control o
 annotations:
   title: Jellyfin
 type: application
-version: 1.0.6
+version: 1.0.7
 apiVersion: v2
 appVersion: '10.8.10'
 kubeVersion: '>=1.16.0-0'

+ 0 - 0
community/jellyfin/1.0.6/README.md → community/jellyfin/1.0.7/README.md


+ 0 - 0
community/jellyfin/1.0.6/app-readme.md → community/jellyfin/1.0.7/app-readme.md


+ 0 - 0
community/jellyfin/1.0.6/charts/common-1.0.8.tgz → community/jellyfin/1.0.7/charts/common-1.0.8.tgz


+ 0 - 0
community/jellyfin/1.0.6/ci/basic-values.yaml → community/jellyfin/1.0.7/ci/basic-values.yaml


+ 0 - 0
community/jellyfin/1.0.6/ci/extra-values.yaml → community/jellyfin/1.0.7/ci/extra-values.yaml


+ 0 - 0
community/jellyfin/1.0.6/ci/hostNet-values.yaml → community/jellyfin/1.0.7/ci/hostNet-values.yaml


+ 0 - 0
community/jellyfin/1.0.6/ix_values.yaml → community/jellyfin/1.0.7/ix_values.yaml


+ 0 - 0
community/jellyfin/1.0.6/metadata.yaml → community/jellyfin/1.0.7/metadata.yaml


+ 0 - 0
community/jellyfin/1.0.6/migrations/migrate → community/jellyfin/1.0.7/migrations/migrate


+ 9 - 8
community/jellyfin/1.0.6/questions.yaml → community/jellyfin/1.0.7/questions.yaml

@@ -85,23 +85,24 @@ questions:
     schema:
       type: dict
       attrs:
+        - variable: hostNetwork
+          label: Host Network
+          description: |
+            Bind to the host network. While it's recommended to keep this disabled.</br>
+            It's required for autodiscovery to work.
+          schema:
+            type: boolean
+            default: false
         - variable: webPort
           label: Web Port
           description: The port for the Jellyfin Web UI.
           schema:
             type: int
             default: 30013
+            show_if: [["hostNetwork", "=", false]]
             min: 9000
             max: 65535
             required: true
-        - variable: hostNetwork
-          label: Host Network
-          description: |
-            Bind to the host network. While it's recommended to keep this disabled.</br>
-            It's required for autodiscovery to work.
-          schema:
-            type: boolean
-            default: false
 
   - variable: jellyfinStorage
     label: ""

+ 0 - 0
community/jellyfin/1.0.6/templates/NOTES.txt → community/jellyfin/1.0.7/templates/NOTES.txt


+ 0 - 0
community/jellyfin/1.0.6/templates/_jellyfin.tpl → community/jellyfin/1.0.7/templates/_jellyfin.tpl


+ 16 - 0
community/jellyfin/1.0.7/templates/_portal.tpl

@@ -0,0 +1,16 @@
+{{- define "jellyfin.portal" -}}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: portal
+data:
+  path: "/"
+  {{- $port := .Values.jellyfinNetwork.webPort -}}
+  {{- if .Values.jellyfinNetwork.hostNetwork -}}
+    {{- $port = 8096 -}}
+  {{- end }}
+  port: {{ $port | quote }}
+  protocol: http
+  host: $node_ip
+{{- end -}}

+ 0 - 0
community/jellyfin/1.0.6/templates/common.yaml → community/jellyfin/1.0.7/templates/common.yaml