瀏覽代碼

Publish new changes in catalog

sonicaj 1 年之前
父節點
當前提交
41f8760980
共有 33 個文件被更改,包括 45 次插入10 次删除
  1. 0 0
      community/nginx-proxy-manager/1.0.29/Chart.lock
  2. 1 1
      community/nginx-proxy-manager/1.0.29/Chart.yaml
  3. 0 0
      community/nginx-proxy-manager/1.0.29/README.md
  4. 0 0
      community/nginx-proxy-manager/1.0.29/app-readme.md
  5. 0 0
      community/nginx-proxy-manager/1.0.29/charts/common-1.2.9.tgz
  6. 0 0
      community/nginx-proxy-manager/1.0.29/ci/basic-values.yaml
  7. 3 0
      community/nginx-proxy-manager/1.0.29/ix_values.yaml
  8. 0 0
      community/nginx-proxy-manager/1.0.29/metadata.yaml
  9. 9 0
      community/nginx-proxy-manager/1.0.29/migrations/migrate
  10. 22 0
      community/nginx-proxy-manager/1.0.29/questions.yaml
  11. 0 0
      community/nginx-proxy-manager/1.0.29/templates/NOTES.txt
  12. 5 4
      community/nginx-proxy-manager/1.0.29/templates/_npm.tpl
  13. 0 0
      community/nginx-proxy-manager/1.0.29/templates/_portal.tpl
  14. 0 0
      community/nginx-proxy-manager/1.0.29/templates/common.yaml
  15. 0 0
      community/unifi-controller/1.3.7/Chart.lock
  16. 2 2
      community/unifi-controller/1.3.7/Chart.yaml
  17. 0 0
      community/unifi-controller/1.3.7/README.md
  18. 0 0
      community/unifi-controller/1.3.7/app-readme.md
  19. 0 0
      community/unifi-controller/1.3.7/charts/common-1.2.9.tgz
  20. 0 0
      community/unifi-controller/1.3.7/ci/basic-values.yaml
  21. 0 0
      community/unifi-controller/1.3.7/ci/extra-values.yaml
  22. 0 0
      community/unifi-controller/1.3.7/ci/hostNet-values.yaml
  23. 0 0
      community/unifi-controller/1.3.7/ci/https-values.yaml
  24. 0 0
      community/unifi-controller/1.3.7/ix_values.yaml
  25. 0 0
      community/unifi-controller/1.3.7/metadata.yaml
  26. 0 0
      community/unifi-controller/1.3.7/migrations/migrate
  27. 3 3
      community/unifi-controller/1.3.7/questions.yaml
  28. 0 0
      community/unifi-controller/1.3.7/templates/NOTES.txt
  29. 0 0
      community/unifi-controller/1.3.7/templates/_persistence.tpl
  30. 0 0
      community/unifi-controller/1.3.7/templates/_portal.tpl
  31. 0 0
      community/unifi-controller/1.3.7/templates/_service.tpl
  32. 0 0
      community/unifi-controller/1.3.7/templates/_unifi.tpl
  33. 0 0
      community/unifi-controller/1.3.7/templates/common.yaml

+ 0 - 0
community/nginx-proxy-manager/1.0.28/Chart.lock → community/nginx-proxy-manager/1.0.29/Chart.lock


+ 1 - 1
community/nginx-proxy-manager/1.0.28/Chart.yaml → community/nginx-proxy-manager/1.0.29/Chart.yaml

@@ -3,7 +3,7 @@ description: Expose your services easily and securely
 annotations:
   title: Nginx Proxy Manager
 type: application
-version: 1.0.28
+version: 1.0.29
 apiVersion: v2
 appVersion: 2.11.1
 kubeVersion: '>=1.16.0-0'

+ 0 - 0
community/nginx-proxy-manager/1.0.28/README.md → community/nginx-proxy-manager/1.0.29/README.md


+ 0 - 0
community/nginx-proxy-manager/1.0.28/app-readme.md → community/nginx-proxy-manager/1.0.29/app-readme.md


