Browse Source

Update charts train from test train

sonicaj 4 years ago
parent
commit
90ce95ea4d

+ 0 - 0
charts/minio/1.3.7/.helmignore → charts/minio/1.3.8/.helmignore


+ 1 - 1
charts/minio/1.3.7/Chart.yaml → charts/minio/1.3.8/Chart.yaml

@@ -16,4 +16,4 @@ sources:
 - https://github.com/minio/minio
 - https://github.com/minio/charts
 upstream_version: 8.0.5
-version: 1.3.7
+version: 1.3.8

+ 0 - 0
charts/minio/1.3.7/README.md → charts/minio/1.3.8/README.md


+ 0 - 0
charts/minio/1.3.7/app-readme.md → charts/minio/1.3.8/app-readme.md


+ 0 - 0
charts/minio/1.3.7/charts/common-2105.0.0.tgz → charts/minio/1.3.8/charts/common-2105.0.0.tgz


+ 0 - 0
charts/minio/1.3.7/default_values.yaml → charts/minio/1.3.8/default_values.yaml


+ 0 - 0
charts/minio/1.3.7/ix_values.yaml → charts/minio/1.3.8/ix_values.yaml


+ 0 - 0
charts/minio/1.3.7/migrations/migrate_from_1.0.0 → charts/minio/1.3.8/migrations/migrate_from_1.0.0


+ 10 - 2
charts/minio/1.3.7/questions.yaml → charts/minio/1.3.8/questions.yaml

@@ -17,7 +17,7 @@ portals:
     host:
       - "$node_ip"
     ports:
-      - "$variable-service.nodePort"
+      - "$variable-service.consolePort"
 
 questions:
 
@@ -124,13 +124,21 @@ questions:
       required: true
       attrs:
         - variable: nodePort
-          label: "Node Port to use for Minio"
+          label: "Node Port to use for Minio API"
           schema:
             type: int
             min: 9000
             max: 65535
             default: 9000
             required: true
+        - variable: consolePort
+          label: "Node Port to use for Minio UI Access"
+          schema:
+            type: int
+            min: 9000
+            max: 65535
+            default: 9002
+            required: true
 
   - variable: certificate
     description: "Minio Certificate"

+ 0 - 0
charts/minio/1.3.7/requirements.lock → charts/minio/1.3.8/requirements.lock


+ 0 - 0
charts/minio/1.3.7/templates/NOTES.txt → charts/minio/1.3.8/templates/NOTES.txt


+ 0 - 0
charts/minio/1.3.7/templates/_cert.tpl → charts/minio/1.3.8/templates/_cert.tpl


+ 0 - 0
charts/minio/1.3.7/templates/_helpers.tpl → charts/minio/1.3.8/templates/_helpers.tpl


+ 0 - 0
charts/minio/1.3.7/templates/configmap.yaml → charts/minio/1.3.8/templates/configmap.yaml


+ 4 - 2
charts/minio/1.3.7/templates/deployment.yaml → charts/minio/1.3.8/templates/deployment.yaml

@@ -33,10 +33,12 @@ spec:
           command:
             - "/bin/sh"
             - "-ce"
-            - "/usr/bin/docker-entrypoint.sh minio -S /etc/minio/certs server /export {{ (.Values.extraArgs | default list) | join " " }}"
+            - "/usr/bin/docker-entrypoint.sh minio -S /etc/minio/certs server /export --console-address=':9001' {{ (.Values.extraArgs | default list) | join " " }}"
           ports:
-            - name: http
+            - name: api
               containerPort: 9000
+            - name: console
+              containerPort: 9001
           env:
             {{ $secretName := (include "minio.secretName" .) }}
             {{ $envList := (default list .Values.environment) }}

+ 0 - 0
charts/minio/1.3.7/templates/secrets.yaml → charts/minio/1.3.8/templates/secrets.yaml


+ 2 - 1
charts/minio/1.3.7/templates/service.yaml → charts/minio/1.3.8/templates/service.yaml

@@ -3,7 +3,8 @@
 {{ $selectors = mustAppend $selectors (dict "key" "app" "value" (include "common.names.name" .) ) }}
 {{ $selectors = mustAppend $selectors (dict "key" "release" "value" .Release.Name ) }}
 {{ $ports := list }}
-{{ $ports = mustAppend $ports (dict "name" "http" "port" $svc.nodePort "nodePort" $svc.nodePort "targetPort" 9000) }}
+{{ $ports = mustAppend $ports (dict "name" "api" "port" $svc.nodePort "nodePort" $svc.nodePort "targetPort" 9000) }}
+{{ $ports = mustAppend $ports (dict "name" "console" "port" $svc.consolePort "nodePort" $svc.consolePort "targetPort" 9001) }}
 {{ $params := . }}
 {{ $_ := set $params "commonService" (dict "type" "NodePort" "ports" $ports ) }}
 {{ $_1 := set .Values "extraSelectorLabels" $selectors }}

+ 0 - 0
charts/minio/1.3.7/templates/serviceaccount.yaml → charts/minio/1.3.8/templates/serviceaccount.yaml


+ 1 - 0
charts/minio/1.3.7/test_values.yaml → charts/minio/1.3.8/test_values.yaml

@@ -13,4 +13,5 @@ image:
   tag: RELEASE.2021-07-30T00-02-00Z
 service:
   nodePort: 32324
+  consolePort: 32325
 updateStrategy: RollingUpdate

+ 0 - 0
charts/minio/1.3.7/values.yaml → charts/minio/1.3.8/values.yaml