mirror of
https://github.com/truenas/charts.git
synced 2026-04-14 02:30:53 +08:00
Add TTY and STDIN into ix-chart
This commit is contained in:
@@ -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: 2111.0.1
|
||||
version: 2201.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
|
||||
@@ -25,4 +25,3 @@ dependencies:
|
||||
- name: common
|
||||
repository: file://../../../library/common/2112.0.0
|
||||
version: 2112.0.0
|
||||
|
||||
@@ -502,6 +502,22 @@ questions:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: tty
|
||||
label: "Enable TTY"
|
||||
description: "Determines whether containers in a pod runs with TTY enabled. By default pod has it disabled."
|
||||
group: "Workload Details"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: stdin
|
||||
label: "Enable STDIN"
|
||||
description: "Determines whether containers in a pod runs with stdin enabled. By default pod has it disabled."
|
||||
group: "Workload Details"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: securityContext
|
||||
label: "Security Context"
|
||||
group: "Workload Details"
|
||||
@@ -55,6 +55,8 @@ hostNetwork: {{ template "hostNetworkingConfiguration" . }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
{{- include "volumeMountsConfiguration" . | indent 2}}
|
||||
tty: {{ .Values.tty }}
|
||||
stdin: {{ .Values.stdin }}
|
||||
securityContext:
|
||||
privileged: {{ .Values.securityContext.privileged }}
|
||||
{{ if .Values.securityContext.capabilities }}
|
||||
@@ -40,3 +40,5 @@ gpuConfiguration: {}
|
||||
securityContext:
|
||||
privileged: false
|
||||
capabilities: []
|
||||
tty: true
|
||||
stdin: true
|
||||
Binary file not shown.
@@ -3,4 +3,4 @@ dependencies:
|
||||
repository: file://../../../library/common/2112.0.0
|
||||
version: 2112.0.0
|
||||
digest: sha256:47115d9b91afe42c8537dcf0fd8224f2f7d1c775f9ff860efa68a6b57d17d1c0
|
||||
generated: "2021-12-06T21:24:36.595653+05:00"
|
||||
generated: "2021-12-06T21:40:37.023887+05:00"
|
||||
@@ -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: 2111.0.1
|
||||
version: 2201.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
|
||||
@@ -25,4 +25,3 @@ dependencies:
|
||||
- name: common
|
||||
repository: file://../../../library/common/2112.0.0
|
||||
version: 2112.0.0
|
||||
|
||||
BIN
test/ix-chart/2201.0.0/charts/common-2112.0.0.tgz
Normal file
BIN
test/ix-chart/2201.0.0/charts/common-2112.0.0.tgz
Normal file
Binary file not shown.
@@ -502,6 +502,22 @@ questions:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: tty
|
||||
label: "Enable TTY"
|
||||
description: "Determines whether containers in a pod runs with TTY enabled. By default pod has it disabled."
|
||||
group: "Workload Details"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: stdin
|
||||
label: "Enable STDIN"
|
||||
description: "Determines whether containers in a pod runs with stdin enabled. By default pod has it disabled."
|
||||
group: "Workload Details"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
- variable: securityContext
|
||||
label: "Security Context"
|
||||
group: "Workload Details"
|
||||
@@ -55,6 +55,8 @@ hostNetwork: {{ template "hostNetworkingConfiguration" . }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
{{- include "volumeMountsConfiguration" . | indent 2}}
|
||||
tty: {{ .Values.tty }}
|
||||
stdin: {{ .Values.stdin }}
|
||||
securityContext:
|
||||
privileged: {{ .Values.securityContext.privileged }}
|
||||
{{ if .Values.securityContext.capabilities }}
|
||||
@@ -40,3 +40,5 @@ gpuConfiguration: {}
|
||||
securityContext:
|
||||
privileged: false
|
||||
capabilities: []
|
||||
tty: true
|
||||
stdin: true
|
||||
Reference in New Issue
Block a user