Jelajahi Sumber

Publish new changes in catalog

sonicaj 1 tahun lalu
induk
melakukan
3fca40e7fc
32 mengubah file dengan 15 tambahan dan 4 penghapusan
  1. 0 0
      community/gitea/1.1.21/Chart.lock
  2. 1 1
      community/gitea/1.1.21/Chart.yaml
  3. 0 0
      community/gitea/1.1.21/README.md
  4. 0 0
      community/gitea/1.1.21/app-readme.md
  5. 0 0
      community/gitea/1.1.21/charts/common-1.2.9.tgz
  6. 1 0
      community/gitea/1.1.21/ci/basic-values.yaml
  7. 0 0
      community/gitea/1.1.21/ci/https-values.yaml
  8. 0 0
      community/gitea/1.1.21/ix_values.yaml
  9. 0 0
      community/gitea/1.1.21/metadata.yaml
  10. 0 0
      community/gitea/1.1.21/migrations/migrate
  11. 11 1
      community/gitea/1.1.21/questions.yaml
  12. 0 0
      community/gitea/1.1.21/templates/NOTES.txt
  13. 1 1
      community/gitea/1.1.21/templates/_configuration.tpl
  14. 0 0
      community/gitea/1.1.21/templates/_gitea.tpl
  15. 0 0
      community/gitea/1.1.21/templates/_portal.tpl
  16. 0 0
      community/gitea/1.1.21/templates/_postgres.tpl
  17. 0 0
      community/gitea/1.1.21/templates/common.yaml
  18. 0 0
      community/tdarr/1.2.6/Chart.lock
  19. 1 1
      community/tdarr/1.2.6/Chart.yaml
  20. 0 0
      community/tdarr/1.2.6/README.md
  21. 0 0
      community/tdarr/1.2.6/app-readme.md
  22. 0 0
      community/tdarr/1.2.6/charts/common-1.2.9.tgz
  23. 0 0
      community/tdarr/1.2.6/ci/basic-values.yaml
  24. 0 0
      community/tdarr/1.2.6/ci/no-internal-node-values.yaml
  25. 0 0
      community/tdarr/1.2.6/ix_values.yaml
  26. 0 0
      community/tdarr/1.2.6/metadata.yaml
  27. 0 0
      community/tdarr/1.2.6/migrations/migrate
  28. 0 0
      community/tdarr/1.2.6/questions.yaml
  29. 0 0
      community/tdarr/1.2.6/templates/NOTES.txt
  30. 0 0
      community/tdarr/1.2.6/templates/_portal.tpl
  31. 0 0
      community/tdarr/1.2.6/templates/_tdarr.tpl
  32. 0 0
      community/tdarr/1.2.6/templates/common.yaml

+ 0 - 0
community/gitea/1.1.20/Chart.lock → community/gitea/1.1.21/Chart.lock


+ 1 - 1
community/gitea/1.1.20/Chart.yaml → community/gitea/1.1.21/Chart.yaml

@@ -3,7 +3,7 @@ description: Gitea - Git with a cup of tea
 annotations:
   title: Gitea
 type: application
-version: 1.1.20
+version: 1.1.21
 apiVersion: v2
 appVersion: 1.22.0
 kubeVersion: '>=1.16.0-0'

+ 0 - 0
community/gitea/1.1.20/README.md → community/gitea/1.1.21/README.md


+ 0 - 0
community/gitea/1.1.20/app-readme.md → community/gitea/1.1.21/app-readme.md


+ 0 - 0
community/gitea/1.1.20/charts/common-1.2.9.tgz → community/gitea/1.1.21/charts/common-1.2.9.tgz


+ 1 - 0
community/gitea/1.1.20/ci/basic-values.yaml → community/gitea/1.1.21/ci/basic-values.yaml

@@ -13,3 +13,4 @@ giteaStorage:
 
 giteaNetwork:
   rootURL: http://localhost:30000
+  externalSshPort: 22

+ 0 - 0
community/gitea/1.1.20/ci/https-values.yaml → community/gitea/1.1.21/ci/https-values.yaml


+ 0 - 0
community/gitea/1.1.20/ix_values.yaml → community/gitea/1.1.21/ix_values.yaml


+ 0 - 0
community/gitea/1.1.20/metadata.yaml → community/gitea/1.1.21/metadata.yaml


+ 0 - 0
community/gitea/1.1.20/migrations/migrate → community/gitea/1.1.21/migrations/migrate


+ 11 - 1
community/gitea/1.1.20/questions.yaml → community/gitea/1.1.21/questions.yaml