+ 0 - 0
community/nginx-proxy-manager/1.0.28/charts/common-1.2.9.tgz → community/nginx-proxy-manager/1.0.29/charts/common-1.2.9.tgz


+ 0 - 0
community/nginx-proxy-manager/1.0.28/ci/basic-values.yaml → community/nginx-proxy-manager/1.0.29/ci/basic-values.yaml


+ 3 - 0
community/nginx-proxy-manager/1.0.28/ix_values.yaml → community/nginx-proxy-manager/1.0.29/ix_values.yaml

@@ -12,6 +12,9 @@ npmNetwork:
   webPort: 30020
   httpPort: 30021
   httpsPort: 30022
+npmID:
+  user: 568
+  group: 568
 npmStorage:
   data:
     type: ixVolume

+ 0 - 0
community/nginx-proxy-manager/1.0.28/metadata.yaml → community/nginx-proxy-manager/1.0.29/metadata.yaml


+ 9 - 0
community/nginx-proxy-manager/1.0.28/migrations/migrate → community/nginx-proxy-manager/1.0.29/migrations/migrate

@@ -16,6 +16,15 @@ def migrate(values):
 
         values[storageKey][storage] = {key: value for key, value in check_val.items() if key != 'hostPath'}
 
+    # If there is no npmID, add it defaults to
+    # 1000 to account for existing installations
+    if values.get('npmID', None) is None:
+        values.update({
+            'npmID': {
+                'user': 1000,
+                'group': 1000
+            }
+        })
 
     return values
 

+ 22 - 0
community/nginx-proxy-manager/1.0.28/questions.yaml → community/nginx-proxy-manager/1.0.29/questions.yaml

@@ -59,6 +59,28 @@ questions:
                       schema:
                         type: string
                         required: true
+  - variable: npmID
+    label: ""
+    group: User and Group Configuration
+    schema:
+      type: dict
+      attrs:
+        - variable: user
+          label: User ID
+          description: The user id that Nginx Proxy Manager files will be owned by.
+          schema:
+            type: int
+            min: 2
+            default: 568
+            required: true
+        - variable: group
+          label: Group ID
+          description: The group id that Nginx Proxy Manager files will be owned by.
+          schema:
+            type: int
+            min: 2
+            default: 568
+            required: true
 
   - variable: npmNetwork
     label: ""

+ 0 - 0
community/nginx-proxy-manager/1.0.28/templates/NOTES.txt → community/nginx-proxy-manager/1.0.29/templates/NOTES.txt


+ 5 - 4
community/nginx-proxy-manager/1.0.28/templates/_npm.tpl → community/nginx-proxy-manager/1.0.29/templates/_npm.tpl

@@ -1,4 +1,7 @@
 {{- define "npm.workload" -}}
+{{- if not .Values.npmID -}}
+  {{- $_ := set .Values "npmID" dict -}}
+{{- end }}
 workload:
   npm:
     enabled: true
@@ -7,7 +10,7 @@ workload:
     podSpec:
       hostNetwork: false
       securityContext:
-        fsGroup: 1000
+        fsGroup: {{ .Values.npmID.group | default 1000 }}
       containers:
         npm:
           enabled: true
@@ -30,9 +33,7 @@ workload:
                 # Needed for: Nginx Service
                 - FOWNER
           fixedEnv:
-            # FIXME: Revisit once upstream irons out some issues in regarids with PUID.
-            # Make sure 568 PUID works before exposing
-            PUID: 1000
+            PUID: {{ .Values.npmID.user | default 1000 }}
           env:
             DISABLE_IPV6: true
             DB_SQLITE_FILE: /data/database.sqlite

+ 0 - 0
community/nginx-proxy-manager/1.0.28/templates/_portal.tpl → community/nginx-proxy-manager/1.0.29/templates/_portal.tpl


+ 0 - 0
community/nginx-proxy-manager/1.0.28/templates/common.yaml → community/nginx-proxy-manager/1.0.29/templates/common.yaml


