Ver código fonte

Publish new changes in catalog

sonicaj 1 ano atrás
pai
commit
ed5f507535

+ 0 - 0
community/qbittorrent/1.2.10/Chart.lock → community/qbittorrent/1.2.11/Chart.lock


+ 1 - 1
community/qbittorrent/1.2.10/Chart.yaml → community/qbittorrent/1.2.11/Chart.yaml

@@ -4,7 +4,7 @@ description: The qBittorrent project aims to provide an open-source software alt
 annotations:
   title: qBittorrent
 type: application
-version: 1.2.10
+version: 1.2.11
 apiVersion: v2
 appVersion: 4.6.4
 kubeVersion: '>=1.16.0-0'

+ 0 - 0
community/qbittorrent/1.2.10/README.md → community/qbittorrent/1.2.11/README.md


+ 0 - 0
community/qbittorrent/1.2.10/app-readme.md → community/qbittorrent/1.2.11/app-readme.md


+ 0 - 0
community/qbittorrent/1.2.10/charts/common-1.2.9.tgz → community/qbittorrent/1.2.11/charts/common-1.2.9.tgz


+ 0 - 0
community/qbittorrent/1.2.10/ci/basic-values.yaml → community/qbittorrent/1.2.11/ci/basic-values.yaml


+ 0 - 0
community/qbittorrent/1.2.10/ci/extra-values.yaml → community/qbittorrent/1.2.11/ci/extra-values.yaml


+ 0 - 0
community/qbittorrent/1.2.10/ci/hostNet-values.yaml → community/qbittorrent/1.2.11/ci/hostNet-values.yaml


+ 1 - 0
community/qbittorrent/1.2.10/ix_values.yaml → community/qbittorrent/1.2.11/ix_values.yaml

@@ -14,6 +14,7 @@ qbitConfig:
 qbitNetwork:
   webPort: 30024
   btPort: 50413
+  useHttpsProbe: false
   hostNetwork: false
 
 qbitRunAs:

+ 0 - 0
community/qbittorrent/1.2.10/metadata.yaml → community/qbittorrent/1.2.11/metadata.yaml


+ 0 - 0
community/qbittorrent/1.2.10/migrations/migrate → community/qbittorrent/1.2.11/migrations/migrate


+ 9 - 0
community/qbittorrent/1.2.10/questions.yaml → community/qbittorrent/1.2.11/questions.yaml

@@ -97,6 +97,15 @@ questions:
             min: 9000
             max: 65535
             required: true
+        - variable: useHttpsProbe
+          label: Use HTTPS Probe
+          description: |
+            Use HTTPS probe for the qBittorrent Web UI. </br>
+            This will ONLY affect the probes, only enable this if you
+            configured HTTPS in the qBittorrent Web UI.
+          schema:
+            type: boolean
+            default: false
         - variable: hostNetwork
           label: Host Network
           description: |

+ 0 - 0
community/qbittorrent/1.2.10/templates/NOTES.txt → community/qbittorrent/1.2.11/templates/NOTES.txt


+ 0 - 0
community/qbittorrent/1.2.10/templates/_configuration.tpl → community/qbittorrent/1.2.11/templates/_configuration.tpl


+ 0 - 0
community/qbittorrent/1.2.10/templates/_portal.tpl → community/qbittorrent/1.2.11/templates/_portal.tpl


+ 6 - 3
community/qbittorrent/1.2.10/templates/_qbittorrent.tpl → community/qbittorrent/1.2.11/templates/_qbittorrent.tpl

@@ -25,19 +25,22 @@ workload:
             - configMapRef:
                 name: qbit-config
           probes:
+            {{- if not (hasKey .Values.qbitNetwork "useHttpsProbe") -}}
+              {{- $_ := set .Values.qbitNetwork "useHttpsProbe" false -}}
+            {{- end }}
             liveness:
               enabled: true
-              type: http
+              type: {{ ternary "https" "http" .Values.qbitNetwork.useHttpsProbe }}
               port: "{{ .Values.qbitNetwork.webPort }}"
               path: /
             readiness:
               enabled: true
-              type: http
+              type: {{ ternary "https" "http" .Values.qbitNetwork.useHttpsProbe }}
               port: "{{ .Values.qbitNetwork.webPort }}"
               path: /
             startup:
               enabled: true
-              type: http
+              type: {{ ternary "https" "http" .Values.qbitNetwork.useHttpsProbe }}
               port: "{{ .Values.qbitNetwork.webPort }}"
               path: /
       initContainers:

+ 0 - 0
community/qbittorrent/1.2.10/templates/common.yaml → community/qbittorrent/1.2.11/templates/common.yaml