소스 검색

Update stable train from test train

sonicaj 3 년 전
부모
커밋
7fa5c1378f

+ 0 - 0
charts/ix-chart/2109.0.0/values.yaml


+ 0 - 0
charts/ix-chart/2109.0.0/.helmignore → charts/ix-chart/2111.0.0/.helmignore


+ 0 - 0
charts/ix-chart/2109.0.0/Chart.lock → charts/ix-chart/2111.0.0/Chart.lock


+ 1 - 1
charts/ix-chart/2109.0.0/Chart.yaml → charts/ix-chart/2111.0.0/Chart.yaml

@@ -15,7 +15,7 @@ type: application
 # This is the chart version. This version number should be incremented each time you make changes
 # to the chart and its templates, including the app version.
 # Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 2109.0.0
+version: 2111.0.0
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application. Versions are not expected to

+ 0 - 0
charts/ix-chart/2109.0.0/README.md → charts/ix-chart/2111.0.0/README.md


+ 0 - 0
charts/ix-chart/2109.0.0/app-readme.md → charts/ix-chart/2111.0.0/app-readme.md


+ 0 - 0
charts/ix-chart/2109.0.0/charts/common-2105.0.0.tgz → charts/ix-chart/2111.0.0/charts/common-2105.0.0.tgz


+ 31 - 0
charts/ix-chart/2109.0.0/questions.yaml → charts/ix-chart/2111.0.0/questions.yaml

@@ -292,6 +292,26 @@ questions:
                 label: "Search Entry"
                 schema:
                   type: string
+        - variable: options
+          label: "DNS Options"
+          schema:
+            type: list
+            items:
+              - variable: optionsEntry
+                label: "Option Entry Configuration"
+                schema:
+                  type: dict
+                  attrs:
+                    - variable: name
+                      label: "Option Name"
+                      schema:
+                        type: string
+                        required: true
+                    - variable: value
+                      label: "Option Value"
+                      schema:
+                        type: string
+                        required: true
 
   - variable: hostNetwork
     label: "Provide access to node network namespace for the workload"
@@ -494,3 +514,14 @@ questions:
           schema:
             type: boolean
             default: false
+        - variable: capabilities
+          label: "Capabilities"
+          description: "With Linux capabilities, you can grant certain privileges to a process without granting all the privileges of the root user."
+          schema:
+            type: list
+            items:
+              - variable: capability
+                description: "Add Capability"
+                label: "Add Capability"
+                schema:
+                  type: string

+ 0 - 0
charts/ix-chart/2109.0.0/templates/NOTES.txt → charts/ix-chart/2111.0.0/templates/NOTES.txt


+ 0 - 0
charts/ix-chart/2109.0.0/templates/_containers.tpl → charts/ix-chart/2111.0.0/templates/_containers.tpl


+ 0 - 0
charts/ix-chart/2109.0.0/templates/_helpers.tpl → charts/ix-chart/2111.0.0/templates/_helpers.tpl


+ 0 - 0
charts/ix-chart/2109.0.0/templates/_networking.tpl → charts/ix-chart/2111.0.0/templates/_networking.tpl


+ 0 - 0
charts/ix-chart/2109.0.0/templates/_volumes.tpl → charts/ix-chart/2111.0.0/templates/_volumes.tpl


+ 5 - 1
charts/ix-chart/2109.0.0/templates/_workload.tpl → charts/ix-chart/2111.0.0/templates/_workload.tpl

@@ -56,7 +56,11 @@ containers:
 - name: {{ .Chart.Name }}
   {{- include "volumeMountsConfiguration" . | indent 2}}
   securityContext:
-    {{- toYaml .Values.securityContext | nindent 12 }}
+    privileged: {{ .Values.securityContext.privileged }}
+    {{ if .Values.securityContext.capabilities }}
+    capabilities:
+      add: {{ toYaml .Values.securityContext.capabilities | nindent 8 }}
+    {{ end }}
   image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}"
   imagePullPolicy: {{ .Values.image.pullPolicy }}
   {{- include "containerCommand" . | indent 2 }}

+ 0 - 0
charts/ix-chart/2109.0.0/templates/external-interfaces.yaml → charts/ix-chart/2111.0.0/templates/external-interfaces.yaml


+ 0 - 0
charts/ix-chart/2109.0.0/templates/service.yaml → charts/ix-chart/2111.0.0/templates/service.yaml


+ 0 - 0
charts/ix-chart/2109.0.0/templates/tests/deployment-check.yaml → charts/ix-chart/2111.0.0/templates/tests/deployment-check.yaml


+ 0 - 0
charts/ix-chart/2109.0.0/templates/workload.yaml → charts/ix-chart/2111.0.0/templates/workload.yaml


+ 3 - 0
charts/ix-chart/2109.0.0/test_values.yaml → charts/ix-chart/2111.0.0/test_values.yaml

@@ -37,3 +37,6 @@ livenessProbe: null
 workloadType: "Deployment"
 
 gpuConfiguration: {}
+securityContext:
+  privileged: false
+  capabilities: []