+ 0 - 0
community/unifi-controller/1.3.6/Chart.lock → community/unifi-controller/1.3.7/Chart.lock


+ 2 - 2
community/unifi-controller/1.3.6/Chart.yaml → community/unifi-controller/1.3.7/Chart.yaml

@@ -3,10 +3,10 @@ description: Unifi Controller is a network management controller for Unifi Equip
 annotations:
   title: Unifi Controller
 type: application
-version: 1.3.6
+version: 1.3.7
 apiVersion: v2
 appVersion: 8.1.113
-kubeVersion: '>=1.16.0-0'
+kubeVersion: ">=1.16.0-0"
 maintainers:
   - name: truenas
     url: https://www.truenas.com/

+ 0 - 0
community/unifi-controller/1.3.6/README.md → community/unifi-controller/1.3.7/README.md


+ 0 - 0
community/unifi-controller/1.3.6/app-readme.md → community/unifi-controller/1.3.7/app-readme.md


+ 0 - 0
community/unifi-controller/1.3.6/charts/common-1.2.9.tgz → community/unifi-controller/1.3.7/charts/common-1.2.9.tgz


+ 0 - 0
community/unifi-controller/1.3.6/ci/basic-values.yaml → community/unifi-controller/1.3.7/ci/basic-values.yaml


+ 0 - 0
community/unifi-controller/1.3.6/ci/extra-values.yaml → community/unifi-controller/1.3.7/ci/extra-values.yaml


+ 0 - 0
community/unifi-controller/1.3.6/ci/hostNet-values.yaml → community/unifi-controller/1.3.7/ci/hostNet-values.yaml


+ 0 - 0
community/unifi-controller/1.3.6/ci/https-values.yaml → community/unifi-controller/1.3.7/ci/https-values.yaml


+ 0 - 0
community/unifi-controller/1.3.6/ix_values.yaml → community/unifi-controller/1.3.7/ix_values.yaml


+ 0 - 0
community/unifi-controller/1.3.6/metadata.yaml → community/unifi-controller/1.3.7/metadata.yaml


+ 0 - 0
community/unifi-controller/1.3.6/migrations/migrate → community/unifi-controller/1.3.7/migrations/migrate


+ 3 - 3
community/unifi-controller/1.3.6/questions.yaml → community/unifi-controller/1.3.7/questions.yaml

@@ -74,8 +74,8 @@ questions:
             max: 65535
             required: true
         - variable: enableWebHttp
-          label: Enable Web HTTP
-          description: Enable HTTP for the Unifi Controller Web UI.
+          label: Enable Web HTTP / Inform Port
+          description: Enable HTTP for the Unifi Controller Inform Port.
           schema:
             type: boolean
             default: false
@@ -391,7 +391,7 @@ questions:
                 schema:
                   type: string
                   max_length: 12
-                  valid_chars: '^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$'
+                  valid_chars: "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$"
                   valid_chars_error: |
                     Valid Memory limit formats are</br>
                     - Suffixed with E/P/T/G/M/K - eg. 1G</br>

+ 0 - 0
community/unifi-controller/1.3.6/templates/NOTES.txt → community/unifi-controller/1.3.7/templates/NOTES.txt


+ 0 - 0
community/unifi-controller/1.3.6/templates/_persistence.tpl → community/unifi-controller/1.3.7/templates/_persistence.tpl


+ 0 - 0
community/unifi-controller/1.3.6/templates/_portal.tpl → community/unifi-controller/1.3.7/templates/_portal.tpl


+ 0 - 0
community/unifi-controller/1.3.6/templates/_service.tpl → community/unifi-controller/1.3.7/templates/_service.tpl


+ 0 - 0
community/unifi-controller/1.3.6/templates/_unifi.tpl → community/unifi-controller/1.3.7/templates/_unifi.tpl


+ 0 - 0
community/unifi-controller/1.3.6/templates/common.yaml → community/unifi-controller/1.3.7/templates/common.yaml