@@ -21,7 +21,6 @@ portals:
     path: "$kubernetes-resource_configmap_portal_path"
 
 questions:
-
   - variable: giteaConfig
     label: ""
     group: Gitea Configuration
@@ -105,6 +104,17 @@ questions:
             min: 9000
             max: 65535
             required: true
+        - variable: externalSshPort
+          label: External SSH Port
+          description: |
+            The ssh port that Gitea will be available at externally.</br>
+            Leave empty to use the same port as the ssh port.
+          schema:
+            type: int
+            "null": true
+            default: null
+            min: 9000
+            max: 65535
         - variable: hostNetwork
           label: Host Network
           description: |

+ 0 - 0
community/gitea/1.1.20/templates/NOTES.txt → community/gitea/1.1.21/templates/NOTES.txt


+ 1 - 1
community/gitea/1.1.20/templates/_configuration.tpl → community/gitea/1.1.21/templates/_configuration.tpl

@@ -45,7 +45,7 @@ configmap:
     data:
       {{ $protocol := "http" }}
       GITEA__server__HTTP_PORT: {{ .Values.giteaNetwork.webPort | quote }}
-      GITEA__server__SSH_PORT: {{ .Values.giteaNetwork.sshPort | quote }}
+      GITEA__server__SSH_PORT: {{ .Values.giteaNetwork.externalSshPort | default .Values.giteaNetwork.sshPort | quote }}
       GITEA__server__SSH_LISTEN_PORT: {{ .Values.giteaNetwork.sshPort | quote }}
       GITEA__server__ROOT_URL: {{ .Values.giteaNetwork.rootURL | quote }}
       {{ if .Values.giteaNetwork.certificateID }}

+ 0 - 0
community/gitea/1.1.20/templates/_gitea.tpl → community/gitea/1.1.21/templates/_gitea.tpl


+ 0 - 0
community/gitea/1.1.20/templates/_portal.tpl → community/gitea/1.1.21/templates/_portal.tpl


+ 0 - 0
community/gitea/1.1.20/templates/_postgres.tpl → community/gitea/1.1.21/templates/_postgres.tpl


+ 0 - 0
community/gitea/1.1.20/templates/common.yaml → community/gitea/1.1.21/templates/common.yaml


+ 0 - 0
community/tdarr/1.2.5/Chart.lock → community/tdarr/1.2.6/Chart.lock


+ 1 - 1
community/tdarr/1.2.5/Chart.yaml → community/tdarr/1.2.6/Chart.yaml

@@ -3,7 +3,7 @@ description: Tdarr is a Distributed Transcoding System
 annotations:
   title: Tdarr
 type: application
-version: 1.2.5
+version: 1.2.6
 apiVersion: v2
 appVersion: 2.17.01
 kubeVersion: '>=1.16.0-0'

+ 0 - 0
community/tdarr/1.2.5/README.md → community/tdarr/1.2.6/README.md


+ 0 - 0
community/tdarr/1.2.5/app-readme.md → community/tdarr/1.2.6/app-readme.md


+ 0 - 0
community/tdarr/1.2.5/charts/common-1.2.9.tgz → community/tdarr/1.2.6/charts/common-1.2.9.tgz


+ 0 - 0
community/tdarr/1.2.5/ci/basic-values.yaml → community/tdarr/1.2.6/ci/basic-values.yaml


+ 0 - 0
community/tdarr/1.2.5/ci/no-internal-node-values.yaml → community/tdarr/1.2.6/ci/no-internal-node-values.yaml


+ 0 - 0
community/tdarr/1.2.5/ix_values.yaml → community/tdarr/1.2.6/ix_values.yaml


+ 0 - 0
community/tdarr/1.2.5/metadata.yaml → community/tdarr/1.2.6/metadata.yaml


+ 0 - 0
community/tdarr/1.2.5/migrations/migrate → community/tdarr/1.2.6/migrations/migrate


+ 0 - 0
community/tdarr/1.2.5/questions.yaml → community/tdarr/1.2.6/questions.yaml


+ 0 - 0
community/tdarr/1.2.5/templates/NOTES.txt → community/tdarr/1.2.6/templates/NOTES.txt


+ 0 - 0
community/tdarr/1.2.5/templates/_portal.tpl → community/tdarr/1.2.6/templates/_portal.tpl


+ 0 - 0
community/tdarr/1.2.5/templates/_tdarr.tpl → community/tdarr/1.2.6/templates/_tdarr.tpl


+ 0 - 0
community/tdarr/1.2.5/templates/common.yaml → community/tdarr/1.2.6/templates/common.yaml